/* ============================================
   VetServicesNKY — styles.css
   Palette: Deep Navy, Warm Gold, Off-White, Slate
   Fonts: Libre Baskerville (headings) + Source Sans 3 (body)
   ============================================ */

:root {
  --navy:      #1a2744;
  --navy-dark: #0f1a30;
  --navy-mid:  #243258;
  --gold:      #c9922a;
  --gold-light:#e8b04a;
  --gold-pale: #fdf3e3;
  --white:     #ffffff;
  --off-white: #f7f6f2;
  --slate:     #4a5568;
  --slate-light:#718096;
  --border:    #e2ddd6;
  --green:     #2d7a4f;
  --red:       #b91c1c;

  --font-serif: 'Libre Baskerville', Georgia, serif;
  --font-sans:  'Source Sans 3', system-ui, sans-serif;

  --radius:    6px;
  --radius-lg: 12px;
  --shadow:    0 2px 12px rgba(26,39,68,0.10);
  --shadow-lg: 0 8px 32px rgba(26,39,68,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--navy);
  background: var(--white);
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--gold); }

/* ── LAYOUT ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 72px 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--slate);
  font-size: 1.05rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover { background: var(--gold-light); color: var(--white); }

.btn-hero {
  background: var(--gold);
  color: var(--white);
  padding: 16px 36px;
  font-size: 1.05rem;
}
.btn-hero:hover { background: var(--gold-light); color: var(--white); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  padding: 14px 28px;
  font-size: 1.05rem;
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); color: var(--white); }

.btn-secondary {
  background: var(--navy);
  color: var(--white);
}
.btn-secondary:hover { background: var(--navy-mid); color: var(--white); }

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-dark);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  width: 42px;
  height: 42px;
  border-radius: 4px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: -0.01em;
}

.logo-name strong { color: var(--gold-light); }

.logo-tagline {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 24px;
  flex: 1;
}

.site-nav a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.15s;
}
.site-nav a:hover { color: var(--gold-light); }

/* ── HERO ── */
.hero {
  position: relative;
  background: var(--navy-dark);
  padding: 96px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,146,42,0.12) 0%, transparent 70%),
    repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.015) 60px,
      rgba(255,255,255,0.015) 61px
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  background: rgba(201,146,42,0.2);
  border: 1px solid rgba(201,146,42,0.5);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold-light);
  line-height: 1;
}

.stat span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── ALERT BANNER ── */
.alert-banner {
  background: var(--gold-pale);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: 14px 0;
  text-align: center;
  font-size: 0.95rem;
}

.alert-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.alert-icon {
  color: var(--gold);
  font-size: 1rem;
}

/* ── COUNTY DIRECTORY ── */
.counties-section {
  background: var(--off-white);
}

.state-group {
  margin-bottom: 48px;
}

.state-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.county-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.county-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}

.county-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.county-card.featured {
  border-color: var(--gold);
  border-width: 2px;
}

.county-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 12px;
}

.county-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 2px;
}

.county-card h3 a { text-decoration: none; color: var(--navy); }
.county-card h3 a:hover { color: var(--gold); }

.county-meta {
  font-size: 0.78rem;
  color: var(--slate-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}

.badge-open {
  background: rgba(45,122,79,0.1);
  color: var(--green);
  border: 1px solid rgba(45,122,79,0.3);
}

.office-info {
  margin-bottom: 16px;
}

.info-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  line-height: 1.4;
}

.info-row:last-child { border-bottom: none; }

.info-label {
  font-weight: 700;
  color: var(--slate);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-top: 2px;
}

.county-services {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.service-tag {
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--navy);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 100px;
}

.county-link {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.county-link:hover { color: var(--navy); }

/* ── BENEFITS ── */
.benefits-section {
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.benefit-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border-left: 4px solid var(--gold);
}

.benefit-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.benefit-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--navy);
}

.benefit-card p {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.6;
}

/* KY vs OH Comparison */
.ky-oh-compare {
  background: var(--navy-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
}

.ky-oh-compare h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--gold-light);
  margin-bottom: 24px;
  text-align: center;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.compare-header {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  text-align: center;
}

.compare-header.ky { background: rgba(201,146,42,0.25); color: var(--gold-light); }
.compare-header.oh { background: rgba(255,255,255,0.1); color: var(--white); }

.compare-col ul {
  list-style: none;
  padding: 0;
}

.compare-col li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
  color: rgba(255,255,255,0.85);
}

.compare-col li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--gold-light);
  font-weight: 700;
}

/* ── CALCULATOR ── */
.calculator-section {
  background: var(--off-white);
}

.calculator-card {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 700px;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-lg);
}

.calc-inputs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 24px;
}

.calc-field {
  flex: 1;
  min-width: 180px;
}

.calc-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--slate);
  margin-bottom: 8px;
}

.calc-field select {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--navy);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a5568' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.calc-field select:focus {
  outline: none;
  border-color: var(--gold);
}

.calc-result {
  background: var(--navy-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  color: var(--white);
}

.calc-result.hidden { display: none; }

.result-amount {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3.2rem);
  color: var(--gold-light);
  margin-bottom: 6px;
  line-height: 1;
}

.result-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.result-note {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  line-height: 1.5;
}

.calc-disclaimer {
  max-width: 700px;
  margin: 0 auto;
  font-size: 0.82rem;
  color: var(--slate-light);
  text-align: center;
  line-height: 1.5;
}

/* ── STEPS ── */
.steps-section {
  background: var(--white);
}

.steps-list {
  max-width: 720px;
  margin: 0 auto 48px;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  margin-bottom: 32px;
  align-items: start;
}

.step-num {
  width: 56px;
  height: 56px;
  background: var(--navy);
  color: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--navy);
}

.step-content p {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.6;
}

/* ── CHECKLIST ── */
.checklist-box {
  background: var(--gold-pale);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 680px;
  margin: 0 auto;
}

.checklist-box h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: var(--navy);
}

.checklist-box > p {
  font-size: 0.9rem;
  color: var(--slate);
  margin-bottom: 20px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(201,146,42,0.25);
  font-size: 0.92rem;
  line-height: 1.4;
}

.checklist input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}

.checklist label { cursor: pointer; }

/* ── RESOURCES ── */
.resources-section {
  background: var(--off-white);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.resource-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}

.resource-card h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--navy);
}

.resource-card p {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.5;
  margin-bottom: 4px;
}

.resource-note {
  font-size: 0.82rem !important;
  color: var(--slate-light) !important;
  margin-top: 8px !important;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

/* ── FAQ ── */
.faq-section {
  background: var(--white);
}

.faq-list {
  max-width: 740px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--navy);
  text-align: left;
  line-height: 1.4;
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding-bottom: 20px;
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.7;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding-top: 56px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo .logo-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  display: block;
  margin-bottom: 8px;
}

.footer-logo .logo-name strong { color: var(--gold-light); }

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; }

.footer-col li {
  font-size: 0.88rem;
  padding: 3px 0;
  color: rgba(255,255,255,0.6);
}

.footer-col a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  line-height: 1.5;
}

/* ── LOCATION PAGE STYLES ── */
.page-hero {
  background: var(--navy-dark);
  padding: 56px 0 48px;
  border-bottom: 3px solid var(--gold);
}

.page-breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.page-breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.page-breadcrumb a:hover { color: var(--gold-light); }

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}

.page-hero .subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
}

.office-detail-card {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 32px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.detail-row {
  display: contents;
}

.detail-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate);
  padding: 12px 16px 12px 0;
  border-bottom: 1px solid var(--border);
}

.detail-value {
  padding: 12px 0;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
  color: var(--navy);
}

.content-prose {
  max-width: 740px;
  margin: 0 auto;
}

.content-prose h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin: 40px 0 16px;
}

.content-prose h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy);
  margin: 28px 0 10px;
}

.content-prose p {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 16px;
}

.content-prose ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.content-prose li {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 6px;
}

.tip-box {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 0.9rem;
  color: var(--navy);
  line-height: 1.5;
}

.map-placeholder {
  background: var(--off-white);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  color: var(--slate-light);
  font-size: 0.9rem;
  margin: 24px 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 12px;
  }

  .site-nav { display: none; }

  .header-inner .btn { margin-left: auto; }

  .hero { padding: 64px 0 56px; }

  .hero-stats { gap: 24px; }

  .compare-grid { grid-template-columns: 1fr; gap: 24px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .footer-links { grid-template-columns: 1fr 1fr; }

  .calc-inputs { flex-direction: column; }

  .detail-grid { grid-template-columns: 1fr; }

  .detail-label { border-bottom: none; padding-bottom: 0; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .county-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
}
