/* ═══════════════════════════════════════════════════════════════
   Dr. Avani Reddy — Premium Medical Landing UI
   Design: clean · minimal · luxury healthcare
   ═══════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --mobile-header-h: 108px;
  /* Brand */
  --rose:       #C2185B;
  --rose-lt:    #FDF2F7;
  --rose-dk:    #9E1449;
  --teal:       #00796B;
  --teal-lt:    #E0F2F1;
  --gold:       #C9A227;

  /* Premium medical palette */
  --blue:       #1B6B8A;
  --blue-lt:    #E8F4FA;
  --blue-mid:   #3A8DB0;
  --blue-soft:  #F0F7FB;

  /* Neutrals */
  --cream:      #FAFBFD;
  --charcoal:   #1A2332;
  --mid:        #5C6B7A;
  --border:     #E2EAF0;
  --white:      #FFFFFF;

  /* Spacing scale */
  --space-xs:   8px;
  --space-sm:   16px;
  --space-md:   24px;
  --space-lg:   48px;
  --space-xl:   72px;

  /* Radius */
  --radius-sm:  12px;
  --radius-md:  16px;
  --radius-lg:  18px;
  --radius-pill:100px;

  /* Shadows */
  --shadow-xs:  0 1px 3px rgba(27, 107, 138, 0.06);
  --shadow-sm:  0 4px 16px rgba(27, 107, 138, 0.08);
  --shadow-md:  0 8px 32px rgba(27, 107, 138, 0.10);
  --shadow-lg:  0 16px 48px rgba(27, 107, 138, 0.12);
  --shadow-xl:  0 24px 64px rgba(27, 107, 138, 0.14);

  /* Motion */
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --duration:   0.35s;
  --duration-slow: 0.5s;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--cream);
  background-image:
    radial-gradient(circle at 20% 20%, rgba(58, 141, 176, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(194, 24, 91, 0.03) 0%, transparent 50%),
    linear-gradient(180deg, #FFFFFF 0%, var(--cream) 100%);
  background-attachment: fixed;
  color: var(--charcoal);
  line-height: 1.65;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Scroll reveal (class added by JS) ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--duration-slow) var(--ease),
              transform var(--duration-slow) var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero must never be hidden by scroll animations */
.hero .reveal,
.hero .reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.10s; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.20s; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.25s; opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.30s; opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .topbar { animation: none; }
  .doctor-photo-wrap::before { animation: none; }
  .hero::before, .hero::after { animation: none; }
}

/* ── Focus states (accessibility) ── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--blue-mid);
  outline-offset: 3px;
}

/* ═══════════════════════════════════════════════════════════════
   SITE HEADER
   ═══════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
}

/* ═══════════════════════════════════════════════════════════════
   TOP BAR
   ═══════════════════════════════════════════════════════════════ */
.topbar {
  background: linear-gradient(90deg, #154A5E 0%, var(--blue) 35%, var(--blue-mid) 65%, #154A5E 100%);
  background-size: 200% 100%;
  animation: topbarShine 8s ease-in-out infinite;
  color: #fff;
  text-align: center;
  padding: 12px var(--space-sm);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@keyframes topbarShine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.topbar a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  transition: border-color var(--duration) var(--ease);
}
.topbar a:hover { border-color: #fff; }

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px var(--space-md);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 234, 240, 0.8);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--duration) var(--ease), background var(--duration) var(--ease);
}
.site-header.is-scrolled nav {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 24px rgba(27, 107, 138, 0.12);
  border-bottom-color: rgba(58, 141, 176, 0.25);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--charcoal);
  font-weight: 700;
  text-decoration: none;
  line-height: 1.25;
  transition: color var(--duration) var(--ease);
  position: relative;
  padding-left: 14px;
  flex: 1 1 auto;
  min-width: 0;
}
.nav-logo::before {
  content: '';
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--blue) 0%, var(--rose) 100%);
}
.nav-logo:hover { color: var(--blue); }
.nav-logo span {
  display: block;
  font-size: 10px;
  color: var(--mid);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}
.nav-cta a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all var(--duration) var(--ease);
}
.btn-call {
  color: var(--blue);
  border: 1.5px solid var(--blue);
  border-radius: var(--radius-pill);
  padding: 9px 18px;
  background: transparent;
}
.btn-call:hover {
  background: var(--blue-lt);
  transform: translateY(-1px);
  box-shadow: var(--shadow-xs);
}
.btn-book {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dk) 100%);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  box-shadow: 0 4px 14px rgba(194, 24, 91, 0.28);
  position: relative;
  overflow: hidden;
}
.btn-book::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease);
}
.btn-book:hover::after { transform: translateX(100%); }
.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(194, 24, 91, 0.35);
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  background:
    radial-gradient(ellipse 70% 55% at 100% 0%, rgba(58, 141, 176, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 0% 100%, rgba(194, 24, 91, 0.07) 0%, transparent 50%),
    linear-gradient(165deg, #FFFFFF 0%, #F8FBFE 40%, var(--blue-soft) 100%);
  padding: var(--space-xl) var(--space-md) calc(var(--space-lg) + 32px);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(226, 234, 240, 0.6);
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(58, 141, 176, 0.10) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatOrb 8s ease-in-out infinite;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -40px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(194, 24, 91, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatOrb 10s ease-in-out infinite reverse;
  pointer-events: none;
}
@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(12px, -16px); }
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-md);
  border: 1px solid rgba(58, 141, 176, 0.2);
  box-shadow: var(--shadow-xs);
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 6vw, 52px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: var(--space-sm);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  letter-spacing: -0.03em;
}
.hero h1 em {
  color: var(--rose);
  font-style: normal;
  background: linear-gradient(135deg, var(--rose) 0%, #E91E8C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(15px, 2.5vw, 17px);
  color: var(--mid);
  max-width: 560px;
  margin: 0 auto var(--space-md);
  line-height: 1.75;
  position: relative;
  z-index: 1;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}
.badge {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: var(--shadow-xs);
}
@media (hover: hover) {
  .badge {
    transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  }
  .badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
  }
}
.badge .icon { color: var(--teal); font-weight: 700; }

.hero-image-wrap {
  position: relative;
  z-index: 1;
  width: min(300px, 78vw);
  margin: var(--space-md) auto 0;
}
.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: calc(var(--radius-lg) + 5px);
  background: linear-gradient(135deg, var(--gold) 0%, var(--blue-mid) 50%, var(--rose) 100%);
  opacity: 0.65;
  z-index: 0;
}
.hero-image {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 12%;
  border-radius: var(--radius-lg);
  border: 4px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(27, 107, 138, 0.16);
  position: relative;
  z-index: 1;
}

.form-section {
  padding: var(--space-lg) var(--space-md) var(--space-xl);
  background: linear-gradient(180deg, var(--blue-soft) 0%, #FFFFFF 100%);
  text-align: center;
}
.form-section .form-card {
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════
   FORM CARD
   ═══════════════════════════════════════════════════════════════ */
.form-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius-lg);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.9),
    0 20px 60px rgba(27, 107, 138, 0.14),
    0 4px 16px rgba(27, 107, 138, 0.06);
  padding: 36px 32px;
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
  border: 1px solid rgba(226, 234, 240, 0.9);
  border-top: none;
  position: relative;
  z-index: 1;
  transition: box-shadow var(--duration-slow) var(--ease), transform var(--duration-slow) var(--ease);
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-mid) 40%, var(--rose) 100%);
}
.form-card:hover {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.95),
    0 28px 72px rgba(27, 107, 138, 0.18),
    0 8px 24px rgba(27, 107, 138, 0.08);
  transform: translateY(-3px);
}
.form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.form-card p { font-size: 14px; color: var(--mid); margin-bottom: 22px; line-height: 1.6; }
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--mid);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-row input,
.form-row select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  outline: none;
  transition: border-color var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease),
              background var(--duration) var(--ease);
}
.form-row input:focus,
.form-row select:focus {
  border-color: var(--blue-mid);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(58, 141, 176, 0.15);
}
.phone-row { display: flex; align-items: stretch; gap: 10px; }
.phone-row .phone-prefix {
  width: 72px;
  min-width: 72px;
  flex: 0 0 72px;
  padding: 13px 10px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  background: var(--blue-soft);
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-align: center;
  color: var(--charcoal);
  font-weight: 500;
}
.phone-row .phone-input { flex: 1 1 auto; min-width: 0; width: auto; }
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dk) 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  transition: transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease),
              opacity var(--duration) var(--ease);
  font-family: 'Plus Jakarta Sans', sans-serif;
  box-shadow: 0 4px 16px rgba(194, 24, 91, 0.3);
  letter-spacing: 0.01em;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(194, 24, 91, 0.4);
}
.btn-submit:active { transform: translateY(0); }
.btn-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; box-shadow: none; }
.form-row.has-error input,
.form-row.has-error select { border-color: #c0392b; background: #fff8f8; }
.form-row .field-error {
  display: none;
  font-size: 11px;
  color: #c0392b;
  margin-top: 5px;
}
.form-row.has-error .field-error { display: block; }
.form-feedback {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  line-height: 1.55;
}
.form-feedback.success { background: var(--teal-lt); color: #1B5E20; border: 1px solid rgba(0,121,107,0.2); }
.form-feedback.error { background: #fdecea; color: #c62828; border: 1px solid rgba(198,40,40,0.15); }
.form-trust {
  display: flex;
  gap: 14px;
  margin-top: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-item {
  font-size: 11px;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}
.trust-item .dot {
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}
.slots-note {
  background: linear-gradient(135deg, #FFF8E1 0%, #FFF3CD 100%);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 12px;
  color: #7B5800;
  font-weight: 600;
  margin-bottom: 18px;
  border: 1px solid rgba(212, 160, 23, 0.2);
}

/* ═══════════════════════════════════════════════════════════════
   STATS STRIP
   ═══════════════════════════════════════════════════════════════ */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: var(--white);
  max-width: 980px;
  margin: 24px auto 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.stat-item {
  background: var(--white);
  text-align: center;
  padding: 32px 20px;
  position: relative;
  transition: background var(--duration) var(--ease);
}
.stat-item:hover {
  background: linear-gradient(180deg, var(--blue-soft) 0%, var(--white) 100%);
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--border);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.15;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 12px;
  color: var(--mid);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════
   SECTIONS — GENERIC
   ═══════════════════════════════════════════════════════════════ */
section {
  padding: var(--space-xl) var(--space-md);
  max-width: 1100px;
  margin: 0 auto;
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--blue-lt) 0%, rgba(255,255,255,0.9) 100%);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(58, 141, 176, 0.15);
  box-shadow: var(--shadow-xs);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  margin-top: 16px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--rose) 100%);
}
section > .section-eyebrow,
section > .section-title,
section > .section-sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
section > .section-title::after {
  margin-left: auto;
  margin-right: auto;
}
.section-sub {
  font-size: clamp(15px, 2.5vw, 16px);
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 640px;
}

/* ═══════════════════════════════════════════════════════════════
   SYMPTOMS / SERVICES CARDS
   ═══════════════════════════════════════════════════════════════ */
.symptoms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.symptom-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-xs);
  transition: transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease),
              border-color var(--duration) var(--ease);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.symptom-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--teal) 100%);
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}
.symptom-card:hover::before { opacity: 1; }
.symptom-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(58, 141, 176, 0.35);
}
.symptom-icon {
  font-size: 24px;
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-lt) 0%, var(--white) 100%);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(58, 141, 176, 0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}
.symptom-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.symptom-desc {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   WHY CHOOSE US
   ═══════════════════════════════════════════════════════════════ */
.why-section {
  background: linear-gradient(180deg, var(--blue-soft) 0%, var(--white) 100%);
  max-width: none;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}
.why-section > * { max-width: 1100px; margin-left: auto; margin-right: auto; }
.why-list { display: flex; flex-direction: column; gap: 14px; }
.why-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  box-shadow: var(--shadow-xs);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-left-color var(--duration) var(--ease);
}
.why-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--rose);
}
.why-num {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  color: #fff;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 3px 10px rgba(27, 107, 138, 0.25);
}
.why-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.why-text p { font-size: 14px; color: var(--mid); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════════
   COMPARISON TABLE
   ═══════════════════════════════════════════════════════════════ */
.compare-section { background: var(--white); max-width: none; }
.compare-section > * { max-width: 1100px; margin-left: auto; margin-right: auto; }
@media (max-width: 639px) {
  .compare-section { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: var(--space-md); }
  .compare-table { min-width: 520px; }
}
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  margin-top: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.compare-table th {
  padding: 14px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--blue-soft);
  color: var(--mid);
  border-bottom: 2px solid var(--border);
}
.compare-table th:nth-child(3) {
  color: var(--blue);
  background: linear-gradient(180deg, var(--blue-lt) 0%, #E0F2F1 100%);
}
.compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.5;
  background: var(--white);
  transition: background var(--duration) var(--ease);
}
.compare-table tr:hover td { background: var(--blue-soft); }
.compare-table td:nth-child(1) { font-weight: 600; color: var(--charcoal); }
.compare-table td:nth-child(2) { color: #94A3B8; }
.compare-table td:nth-child(3) {
  color: var(--teal);
  font-weight: 600;
  background: rgba(224, 242, 241, 0.35);
}
.compare-table tr:hover td:nth-child(3) {
  background: rgba(224, 242, 241, 0.65);
}
.compare-table tr:last-child td { border-bottom: none; }

/* ═══════════════════════════════════════════════════════════════
   DOCTOR PROFILE
   ═══════════════════════════════════════════════════════════════ */
.doctor-section {
  background: linear-gradient(160deg, #1A2332 0%, #243044 50%, #1B3A4B 100%);
  color: #fff;
  max-width: none;
  padding: var(--space-xl) var(--space-md);
  position: relative;
  overflow: hidden;
}
.doctor-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(58, 141, 176, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.doctor-section > * { max-width: 1100px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.doctor-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}
.doctor-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  text-align: center;
}
.doctor-intro { flex: 1; }
.doctor-section .section-eyebrow {
  color: var(--gold);
  background: rgba(201, 162, 39, 0.15);
}
.doctor-section .section-title { color: #fff; }
.doctor-section .section-sub { color: rgba(255, 255, 255, 0.7); }
.dr-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.dr-cred {
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 1.6;
}
.dr-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dr-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--duration) var(--ease);
}
.dr-points li:hover { background: rgba(255, 255, 255, 0.08); }
.dr-points li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  margin-top: 1px;
  flex-shrink: 0;
  width: 20px; height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 121, 107, 0.2);
  border-radius: 50%;
  font-size: 11px;
}
.doctor-photo-wrap {
  flex-shrink: 0;
  position: relative;
}
.doctor-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: calc(var(--radius-lg) + 6px);
  background: linear-gradient(135deg, var(--gold) 0%, var(--blue-mid) 50%, var(--rose) 100%);
  opacity: 0.7;
  z-index: 0;
  animation: ringPulse 4s ease-in-out infinite;
}
@keyframes ringPulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.02); }
}
.doctor-photo {
  display: block;
  width: 200px; height: 200px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: center 15%;
  border: 4px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  transition: transform var(--duration-slow) var(--ease), box-shadow var(--duration-slow) var(--ease);
  position: relative;
  z-index: 1;
}
.doctor-photo:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

/* ═══════════════════════════════════════════════════════════════
   PROCESS / TIMELINE
   ═══════════════════════════════════════════════════════════════ */
.process-section {
  background: var(--cream);
  max-width: none;
}
.process-section > * { max-width: 1100px; margin-left: auto; margin-right: auto; }
.steps { display: flex; flex-direction: column; gap: 0; position: relative; }
.steps::before {
  content: '';
  position: absolute;
  left: 17px; top: 36px; bottom: 36px;
  width: 2px;
  background: linear-gradient(180deg, var(--blue-mid) 0%, var(--border) 100%);
  border-radius: 2px;
}
.step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  align-items: flex-start;
  border-bottom: none;
  position: relative;
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dk) 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(194, 24, 91, 0.3);
  position: relative;
  z-index: 1;
}
.step-body h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.step-body p { font-size: 14px; color: var(--mid); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════════
   INSTAGRAM REELS
   ═══════════════════════════════════════════════════════════════ */
.reels-section {
  background: linear-gradient(180deg, var(--blue-lt) 0%, var(--white) 100%);
  padding-bottom: 40px;
  max-width: none;
  text-align: center;
}
.reels-section > *:not(.reels-wrap):not(.reels-mobile-nav):not(.reels-dots) {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.reels-section .reels-wrap { background: transparent; }
.reels-section .reel-card iframe {
  display: block;
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  pointer-events: auto;
}
.reels-section .instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  margin: 24px auto 0;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 24px;
  background: var(--white);
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: all var(--duration) var(--ease);
  max-width: fit-content;
}
.reels-section .instagram-link:hover {
  background: var(--blue-lt);
  border-color: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 769px) {
  .reels-section .nav { display: none; }
}

@media (max-width: 768px) {
  .reels-section { position: relative; isolation: isolate; }
  .reels-section .reels-wrap {
    overflow: hidden;
    width: 100%;
    position: relative;
    z-index: 1;
    transform: translateZ(0);
    --reels-card-w: 100%;
    --reels-track-w: 400%;
  }
  .reels-section .reels-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    touch-action: manipulation;
    will-change: transform;
    pointer-events: none;
    width: var(--reels-track-w) !important;
    min-width: var(--reels-track-w) !important;
  }
  .reels-section .reel-card {
    flex: 0 0 var(--reels-card-w) !important;
    width: var(--reels-card-w) !important;
    min-width: var(--reels-card-w) !important;
    max-width: var(--reels-card-w) !important;
    aspect-ratio: 9 / 16;
    max-height: 72vh;
    margin: 0;
    position: relative;
    pointer-events: none;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
  }
  .reels-section .reel-card.is-active {
    pointer-events: auto;
    touch-action: auto;
    z-index: 2;
  }
  .reels-section .reel-card iframe { pointer-events: none; }
  .reels-section .reel-card.is-active iframe { pointer-events: auto !important; }
  .reels-section .reels-wrap.is-swiping .reel-card iframe { pointer-events: none !important; }
  .reels-section .reels-wrap.is-swiping .reel-card.is-active { pointer-events: auto; }
  .reels-section .nav { display: none; }
  .reel-nav-edge {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px; height: 52px;
    border: none;
    border-radius: 50%;
    background: rgba(27, 107, 138, 0.9);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    z-index: 12;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    pointer-events: auto;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: var(--shadow-md);
    transition: transform var(--duration) var(--ease), background var(--duration) var(--ease);
  }
  .reel-card.is-active .reel-nav-edge { display: flex; }
  .reel-nav-edge.prev { left: 6px; }
  .reel-nav-edge.next { right: 6px; }
  .reel-nav-edge:active {
    transform: translateY(-50%) scale(0.94);
    background: var(--blue);
  }
  .reels-mobile-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 16px 0;
    max-width: 420px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    pointer-events: auto;
  }
  .reels-section .instagram-link {
    position: relative;
    z-index: 10;
    pointer-events: auto !important;
    padding: 14px 20px 6px;
    min-height: 48px;
    line-height: 1.4;
    -webkit-tap-highlight-color: rgba(27, 107, 138, 0.15);
    touch-action: manipulation;
    display: block;
    border-radius: var(--radius-pill);
    max-width: none;
  }
  .reels-mnav-btn {
    flex: 1;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 14px 10px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    min-height: 48px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--duration) var(--ease);
  }
  .reels-mnav-btn:active { opacity: 0.9; transform: scale(0.98); }
  .reels-mnav-count {
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--mid);
    min-width: 44px;
    text-align: center;
  }
  .reels-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px 16px 0;
    position: relative;
    z-index: 10;
    pointer-events: auto;
  }
  .reels-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(27, 107, 138, 0.25);
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: all var(--duration) var(--ease);
  }
  .reels-dot.active {
    background: var(--blue);
    width: 24px;
    border-radius: var(--radius-pill);
  }
}

@media (min-width: 769px) {
  .reels-mobile-nav,
  .reels-dots { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   REVIEWS / TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */
.reviews-section { background: var(--white); max-width: none; text-align: center; }
.reviews-section > * { max-width: 1100px; margin-left: auto; margin-right: auto; text-align: left; }
.rating-row { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.stars { font-size: 18px; color: var(--gold); }
.rating-text { font-size: 13px; color: var(--mid); }
.rating-text strong { color: var(--charcoal); }
.reviews-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 22px 24px 26px;
  box-shadow: var(--shadow-xs);
  position: relative;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  border-left: 4px solid var(--blue-mid);
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 8px; right: 18px;
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  color: var(--blue-lt);
  line-height: 1;
  pointer-events: none;
  opacity: 0.9;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.reviewer-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(27, 107, 138, 0.25);
}
.reviewer-name { font-size: 15px; font-weight: 700; color: var(--charcoal); }
.reviewer-meta { font-size: 12px; color: var(--mid); }
.review-stars { font-size: 13px; color: var(--gold); letter-spacing: 1px; }
.review-text {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
  font-style: italic;
}
.google-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 28px auto 0;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 24px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--white);
  box-shadow: var(--shadow-xs);
  transition: all var(--duration) var(--ease);
}
.google-link:hover {
  background: var(--blue-lt);
  border-color: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Google rating badge */
.g-rating-block {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--duration) var(--ease);
}
.g-rating-block:hover { box-shadow: var(--shadow-md); }
.g-logo { font-size: 28px; font-weight: 900; letter-spacing: -1px; line-height: 1; }
.g-logo .g-b { color: #4285F4; }
.g-logo .g-r { color: #EA4335; }
.g-logo .g-y { color: #FBBC05; }
.g-logo .g-gr { color: #34A853; }
.g-info { flex: 1; }
.g-score {
  font-size: 32px;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1;
  font-family: 'Playfair Display', serif;
}
.g-stars-row { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.g-stars { color: #FBBC05; font-size: 18px; letter-spacing: 2px; }
.g-count { font-size: 13px; color: var(--mid); font-weight: 500; }
.g-label { font-size: 12px; color: var(--mid); margin-top: 4px; }
.g-verified {
  background: var(--teal-lt);
  color: #1B5E20;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  border: 1px solid rgba(0, 121, 107, 0.2);
}

/* ═══════════════════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════════════════ */
.faq-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--blue-soft) 100%);
  max-width: none;
}
.faq-section > * { max-width: 1100px; margin-left: auto; margin-right: auto; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
details:hover { box-shadow: var(--shadow-sm); }
details[open] {
  border-color: rgba(58, 141, 176, 0.35);
  box-shadow: var(--shadow-md);
}
summary {
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background var(--duration) var(--ease);
  -webkit-tap-highlight-color: transparent;
}
summary:hover { background: var(--blue-soft); }
summary::after {
  content: '+';
  font-size: 22px;
  color: var(--blue-mid);
  font-weight: 400;
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-lt);
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform var(--duration) var(--ease), background var(--duration) var(--ease);
}
details[open] summary::after {
  content: '−';
  background: var(--blue);
  color: #fff;
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 20px 20px;
  font-size: 14px;
  color: var(--mid);
  line-height: 1.75;
  animation: faqOpen 0.35s var(--ease);
}
.faq-answer a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, #154A5E 0%, var(--blue) 35%, #1B3A4B 70%, var(--rose-dk) 100%);
  color: #fff;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  max-width: none;
  position: relative;
  overflow: hidden;
}
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.04) 0%, transparent 35%);
  pointer-events: none;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 120%, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section > * { position: relative; z-index: 1; max-width: 800px; margin-left: auto; margin-right: auto; }
.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 5vw, 34px);
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.cta-section p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  line-height: 1.75;
}
.cta-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  margin: 0 auto;
}
.btn-wa {
  background: #25D366;
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}
.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}
.btn-call-w {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.btn-call-w:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.btn-book-w {
  background: var(--white);
  color: var(--rose);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.btn-book-w:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
footer {
  background: linear-gradient(180deg, #1A2332 0%, #121820 100%);
  color: rgba(255, 255, 255, 0.75);
  padding: 56px var(--space-md) 44px;
  font-size: 14px;
  text-align: center;
  line-height: 1.85;
  max-width: none;
  position: relative;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--blue), var(--gold), var(--rose)) 1;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #fff;
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.footer-logo::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 10px auto 0;
  border-radius: 2px;
}
footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
  border-bottom: 1px solid transparent;
}
footer a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.4);
}

/* ═══════════════════════════════════════════════════════════════
   STICKY BOTTOM BAR
   ═══════════════════════════════════════════════════════════════ */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  display: flex;
  gap: 0;
  z-index: 200;
  box-shadow: 0 -4px 24px rgba(27, 107, 138, 0.1);
}
.sticky-bar a {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: background var(--duration) var(--ease);
  letter-spacing: 0.02em;
}
.sticky-bar a.s-call {
  color: var(--blue);
  border-right: 1px solid var(--border);
}
.sticky-bar a.s-call:hover { background: var(--blue-lt); }
.sticky-bar a.s-wa {
  color: #25D366;
  border-right: 1px solid var(--border);
}
.sticky-bar a.s-wa:hover { background: rgba(37, 211, 102, 0.08); }
.sticky-bar a.s-book {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dk) 100%);
  color: #fff;
}
.sticky-bar a.s-book:hover { filter: brightness(1.05); }
.sticky-icon { font-size: 20px; }

.sticky-bar-spacer {
  height: calc(56px + env(safe-area-inset-bottom, 0px));
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (min-width: 640px) {
  .symptoms-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-strip { grid-template-columns: repeat(4, 1fr); }
  .stat-item:nth-child(2)::after { display: block; }
  .cta-btns { flex-direction: row; max-width: 560px; flex-wrap: wrap; justify-content: center; }
  .cta-btns a { flex: 1; min-width: 160px; }
  .doctor-header {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 32px;
  }
  .doctor-photo { width: 220px; height: 220px; }
  .reviews-list { grid-template-columns: repeat(2, 1fr); }
  .why-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (min-width: 900px) {
  nav { padding: 16px 40px; }
  section { padding: var(--space-xl) 40px; }
  .hero { padding: 88px 40px 64px; }
  .reviews-list { grid-template-columns: repeat(2, 1fr); }
  .steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }
  .steps::before { display: none; }
  .step {
    flex-direction: column;
    text-align: center;
    padding: 24px 16px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xs);
    transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  }
  .step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }
  .step-num { margin: 0 auto 12px; }
}

@media (min-width: 1024px) {
  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 56px;
    text-align: left;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 48px 88px;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-eyebrow {
    margin-bottom: 22px;
  }
  .hero h1 {
    margin: 0 0 22px;
    max-width: none;
    font-size: 50px;
    margin-left: 0;
    margin-right: 0;
  }
  .hero-sub {
    margin: 0 0 28px;
    max-width: 540px;
    margin-left: 0;
    margin-right: 0;
  }
  .hero-badges {
    justify-content: flex-start;
    margin-bottom: 0;
  }
  .hero-image-wrap {
    width: 100%;
    max-width: 420px;
    margin: 0;
    justify-self: end;
  }
  .stats-strip { margin-top: 0; }
  .reviews-list { grid-template-columns: repeat(2, 1fr); }
  .compare-table { font-size: 15px; }
  .compare-table th,
  .compare-table td { padding: 16px 20px; }
  section:first-of-type { padding-top: calc(var(--space-xl) + 24px); }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
    gap: 32px;
    text-align: left;
    align-items: center;
    max-width: 920px;
    margin: 0 auto;
    padding: 72px 32px 64px;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: 40px;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }

  .hero-sub {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }

  .hero-badges {
    justify-content: flex-start;
  }

  .hero-image-wrap {
    width: 100%;
    max-width: 300px;
    margin: 0;
    justify-self: end;
  }
}

/* ── Mobile-first polish ── */
@media (max-width: 767px) {
  html {
    scroll-padding-top: var(--mobile-header-h);
    -webkit-text-size-adjust: 100%;
  }

  body {
    background-attachment: scroll;
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
  }

  .site-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 16px rgba(27, 107, 138, 0.1);
    padding-top: env(safe-area-inset-top, 0px);
  }

  .site-header.is-scrolled {
    box-shadow: 0 4px 24px rgba(27, 107, 138, 0.14);
  }

  .topbar {
    display: none;
  }

  nav {
    padding: 12px 14px;
    min-height: 58px;
    background: #fff;
    border-bottom: 1px solid rgba(226, 234, 240, 0.9);
    box-shadow: none;
  }

  .site-header.is-scrolled nav {
    box-shadow: none;
  }

  .nav-logo {
    font-size: 16px;
    padding-left: 11px;
    line-height: 1.2;
  }

  .nav-logo::before {
    top: 2px;
    bottom: 2px;
  }

  .nav-logo span {
    display: block;
    font-size: 9px;
    letter-spacing: 0.05em;
    white-space: normal;
    line-height: 1.35;
    margin-top: 3px;
    max-width: 11rem;
  }

  .nav-cta {
    gap: 8px;
    flex-shrink: 0;
  }

  .btn-call,
  .btn-book {
    min-height: 38px;
    min-width: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
  }

  .btn-call {
    padding: 8px 12px;
    font-size: 12px;
  }

  .btn-book {
    padding: 8px 14px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 16px 32px;
    text-align: center;
    overflow: visible;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-content {
    display: block;
    width: 100%;
    max-width: 480px;
  }

  .hero-eyebrow {
    margin-bottom: 12px;
    font-size: 10px;
    padding: 7px 14px;
    letter-spacing: 0.1em;
  }

  .hero h1 {
    font-size: clamp(26px, 7.5vw, 34px);
    margin: 0 auto 14px;
    line-height: 1.2;
    max-width: 100%;
  }

  .hero-sub {
    font-size: 15px;
    line-height: 1.7;
    margin: 0 auto 18px;
    max-width: 100%;
    padding: 0 4px;
  }

  .hero-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 360px;
    margin: 0 auto 20px;
    justify-content: center;
  }

  .hero-image-wrap {
    width: min(280px, 88vw);
    margin: 0 auto;
    flex-shrink: 0;
  }

  .hero-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
  .badge {
    justify-content: flex-start;
    font-size: 13px;
    padding: 10px 14px;
    width: 100%;
  }

  .stats-strip {
    margin: 20px 12px 0;
    border-radius: var(--radius-md);
    max-width: calc(100% - 24px);
  }

  .stat-item {
    padding: 20px 10px;
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .stat-num {
    font-size: 20px;
  }

  .stat-label {
    font-size: 10px;
    line-height: 1.35;
  }

  section,
  .why-section,
  .compare-section,
  .doctor-section,
  .process-section,
  .reels-section,
  .reviews-section,
  .faq-section,
  .cta-section {
    padding: 40px 16px;
  }

  .section-eyebrow {
    font-size: 10px;
    padding: 5px 12px;
    margin-bottom: 12px;
  }

  .section-title {
    font-size: clamp(22px, 6vw, 28px);
    margin-bottom: 12px;
  }

  .section-title::after {
    width: 44px;
    margin-top: 12px;
  }

  .section-sub {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 24px;
  }

  .symptoms-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .symptom-card {
    padding: 20px 18px;
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
  }

  .symptom-icon {
    width: 44px;
    height: 44px;
    font-size: 20px;
    flex-shrink: 0;
  }

  .symptom-title {
    font-size: 14px;
  }

  .symptom-desc {
    font-size: 13px;
  }

  .why-item {
    padding: 18px 16px;
    gap: 12px;
  }

  .why-text h4 {
    font-size: 15px;
  }

  .why-text p {
    font-size: 13px;
  }

  .compare-section {
    padding-bottom: 28px;
  }

  .compare-section .section-sub::after {
    content: 'Swipe table →';
    display: block;
    margin-top: 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--blue-mid);
    letter-spacing: 0.04em;
  }

  .doctor-section {
    padding: 40px 16px;
  }

  .doctor-card {
    padding: 24px 18px;
  }

  .doctor-photo {
    width: 160px;
    height: 160px;
  }

  .dr-name {
    font-size: 22px;
  }

  .dr-cred {
    font-size: 13px;
  }

  .dr-points li {
    font-size: 13px;
    padding: 10px 12px;
  }

  .step {
    padding: 18px 0;
    gap: 14px;
  }

  .step-body h4 {
    font-size: 15px;
  }

  .step-body p {
    font-size: 13px;
  }

  .g-rating-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 16px;
  }

  .g-verified {
    align-self: flex-start;
  }

  .review-card {
    padding: 20px 18px 20px 20px;
  }

  .review-text {
    font-size: 13px;
  }

  summary {
    padding: 16px;
    font-size: 14px;
    gap: 12px;
    min-height: 52px;
  }

  .faq-answer {
    padding: 0 16px 16px;
    font-size: 13px;
  }

  .cta-section {
    padding: 44px 16px;
  }

  .cta-section h2 {
    font-size: clamp(22px, 6vw, 28px);
  }

  .cta-section p {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .cta-btns {
    max-width: 100%;
    width: 100%;
    gap: 10px;
  }

  .cta-btns a {
    width: 100%;
    min-height: 48px;
    padding: 14px 16px;
    font-size: 14px;
  }

  footer {
    padding: 40px 16px 32px;
    font-size: 13px;
    line-height: 1.7;
  }

  .footer-logo {
    font-size: 20px;
  }

  .sticky-bar {
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .sticky-bar a {
    padding: 10px 6px calc(12px + env(safe-area-inset-bottom, 0px));
    font-size: 10px;
    min-height: 52px;
  }

  .sticky-bar-spacer {
    height: calc(60px + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 380px) {
  .nav-logo {
    font-size: 15px;
  }

  .nav-logo span {
    font-size: 8px;
    max-width: 9.5rem;
  }

  .btn-call {
    padding: 8px 10px;
    min-width: 48px;
  }

  .btn-book {
    padding: 8px 12px;
    min-width: 56px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .stats-strip {
    margin: 12px 10px 0;
  }
}
