/* ============================================================
   APOLLO CLINIC UDAIPUR — ULTRA PREMIUM DESIGN SYSTEM
   ============================================================ */

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

/* ── TOKENS ── */
:root {
  --teal:        #0284C7;
  --teal-light:  #F0F9FF;
  --teal-mid:    #0EA5E9;
  --teal-glow:   rgba(14,165,233,0.25);
  --teal-vivid:  #38BDF8;
  --navy:        #0B2838;
  --navy-soft:   #0F3A53;
  --navy-mid:    #155174;
  --cream:       #F8FAFC;
  --warm-white:  #FFFFFF;
  --white:       #FFFFFF;
  --text:        #111827;
  --text-muted:  #6B7280;
  --text-light:  #9CA3AF;
  --border:      rgba(0,0,0,0.07);
  --border-light:rgba(255,255,255,0.08);
  --gold:        #C9963D;
  --gold-light:  #FFF3DB;
  --error:       #DC2626;
  --error-light: #FEE2E2;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.08);
  --shadow-teal: 0 8px 32px rgba(2,132,199,0.30);
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-full: 9999px;
  --nav-h:       76px;
  --transition:  0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--warm-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
html { scroll-padding-top: 120px; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ═══════════════════════════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all var(--transition);
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.09);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: all var(--transition);
}
.site-header.scrolled::before {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 4px 28px rgba(0,0,0,0.11);
}
.header-top-bar {
  position: relative;
  background: var(--navy);
  padding: 7px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
  transition: height var(--transition), opacity var(--transition);
  overflow: hidden;
}
.site-header.scrolled .header-top-bar {
  height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  pointer-events: none;
}
.top-bar-left { display: flex; align-items: center; gap: 24px; }
.top-bar-item { display: flex; align-items: center; gap: 6px; }
.top-bar-item svg { opacity: 0.6; }
.top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar-link {
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.top-bar-link:hover { color: var(--teal-vivid); }
.open-now-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(56,189,248,0.12);
  color: var(--teal-vivid);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 500;
}
.pulse-dot {
  width: 6px; height: 6px;
  background: var(--teal-vivid);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: var(--nav-h);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-mark {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-teal);
  overflow: hidden;
}
.nav-logo-mark::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(transparent 25%, rgba(255,255,255,0.15) 50%, transparent 75%);
  animation: logo-spin 6s linear infinite;
}
@keyframes logo-spin { to { transform: rotate(360deg); } }
.nav-logo-mark span {
  position: relative;
  z-index: 1;
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.nav-logo-text-group { display: flex; flex-direction: column; }
.nav-logo-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.3px;
  line-height: 1.1;
}
.nav-logo-sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links li { position: relative; }
.nav-links a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--teal);
  background: var(--teal-light);
}
.nav-links a.active { font-weight: 600; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%;
  transform: translateX(-50%);
  width: 18px; height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}
.nav-phone:hover { border-color: var(--teal); color: var(--teal); }
.nav-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal-mid) 0%, var(--teal) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}
.nav-cta:hover::before { opacity: 1; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-teal); }
.nav-cta span { position: relative; z-index: 1; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border-radius: var(--radius-sm);
}
.hamburger-line {
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile nav drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--warm-white);
  z-index: 999;
  padding: 96px 32px 40px;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
  border: 1.5px solid transparent;
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  background: var(--teal-light);
  color: var(--teal);
  border-color: rgba(2,132,199,0.15);
}
.mobile-drawer-cta {
  margin-top: 16px;
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 16px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}
.mobile-drawer-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  color: var(--text-muted);
  font-size: 14px;
  text-decoration: none;
}
.drawer-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 40px; height: 40px;
  border-radius: var(--radius-full);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text-muted);
  cursor: pointer;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  position: relative;
  overflow: hidden;
}
.footer-glow {
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(2,132,199,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.footer-grid-section {
  padding: 72px 60px 56px;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 56px;
  position: relative;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-logo-mark {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}
.footer-logo-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.footer-logo-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-brand-desc {
  font-size: 14px;
  line-height: 1.8;
  font-weight: 300;
  max-width: 300px;
  margin-bottom: 28px;
}
.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.5;
}
.footer-contact-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.footer-contact-text { color: rgba(255,255,255,0.65); }
.footer-contact-text a { text-decoration: none; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-contact-text a:hover { color: var(--teal-vivid); }

.footer-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  font-weight: 300;
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col a:hover { color: #fff; }
.footer-col a::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--teal-mid);
  border-radius: 50%;
  opacity: 0;
  transition: opacity var(--transition);
}
.footer-col a:hover::before { opacity: 1; }

.footer-hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 13px;
}
.footer-hours-item:last-child { border-bottom: none; }
.hours-day-name { color: rgba(255,255,255,0.45); font-weight: 300; }
.hours-time-val { color: rgba(255,255,255,0.75); font-weight: 500; }
.hours-time-val.closed { color: #F87171; }

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 0 60px;
}
.footer-bottom {
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom-left { color: rgba(255,255,255,0.35); font-weight: 300; }
.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.35);
  font-size: 12px;
}
.footer-bottom-right span { color: #F87171; }

.footer-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(56,189,248,0.1);
  border: 1px solid rgba(56,189,248,0.2);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  color: var(--teal-vivid);
  font-weight: 500;
}
.footer-badge-dot { width: 6px; height: 6px; background: var(--teal-vivid); border-radius: 50%; animation: pulse 2s infinite; }

/* ═══════════════════════════════════════════════════════════
   SHARED COMPONENTS
   ═══════════════════════════════════════════════════════════ */

/* Page wrapper — accounts for fixed header */
.page-wrapper {
  padding-top: calc(var(--nav-h) + 32px); /* top bar ~32px */
}
.page-wrapper.dark-hero { padding-top: 0; }

/* Section layout */
.section-wrap { padding: 96px 60px; }
.section-wrap.bg-cream { background: var(--cream); }
.section-wrap.bg-navy { background: var(--navy); }
.section-wrap.bg-white { background: var(--white); }

.section-header { margin-bottom: 56px; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.section-eyebrow-line {
  width: 24px; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-mid));
  border-radius: 2px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--teal); }
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
  max-width: 540px;
}
.section-title.on-dark { color: #fff; }
.section-sub.on-dark { color: rgba(255,255,255,0.55); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: inherit;
}
.btn:hover::before { opacity: 1; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 4px 14px rgba(10,22,40,0.25);
}
.btn-primary::before { background: linear-gradient(135deg, var(--teal), var(--teal-mid)); }
.btn-primary:hover { box-shadow: var(--shadow-teal); }

.btn-teal {
  background: linear-gradient(135deg, var(--teal), var(--teal-mid));
  color: #fff;
  box-shadow: var(--shadow-teal);
}
.btn-teal::before { background: linear-gradient(135deg, var(--teal-mid), var(--teal)); }
.btn-teal:hover { box-shadow: 0 10px 40px rgba(2,132,199,0.4); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--border);
}
.btn-outline::before { background: var(--teal-light); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }

.btn-white {
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow-md);
}
.btn-white::before { background: var(--teal-light); }
.btn-white:hover { color: var(--teal); }

.btn-ghost-white {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.14); color: #fff; border-color: rgba(255,255,255,0.28); }

.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-icon { padding: 11px 11px; }

/* Cards */
.card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.card:hover {
  border-color: rgba(2,132,199,0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Tag chip */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.tag-teal { background: var(--teal-light); color: var(--teal); }
.tag-gold { background: var(--gold-light); color: #92700E; }
.tag-navy { background: rgba(10,22,40,0.08); color: var(--navy); }
.tag-green { background: #DCFCE7; color: #15803D; }
.tag-red { background: #FEE2E2; color: #DC2626; }

/* Available badge */
.avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: #DCFCE7;
  color: #15803D;
  border-radius: var(--radius-full);
  font-size: 11.5px;
  font-weight: 600;
}
.avail-dot {
  width: 6px; height: 6px;
  background: #22C55E;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Stat box */
.stat-box { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}
.stat-num.on-dark { color: #fff; }
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
  margin-top: 4px;
}
.stat-label.on-dark { color: rgba(255,255,255,0.45); }

/* Glassmorphism card */
.glass-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.11);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-vivid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════════════════════
   PAGE HERO (shared)
   ═══════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--navy);
  padding: 100px 60px 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(2,132,199,0.22) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 100px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(56,189,248,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 700px; }
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-vivid);
  margin-bottom: 18px;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 500;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.page-hero h1 em { font-style: italic; color: #9FE1CB; }
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  font-weight: 300;
  max-width: 540px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.breadcrumb a { text-decoration: none; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--teal-vivid); }
.breadcrumb-sep { opacity: 0.3; font-size: 11px; }

/* ═══════════════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════════════ */
.cta-banner {
  background: var(--navy);
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(2,132,199,0.10) 0%, transparent 50%, rgba(56,189,248,0.07) 100%);
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-vivid);
  margin-bottom: 14px;
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 40px);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.cta-sub { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.7; font-weight: 300; max-width: 500px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   FORM STYLES
   ═══════════════════════════════════════════════════════════ */
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
  letter-spacing: 0.01em;
}
.field input, .field select, .field textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 14.5px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-glow);
}
.field textarea { resize: vertical; min-height: 120px; }
.field.error input, .field.error textarea { border-color: var(--error); background: var(--error-light); }
.field .err-msg { font-size: 12px; color: var(--error); margin-top: 5px; font-weight: 500; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* Submit button */
.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  padding: 15px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}
.submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal), var(--teal-mid));
  opacity: 0;
  transition: opacity var(--transition);
}
.submit-btn:hover::before { opacity: 1; }
.submit-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-teal); }
.submit-btn span { position: relative; z-index: 1; }

/* ═══════════════════════════════════════════════════════════
   SUCCESS STATE
   ═══════════════════════════════════════════════════════════ */
.success-state {
  text-align: center;
  padding: 60px 32px;
}
.success-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--teal), var(--teal-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  box-shadow: 0 8px 24px rgba(2,132,199,0.3);
  animation: bounceIn 0.5s cubic-bezier(0.175,0.885,0.32,1.275);
}
@keyframes bounceIn {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}
.success-h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 12px;
}
.success-p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }
.success-ref-box {
  background: var(--teal-light);
  border: 1.5px solid rgba(2,132,199,0.15);
  border-radius: var(--radius-md);
  padding: 16px 28px;
  display: inline-block;
  margin-bottom: 28px;
}
.success-ref-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; color: var(--teal); margin-bottom: 4px; text-transform: uppercase; }
.success-ref-num { font-family: 'Space Grotesk', sans-serif; font-size: 22px; color: var(--teal); font-weight: 700; }
.success-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .nav-phone { display: none; }
  .footer-grid-section { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  :root { --nav-h: 68px; }
  .header-top-bar { padding: 6px 24px; font-size: 11px; }
  .header-top-bar .top-bar-left { display: none; }
  .nav-inner { padding: 0 24px; }
  .nav-links, .nav-right .nav-phone, .nav-right .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-drawer { display: flex; }
  .footer-grid-section { grid-template-columns: 1fr; padding: 48px 24px 40px; gap: 36px; }
  .footer-divider, .footer-bottom { padding-left: 24px; padding-right: 24px; }
  .section-wrap { padding: 64px 24px; }
  .page-hero { padding: 80px 24px 56px; }
  .cta-banner { grid-template-columns: 1fr; padding: 60px 24px; }
  .cta-actions { flex-direction: column; }
  .form-grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .footer-grid-section { padding: 40px 20px; }
}
