@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --navy: #0B1F3A;
  --navy-mid: #152D50;
  --cream: #F9F5EE;
  --white: #FFFFFF;
  --text: #1A1A2E;
  --muted: #6B7280;
  --border: #E5DDD0;
  --accent: #D4622A;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

/* ===== NAVBAR ===== */
nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--gold);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-logo span { color: var(--white); }

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  border-radius: 4px !important;
}

.nav-cta:hover { background: var(--gold-light) !important; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1A3A5C 100%);
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem;
  text-align: center;
  color: var(--white);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(201,168,76,0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

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

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: all 0.2s;
  display: inline-block;
}

.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
  display: inline-block;
}

.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 2rem;
}

.section-alt {
  background: var(--white);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 3rem;
}

.gold-line {
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

/* ===== CARDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.25s;
  position: relative;
}

.card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(11,31,58,0.1);
  transform: translateY(-2px);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,168,76,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.card p { font-size: 0.9rem; color: var(--muted); margin-bottom: 1rem; }

.card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.card-link:hover { color: var(--accent); }

/* ===== CLINIC CARD ===== */
.clinic-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: all 0.2s;
}

.clinic-card:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(11,31,58,0.08);
}

.clinic-avatar {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
}

.clinic-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.clinic-meta {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.stars { color: var(--gold); font-size: 0.85rem; }

.clinic-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.tag {
  background: rgba(201,168,76,0.1);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  letter-spacing: 0.3px;
}

/* ===== CTA BOX ===== */
.cta-box {
  background: var(--navy);
  border-radius: 10px;
  padding: 3rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
}

.cta-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.cta-box p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 2rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 0.5rem; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 4rem 2rem;
  color: var(--white);
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
}

.page-hero h1 em { font-style: normal; color: var(--gold); }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 650px; }

/* ===== CONTENT + SIDEBAR ===== */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.content-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin: 2rem 0 1rem;
}

.content-body p { margin-bottom: 1.2rem; color: #374151; line-height: 1.75; }

.content-body .internal-link {
  color: var(--gold);
  font-weight: 600;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  transition: border-color 0.2s;
}

.content-body .internal-link:hover { border-color: var(--gold); }

.sidebar {
  position: sticky;
  top: 90px;
  height: fit-content;
}

.sidebar-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.sidebar-box h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.sidebar-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.sidebar-links a {
  font-size: 0.85rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}

.sidebar-links a:hover { color: var(--gold); }
.sidebar-links a::before { content: '→'; color: var(--gold); font-size: 0.75rem; }

/* ===== COMPARE TABLE ===== */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.compare-table th {
  background: var(--navy);
  color: var(--white);
  padding: 0.85rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.3px;
}

.compare-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
}

.compare-table tr:nth-child(even) td { background: rgba(249,245,238,0.5); }
.compare-table tr:hover td { background: rgba(201,168,76,0.06); }

.badge-yes { color: #059669; font-weight: 600; }
.badge-no { color: #DC2626; }

/* ===== PRICE TABLE ===== */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}

.price-card.featured {
  border-color: var(--gold);
  background: var(--navy);
  color: var(--white);
}

.price-label { font-size: 0.82rem; color: var(--muted); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.5px; }
.price-card.featured .price-label { color: rgba(255,255,255,0.6); }
.price-amount { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--navy); }
.price-card.featured .price-amount { color: var(--gold); }
.price-us { font-size: 0.78rem; color: var(--muted); margin-top: 0.25rem; }
.price-card.featured .price-us { color: rgba(255,255,255,0.5); }

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 4rem 2rem 2rem;
  border-top: 2px solid var(--gold);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  font-size: 0.88rem;
  margin-top: 1rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h5 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

.footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ===== INLINE LINK BOX ===== */
.link-box {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

.link-box strong { color: var(--navy); display: block; margin-bottom: 0.3rem; }

/* ===== RATING BAR ===== */
.rating-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
}

.rating-bar {
  flex: 1;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.rating-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 3px;
}

/* ===== FAQ ===== */
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  gap: 1rem;
}

.faq-icon {
  width: 24px;
  height: 24px;
  background: rgba(201,168,76,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1rem;
  transition: transform 0.3s, background 0.2s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--navy);
}

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

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: #4B5563;
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.faq-answer-inner a { color: var(--gold); font-weight: 600; }

/* ===== BEFORE/AFTER ===== */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.ba-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.25s;
}

.ba-card:hover {
  box-shadow: 0 10px 40px rgba(11,31,58,0.12);
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ba-img {
  padding: 1.5rem;
  text-align: center;
}

.ba-img:first-child {
  background: #f3f3f3;
  border-right: 2px solid var(--border);
}

.ba-img:last-child {
  background: rgba(201,168,76,0.06);
}

.ba-smile {
  font-size: 3.5rem;
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.ba-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

.ba-info {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
}

.ba-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.ba-info p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

.ba-info .ba-clinic {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  margin-top: 0.5rem;
  display: block;
}

/* ===== REVIEW CARDS ===== */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 1.25rem;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}

.review-text {
  font-size: 0.88rem;
  color: #374151;
  line-height: 1.75;
  margin: 0.5rem 0 1rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.review-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.review-meta {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ===== PROCESS STEPS ===== */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.steps-list::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: var(--border);
}

.step-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  position: relative;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  border: 3px solid var(--cream);
}

.step-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.3rem;
  padding-top: 0.6rem;
}

.step-content p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ===== SAVINGS CALCULATOR ===== */
.calc-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
}

.calc-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.calc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.calc-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
}

.calc-select, .calc-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  appearance: none;
  cursor: pointer;
}

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

.calc-result {
  background: var(--navy);
  border-radius: 8px;
  padding: 1.5rem;
  color: var(--white);
  text-align: center;
  margin-top: 1.5rem;
  display: none;
}

.calc-result.visible { display: block; }

.calc-savings {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
}

.calc-result p { color: rgba(255,255,255,0.7); font-size: 0.88rem; margin-top: 0.5rem; }

/* ===== SITEMAP ===== */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
}

.sitemap-col h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
}

.sitemap-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sitemap-col a {
  font-size: 0.88rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}

.sitemap-col a:hover { color: var(--gold); }
.sitemap-col a::before { content: '→'; color: var(--gold); font-size: 0.7rem; }

/* ===== ALERT BOX ===== */
.alert-box {
  border-radius: 8px;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.88rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.alert-box.info {
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.25);
  color: #1d4ed8;
}

.alert-box.success {
  background: rgba(5,150,105,0.08);
  border: 1px solid rgba(5,150,105,0.25);
  color: #065f46;
}

.alert-box.warning {
  background: rgba(217,119,6,0.08);
  border: 1px solid rgba(217,119,6,0.25);
  color: #92400e;
}

/* ===== NAV DROPDOWN ===== */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 6px;
  min-width: 200px;
  padding: 0.5rem 0;
  display: none;
  z-index: 200;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.nav-dropdown:hover .nav-dropdown-menu { display: block; }

.nav-dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  transition: all 0.15s;
}

.nav-dropdown-menu a:hover {
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  padding-left: 1.25rem;
}

.nav-links .has-dropdown > a::after {
  content: ' ▾';
  font-size: 0.65rem;
  opacity: 0.7;
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .calc-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .clinic-card { flex-direction: column; }
  .ba-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
}
