/* =========================================================
   Annapurna Hospital — vibrant theme matching logo (royal blue)
   Palette: royal blue (logo) + electric coral + warm gold
   Fonts: Fraunces (display) + Plus Jakarta Sans (body)
   ========================================================= */

:root {
  --blue: #1E3A8A;          /* matches logo deep blue */
  --blue-700: #15296b;
  --blue-500: #2D52C4;
  --blue-100: #DBE5FF;
  --blue-50: #EEF3FF;

  --coral: #FF5E5B;          /* lively coral red */
  --coral-soft: #FFB199;
  --gold: #F8B400;           /* warm gold */
  --mint: #14B8A6;           /* teal-mint highlight */

  --cream: #FFF9F0;
  --bg: #F7F8FC;             /* soft pearl background */
  --white: #FFFFFF;

  --ink: #0B1437;            /* dark navy text */
  --ink-2: #2c365a;
  --muted: #6B7799;
  --line: #E1E6F2;

  --shadow: 0 30px 60px -25px rgba(30, 58, 138, 0.35);
  --shadow-sm: 0 10px 25px -10px rgba(30, 58, 138, 0.20);
  --shadow-coral: 0 14px 30px -10px rgba(255, 94, 91, 0.5);

  --radius: 22px;
  --radius-sm: 14px;
  --maxw: 1280px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
::selection { background: var(--coral); color: var(--white); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, .display {
  font-family: 'Fraunces', 'Playfair Display', serif;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.05;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 5.8vw, 5rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 3.8vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); font-weight: 600; }
p  { line-height: 1.7; color: var(--ink-2); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--blue-100);
  padding: 8px 14px; border-radius: 100px;
  box-shadow: 0 4px 12px -4px rgba(30,58,138,0.15);
}
.eyebrow.coral { color: var(--coral); border-color: rgba(255,94,91,0.25); }
.eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255,94,91,0.18);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255,94,91,0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(255,94,91,0.05); }
}

.section { padding: 120px 0; position: relative; }
.section-tight { padding: 80px 0; }

/* Buttons - magnetic feel */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 100px;
  font-weight: 700; font-size: 15px;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--blue); color: var(--white);
  box-shadow: 0 14px 30px -10px rgba(30,58,138,0.5);
}
.btn-primary::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: translateX(-100%);
  transition: transform .6s ease;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover { background: var(--blue-700); transform: translateY(-3px); box-shadow: 0 20px 40px -12px rgba(30,58,138,0.6); }
.btn-coral { background: var(--coral); color: white; box-shadow: var(--shadow-coral); }
.btn-coral:hover { background: #ee4644; transform: translateY(-3px); box-shadow: 0 20px 40px -10px rgba(255,94,91,0.6); }
.btn-ghost {
  background: var(--white); color: var(--ink);
  border: 1.5px solid var(--line);
  box-shadow: 0 4px 14px -6px rgba(0,0,0,0.08);
}
.btn-ghost:hover { background: var(--ink); color: var(--white); border-color: var(--ink); transform: translateY(-3px); }
.btn .arrow { transition: transform .3s ease; display: inline-block; }
.btn:hover .arrow { transform: translateX(5px); }

/* =========================================================
   HEADER / NAV / TOPBAR
   ========================================================= */
.topbar {
  background: var(--blue);
  color: rgba(255,255,255,0.92);
  font-size: 13px; padding: 10px 0;
  position: relative; overflow: hidden;
}
.topbar::before {
  content: "";
  position: absolute; top: 0; bottom: 0; left: 0; right: 0;
  background: linear-gradient(90deg, transparent, rgba(248,180,0,0.15), transparent);
  animation: shimmer 8s linear infinite;
}
@keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  position: relative; z-index: 1;
}
.topbar a { display: inline-flex; align-items: center; gap: 6px; transition: color .2s ease; }
.topbar a:hover { color: var(--gold); }
.topbar .left, .topbar .right { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }

.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(30,58,138,0.06);
  transition: box-shadow .3s ease, padding .3s ease, background .3s ease;
}
.nav.scrolled {
  box-shadow: 0 10px 30px -18px rgba(30,58,138,0.18);
  background: rgba(255,255,255,0.95);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 92px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  overflow: hidden;
  transition: transform .3s ease;
}
.brand:hover .brand-logo { transform: rotate(-4deg) scale(1.04); }
.brand-logo img { width: 64px; height: 64px; object-fit: contain; }
.brand-text {
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.brand-name {
  display: block;
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: 22px; color: var(--blue);
  letter-spacing: -0.01em;
}
.brand-sub {
  display: block;
  margin-top: 4px;
  font-size: 11px; color: var(--muted);
  letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600;
}

.menu { display: flex; align-items: center; gap: 4px; }
.menu > li > a, .menu > li > button {
  position: relative;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 16px;
  font-size: 15px; font-weight: 600;
  color: var(--ink);
  border-radius: 100px;
  transition: color .2s ease, background .2s ease;
}
.menu > li > a:hover, .menu > li > button:hover { color: var(--blue); background: var(--blue-50); }
.menu > li > a.active { color: var(--blue); background: var(--blue-50); }
.menu > li > a.active::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px;
  height: 3px; background: var(--coral); border-radius: 3px;
}
.menu .cta { margin-left: 14px; }

/* Mega Menu */
.has-mega { position: relative; }
.mega {
  position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%) translateY(-10px);
  width: min(960px, 94vw);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(28px) saturate(170%);
  -webkit-backdrop-filter: blur(28px) saturate(170%);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 40px 80px -25px rgba(30,58,138,0.30);
  border-radius: 24px;
  padding: 32px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease, transform .3s cubic-bezier(.2,.7,.2,1);
  z-index: 110;
}
.has-mega:hover .mega,
.has-mega:focus-within .mega,
.has-mega.open .mega { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.mega-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px; font-weight: 800;
  display: flex; align-items: center; gap: 8px;
}
.mega-col h4 i { color: var(--blue); }
.mega-col ul li a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; border-radius: 12px;
  font-size: 14.5px; font-weight: 600;
  color: var(--ink-2);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.mega-col ul li a i { color: var(--blue); width: 18px; transition: transform .2s ease; }
.mega-col ul li a:hover { background: var(--blue-50); color: var(--blue); }
.mega-col ul li a:hover i { transform: translateX(3px); color: var(--coral); }

.mega-footer {
  grid-column: 1 / -1;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px; margin-top: 4px;
  border-top: 1px dashed var(--line);
  flex-wrap: wrap; gap: 12px;
}
.mega-footer .note { color: var(--muted); font-size: 13px; }
.mega-footer .actions { display: flex; gap: 10px; }

/* Hamburger */
.hamburger {
  display: none;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.hamburger span {
  position: absolute; left: 14px; right: 14px; height: 2.5px;
  background: var(--blue); border-radius: 2px;
  transition: transform .3s ease, top .3s ease, opacity .2s ease;
}
.hamburger span:nth-child(1) { top: 16px; }
.hamburger span:nth-child(2) { top: 23px; }
.hamburger span:nth-child(3) { top: 30px; }
.hamburger.open span:nth-child(1) { top: 23px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 23px; transform: rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0;
  background: var(--white);
  z-index: 105;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.7,0,.2,1);
  overflow-y: auto;
  padding: 110px 28px 60px;
}
.drawer.open { transform: translateX(0); }
.drawer ul { display: flex; flex-direction: column; gap: 4px; }
.drawer ul li > a, .drawer ul li > button {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 18px 4px;
  font-family: 'Fraunces', serif; font-size: 26px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.drawer .accordion-content {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease;
  background: var(--blue-50); border-radius: 14px;
  margin: 0 0 8px;
}
.drawer .accordion.open .accordion-content { max-height: 700px; padding: 8px 16px; }
.drawer .accordion-content a {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 600;
  padding: 12px 4px; border: none;
  color: var(--ink-2);
}
.drawer .accordion-content a i { color: var(--blue); }
.drawer .drawer-cta { margin-top: 30px; display: flex; flex-direction: column; gap: 10px; }
.drawer .accordion .chev { transition: transform .3s ease; color: var(--blue); }
.drawer .accordion.open .chev { transform: rotate(180deg); }

@media (max-width: 1100px) {
  .menu, .topbar .left { display: none; }
  .hamburger { display: block; }
  .nav-inner { height: 76px; }
  .brand-logo { width: 56px; height: 56px; }
  .brand-logo img { width: 56px; height: 56px; }
}

/* =========================================================
   HERO — vibrant, living
   ========================================================= */
.hero {
  position: relative;
  padding: 70px 0 130px;
  overflow: hidden;
  background: var(--bg);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(255,94,91,0.18), transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(30,58,138,0.10), transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(248,180,0,0.06), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(30,58,138,0.10) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, black 25%, transparent 75%);
  pointer-events: none;
}

/* Floating animated blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .35;
  pointer-events: none;
  animation: blobFloat 14s ease-in-out infinite;
}
.blob-1 { width: 380px; height: 380px; background: var(--coral); top: -100px; right: -80px; }
.blob-2 { width: 320px; height: 320px; background: var(--blue-500); bottom: -120px; left: -100px; animation-delay: -4s; }
.blob-3 { width: 240px; height: 240px; background: var(--gold); top: 40%; left: 30%; animation-delay: -8s; opacity: .25; }
@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-40px) scale(1.08); }
  66% { transform: translate(-20px,30px) scale(.95); }
}

.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 70px; align-items: center;
}
.hero h1 {
  margin-top: 22px;
}
.hero h1 .accent {
  font-style: italic; color: var(--blue);
  position: relative; display: inline-block;
}
.hero h1 .accent::after {
  content: "";
  position: absolute; left: -2%; right: -2%; bottom: 6px;
  height: 16px; background: rgba(255,94,91,0.30);
  z-index: -1; border-radius: 4px;
  transform: skewX(-6deg);
}
.hero h1 .word {
  display: inline-block;
  opacity: 0; transform: translateY(20px);
  animation: wordIn .7s cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes wordIn { to { opacity: 1; transform: translateY(0); } }

.hero p.lead {
  font-size: 1.15rem; color: var(--ink-2);
  max-width: 540px; margin-top: 28px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 38px; }

.hero-stats {
  display: flex; gap: 44px; margin-top: 56px; flex-wrap: wrap;
  padding-top: 36px; border-top: 1px dashed var(--line);
}
.hero-stats .stat strong {
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: 2.6rem; color: var(--blue); display: block; line-height: 1;
}
.hero-stats .stat span { font-size: 13px; color: var(--muted); letter-spacing: 0.04em; margin-top: 6px; display: block; }

/* Hero visual collage */
.hero-visual {
  position: relative;
  height: 600px;
}
.hero-img-main {
  position: absolute; right: 0; top: 0;
  width: 78%; height: 78%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
  transition: transform .6s ease;
}
.hero-img-main img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.hero-img-main:hover { transform: rotate(0deg) scale(1.02); }
.hero-img-main:hover img { transform: scale(1.08); }

.hero-img-sub {
  position: absolute; left: 0; bottom: 30px;
  width: 52%; height: 50%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: rotate(-3deg);
  border: 6px solid white;
  z-index: 2;
}
.hero-img-sub img { width: 100%; height: 100%; object-fit: cover; }

.hero-badge {
  position: absolute; left: 18px; top: 28px;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 14px 18px; border-radius: 100px;
  box-shadow: var(--shadow-sm);
  z-index: 5;
  animation: float 6s ease-in-out infinite;
}
.hero-badge .stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; }
.hero-badge strong { font-size: 15px; color: var(--ink); }
.hero-badge span { font-size: 11px; color: var(--muted); display: block; }

.float-card {
  position: absolute; z-index: 4;
  background: white;
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px;
  animation: float 6s ease-in-out infinite;
}
.float-card.fc-1 { top: 38%; right: -30px; animation-delay: -2s; }
.float-card.fc-2 { bottom: 40px; right: 20%; animation-delay: -4s; background: var(--blue); color: white; }
.float-card .icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--blue-50); color: var(--blue);
  display: grid; place-items: center;
  font-size: 18px;
}
.float-card.fc-2 .icon { background: rgba(255,255,255,0.18); color: white; }
.float-card strong { font-size: 13px; display: block; line-height: 1.2; }
.float-card span { font-size: 11px; color: var(--muted); }
.float-card.fc-2 span { color: rgba(255,255,255,0.7); }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 950px) {
  .hero { padding: 50px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { height: 500px; }
  .float-card.fc-1 { right: 0; }
}

/* =========================================================
   BRAND TICKER (instead of marquee)
   ========================================================= */
.ticker {
  background: var(--ink);
  color: rgba(255,249,240,0.9);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}
.ticker::before, .ticker::after {
  content: "";
  position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.ticker::after  { right: 0; background: linear-gradient(-90deg, var(--ink), transparent); }
.ticker-track {
  display: flex; gap: 50px;
  animation: scroll-x 28s linear infinite;
  white-space: nowrap;
}
.ticker-track span {
  font-family: 'Fraunces', serif;
  font-size: 1.7rem; font-style: italic; font-weight: 500;
  display: inline-flex; align-items: center; gap: 50px;
}
.ticker-track i { color: var(--coral); font-size: 1rem; }
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   SECTION HEAD
   ========================================================= */
.section-head {
  display: flex; justify-content: space-between; align-items: end;
  flex-wrap: wrap; gap: 30px; margin-bottom: 60px;
}
.section-head .left { max-width: 660px; }
.section-head h2 { margin-top: 16px; }
.section-head p { margin-top: 16px; color: var(--ink-2); font-size: 1.05rem; max-width: 380px; }

/* =========================================================
   SERVICES GRID
   ========================================================= */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px 30px;
  border: 1px solid var(--line);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-700) 100%);
  opacity: 0; transition: opacity .35s ease;
  z-index: 0;
}
.service-card::after {
  content: "";
  position: absolute; top: -40px; right: -40px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(255,94,91,0.30), transparent 70%);
  opacity: 0; transition: opacity .5s ease;
}
.service-card > * { position: relative; z-index: 1; }
.service-card .ic {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--blue-50); color: var(--blue);
  display: grid; place-items: center;
  font-size: 26px;
  margin-bottom: 24px;
  transition: transform .35s ease, background .35s ease, color .35s ease;
}
.service-card h3 { font-family: 'Fraunces', serif; font-size: 1.4rem; }
.service-card p { font-size: 14.5px; margin-top: 10px; color: var(--muted); }
.service-card .more {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 22px; font-weight: 700; font-size: 14px;
  color: var(--coral);
  transition: gap .25s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { opacity: 1; }
.service-card:hover h3, .service-card:hover p, .service-card:hover .more { color: var(--white); }
.service-card:hover .ic { background: var(--coral); color: var(--white); transform: rotate(-8deg) scale(1.08); }
.service-card:hover .more { gap: 14px; }

@media (max-width: 950px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* =========================================================
   CARE FINDER
   ========================================================= */
.care-finder {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px;
  background:
    radial-gradient(circle at top right, rgba(255,94,91,0.10), transparent 30%),
    linear-gradient(135deg, var(--white), #f9fbff);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 34px;
  box-shadow: var(--shadow-sm);
}
.care-finder-intro p { max-width: 680px; }
.care-finder-tags {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 28px;
}
.finder-chip {
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--white);
  border: 1.5px solid var(--line);
  color: var(--ink);
  font-size: 14px; font-weight: 700;
  transition: all .25s ease;
  box-shadow: 0 8px 20px -16px rgba(30,58,138,0.35);
}
.finder-chip:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}
.finder-chip.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: 0 18px 34px -18px rgba(30,58,138,0.60);
}
.care-finder-result {
  background: var(--ink);
  color: var(--white);
  border-radius: 28px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.care-finder-result::before {
  content: "";
  position: absolute; top: -90px; right: -90px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,94,91,0.45), transparent 68%);
  filter: blur(10px);
}
.care-finder-result > * { position: relative; z-index: 1; }
.finder-result-top {
  display: flex; align-items: center; gap: 16px;
}
.finder-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: rgba(255,255,255,0.10);
  display: grid; place-items: center;
  font-size: 24px;
}
.finder-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  color: rgba(255,255,255,0.68);
  font-weight: 800;
  margin-bottom: 8px;
}
.care-finder-result h3 {
  color: var(--white);
  font-size: 1.7rem;
}
.finder-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-top: 24px;
}
.finder-metric {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 16px 18px;
}
.finder-metric span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,0.60);
  font-weight: 800;
}
.finder-metric strong {
  display: block;
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--white);
}
.finder-reason {
  margin-top: 22px;
  color: rgba(255,255,255,0.84);
  font-size: 14.5px;
}
.finder-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 24px;
}
.finder-actions .btn-primary {
  background: var(--coral);
  box-shadow: var(--shadow-coral);
}
.finder-actions .btn-primary:hover { background: #ee4644; }
.finder-actions .btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,0.26);
  background: transparent;
}
.finder-actions .btn-ghost:hover {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}
.finder-note {
  margin-top: 20px;
  display: flex; gap: 10px; align-items: flex-start;
  color: rgba(255,255,255,0.72);
  font-size: 13px; line-height: 1.6;
}
.finder-note i { color: var(--gold); margin-top: 2px; }
@media (max-width: 950px) {
  .care-finder { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .care-finder { padding: 22px; border-radius: 24px; }
  .finder-grid { grid-template-columns: 1fr; }
  .finder-chip { width: 100%; text-align: left; }
}

/* =========================================================
   ABOUT
   ========================================================= */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 80px; align-items: center;
}
.about-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.about-img-wrap:hover img { transform: scale(1.06); }
.about-img-wrap .badge-years {
  position: absolute; bottom: 24px; right: 24px;
  background: var(--coral); color: white;
  padding: 22px 28px; border-radius: 22px;
  font-family: 'Fraunces', serif; line-height: 1;
  text-align: center;
  box-shadow: var(--shadow-coral);
  transform: rotate(-3deg);
}
.about-img-wrap .badge-years strong { font-size: 2.6rem; display: block; font-weight: 600; }
.about-img-wrap .badge-years span { font-size: 12px; letter-spacing: .15em; text-transform: uppercase; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; }

.feature-list { margin-top: 32px; display: flex; flex-direction: column; gap: 18px; }
.feature-row {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px dashed var(--line);
  transition: padding .25s ease;
}
.feature-row:hover { padding-left: 8px; }
.feature-row .ic {
  width: 46px; height: 46px; flex: 0 0 46px;
  border-radius: 14px; background: var(--blue-50); color: var(--blue);
  display: grid; place-items: center;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.feature-row:hover .ic { transform: rotate(-8deg) scale(1.06); background: var(--coral); color: white; }
.feature-row strong { font-size: 16px; color: var(--ink); display: block; margin-bottom: 4px; }
.feature-row span { font-size: 14px; color: var(--muted); }

@media (max-width: 950px) { .about-grid { grid-template-columns: 1fr; gap: 50px; } }

/* =========================================================
   COUNTERS
   ========================================================= */
.counters {
  background: var(--blue);
  color: var(--white);
  padding: 100px 0;
  position: relative; overflow: hidden;
}
.counters::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
}
.counters::after {
  content: "";
  position: absolute; top: -150px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,94,91,0.4), transparent 70%);
  filter: blur(40px);
}
.counters-grid {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
}
.counter-cell {
  text-align: center; padding: 20px 10px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.counter-cell:last-child { border-right: none; }
.counter-cell strong {
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  display: block; color: var(--white);
  line-height: 1;
}
.counter-cell strong .plus { color: var(--gold); }
.counter-cell span {
  display: block; margin-top: 16px;
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}
@media (max-width: 700px) {
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .counter-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding-bottom: 30px; }
}

/* =========================================================
   DOCTORS
   ========================================================= */
.doctors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.doc-card {
  background: var(--white);
  border-radius: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  transition: transform .35s ease, box-shadow .35s ease;
}
.doc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.doc-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 18px;
  overflow: hidden;
  background: var(--blue-50);
}
.doc-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.doc-card:hover .doc-photo img { transform: scale(1.06); }
.doc-photo .specialty {
  position: absolute; left: 14px; bottom: 14px;
  background: var(--coral); color: white;
  padding: 7px 14px; border-radius: 100px;
  font-size: 11px; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  box-shadow: var(--shadow-coral);
}
.doc-meta { padding: 22px 8px 10px; }
.doc-meta h3 { font-family: 'Fraunces', serif; font-size: 1.4rem; }
.doc-meta .qual { font-size: 13px; color: var(--blue); margin-top: 4px; font-weight: 600; }
.doc-meta .desc { font-size: 14px; margin-top: 14px; color: var(--muted); }
.doc-card .actions { display: flex; gap: 8px; margin-top: 18px; padding: 0 8px 8px; }
.doc-card .actions a {
  flex: 1; text-align: center;
  padding: 12px 14px; border-radius: 100px;
  font-size: 13px; font-weight: 700;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.doc-card .actions .pri { background: var(--blue); color: var(--white); }
.doc-card .actions .pri:hover { background: var(--blue-700); transform: translateY(-2px); }
.doc-card .actions .sec { background: var(--blue-50); color: var(--blue); }
.doc-card .actions .sec:hover { background: var(--coral); color: white; transform: translateY(-2px); }
@media (max-width: 950px) { .doctors-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .doctors-grid { grid-template-columns: 1fr; } }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testi-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--blue-50) 100%);
  position: relative;
  overflow: hidden;
}
.testi-rail {
  display: flex; gap: 24px;
  overflow-x: auto;
  padding: 10px 24px 30px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.testi-rail::-webkit-scrollbar { display: none; }
.testi-card {
  flex: 0 0 400px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.testi-card .quote-mark {
  position: absolute; top: 18px; right: 26px;
  font-family: 'Fraunces', serif;
  font-size: 5rem; line-height: 1;
  color: var(--blue-50);
}
.testi-card .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; font-size: 16px; }
.testi-card p { font-size: 15px; color: var(--ink-2); }
.testi-card .who {
  display: flex; align-items: center; gap: 12px; margin-top: 22px;
  padding-top: 18px; border-top: 1px solid var(--line);
}
.testi-card .who .avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--blue); color: var(--white);
  display: grid; place-items: center;
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 16px;
}
.testi-card .who strong { display: block; font-size: 14px; color: var(--ink); }
.testi-card .who span { font-size: 12px; color: var(--muted); }

.testi-controls { display: flex; gap: 8px; margin-left: auto; }
.testi-controls button {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--blue);
  transition: background .2s, color .2s, transform .2s;
}
.testi-controls button:hover { background: var(--blue); color: white; border-color: var(--blue); transform: scale(1.08); }

@media (max-width: 600px) { .testi-card { flex: 0 0 88%; } }

/* =========================================================
   BLOG
   ========================================================= */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-grid.featured { grid-template-columns: 1.4fr 1fr 1fr; }
.blog-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.blog-thumb {
  aspect-ratio: 16/10; overflow: hidden; background: var(--blue-50);
  position: relative;
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.blog-card:hover .blog-thumb img { transform: scale(1.08); }
.blog-thumb .tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--coral); color: var(--white);
  padding: 7px 14px; border-radius: 100px;
  font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  box-shadow: var(--shadow-coral);
}
.blog-meta {
  padding: 26px;
  display: flex; flex-direction: column; flex: 1;
}
.blog-meta .date {
  font-size: 12px; color: var(--blue); letter-spacing: .08em; text-transform: uppercase;
  font-weight: 700;
}
.blog-meta h3 {
  font-family: 'Fraunces', serif; font-size: 1.45rem;
  margin: 12px 0 14px; line-height: 1.25;
}
.blog-meta p { font-size: 14px; flex: 1; color: var(--muted); }
.blog-meta .read {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 20px; font-weight: 700; font-size: 14px;
  color: var(--coral);
  transition: gap .25s ease;
}
.blog-card:hover .read { gap: 14px; }

.blog-grid.featured .blog-card:first-child h3 { font-size: 1.85rem; }
@media (max-width: 1000px) {
  .blog-grid, .blog-grid.featured { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .blog-grid, .blog-grid.featured { grid-template-columns: 1fr; }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.faq-item.open { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; text-align: left;
  padding: 22px 26px;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-size: 16px; font-weight: 700; color: var(--ink);
}
.faq-q .icn {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--blue-50); color: var(--blue);
  display: grid; place-items: center;
  flex: 0 0 32px;
  transition: transform .3s ease, background .3s, color .3s;
}
.faq-item.open .faq-q .icn { background: var(--coral); color: white; transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 26px 24px; color: var(--muted); font-size: 14.5px; line-height: 1.7; }
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; gap: 30px; } }

/* =========================================================
   GALLERY (masonry-ish)
   ========================================================= */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-grid .g-cell {
  border-radius: 18px; overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-grid .g-cell.tall { grid-row: span 2; aspect-ratio: 1/2; }
.gallery-grid .g-cell.wide { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-grid .g-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease, filter .4s ease; }
.gallery-grid .g-cell::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11,20,55,0.55));
  opacity: 0; transition: opacity .3s ease;
}
.gallery-grid .g-cell:hover img { transform: scale(1.08); }
.gallery-grid .g-cell:hover::after { opacity: 1; }
@media (max-width: 800px) { .gallery-grid { grid-template-columns: 1fr 1fr; } .gallery-grid .g-cell.tall, .gallery-grid .g-cell.wide { grid-row: auto; grid-column: auto; aspect-ratio: 1; } }

/* =========================================================
   PROCESS / TIMELINE
   ========================================================= */
.timeline { position: relative; max-width: 1000px; margin: 0 auto; }
.timeline::before {
  content: "";
  position: absolute; top: 0; bottom: 0; left: 30px;
  width: 2px; background: linear-gradient(180deg, var(--blue), var(--coral));
}
.timeline-step {
  position: relative;
  padding: 30px 0 30px 80px;
}
.timeline-step .num {
  position: absolute; left: 0; top: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--blue);
  display: grid; place-items: center;
  font-family: 'Fraunces', serif; font-size: 1.4rem; color: var(--blue);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.timeline-step.active .num { background: var(--coral); border-color: var(--coral); color: white; }
.timeline-step h3 { font-family: 'Fraunces', serif; font-size: 1.4rem; }
.timeline-step p { color: var(--muted); margin-top: 8px; max-width: 540px; }

/* =========================================================
   AWARDS / TRUST STRIP
   ========================================================= */
.trust-strip {
  background: var(--white);
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 30px; align-items: center; }
.trust-item {
  display: flex; align-items: center; gap: 14px;
  font-size: 13px; color: var(--muted);
  font-weight: 600; letter-spacing: .04em;
}
.trust-item i { font-size: 28px; color: var(--blue); }
.trust-item strong { color: var(--ink); display: block; font-size: 14px; }
@media (max-width: 900px) { .trust-grid { grid-template-columns: repeat(2,1fr); } }

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner {
  margin: 0 24px 80px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-700) 100%);
  color: var(--white);
  border-radius: 32px;
  padding: 80px 70px;
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px;
}
.cta-banner::before {
  content: "";
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,94,91,0.50), transparent 70%);
  filter: blur(20px);
}
.cta-banner::after {
  content: "";
  position: absolute; bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248,180,0,0.35), transparent 70%);
  filter: blur(30px);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,0.85); margin-top: 16px; max-width: 560px; }
.cta-banner .actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-banner .btn-primary { background: var(--coral); color: white; box-shadow: var(--shadow-coral); }
.cta-banner .btn-primary:hover { background: #ee4644; }
.cta-banner .btn-ghost { color: var(--white); border-color: rgba(255,255,255,0.4); background: transparent; }
.cta-banner .btn-ghost:hover { background: var(--white); color: var(--blue); border-color: var(--white); }
@media (max-width: 800px) {
  .cta-banner { grid-template-columns: 1fr; padding: 50px 30px; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 90px 0 30px;
  position: relative; overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute; top: -100px; left: -100px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(30,58,138,0.25), transparent 70%);
  filter: blur(40px);
}
.footer-grid {
  position: relative;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 50px;
  margin-bottom: 50px;
}
.footer h4 {
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 22px; font-weight: 800;
}
.footer ul li { margin-bottom: 12px; font-size: 14.5px; }
.footer ul li a { transition: color .2s ease, padding .2s ease; }
.footer ul li a:hover { color: var(--coral); padding-left: 6px; }
.footer .brand { margin-bottom: 18px; }
.footer .brand-name { color: var(--white); }
.footer .brand-sub { color: rgba(255,255,255,0.55); }
.footer .desc { font-size: 14px; line-height: 1.8; margin-bottom: 22px; max-width: 340px; }
.footer .socials { display: flex; gap: 10px; }
.footer .socials a {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,255,255,0.07);
  display: grid; place-items: center;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.footer .socials a:hover { background: var(--coral); color: white; transform: translateY(-3px); }
.footer .contact-row { display: flex; gap: 12px; margin-bottom: 14px; font-size: 14px; align-items: flex-start; }
.footer .contact-row i { color: var(--coral); margin-top: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px; position: relative;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,0.5);
}
@media (max-width: 950px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

/* =========================================================
   PAGE HEADER (sub-pages)
   ========================================================= */
.page-header {
  background: var(--bg);
  padding: 140px 0 100px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(255,94,91,0.20), transparent 50%),
    radial-gradient(circle at 20% 70%, rgba(30,58,138,0.10), transparent 50%);
}
.page-header::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(30,58,138,0.10) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.page-header > * { position: relative; }
.page-header h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
.page-header .crumbs { font-size: 13px; color: var(--muted); margin-top: 18px; letter-spacing: .04em; font-weight: 600; }
.page-header .crumbs a { color: var(--blue); }
.page-header p.lead { max-width: 660px; margin: 24px auto 0; font-size: 1.08rem; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
.contact-info, .contact-form {
  background: var(--white); border-radius: var(--radius);
  padding: 38px; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.contact-info .row { display: flex; gap: 16px; padding: 22px 0; border-bottom: 1px dashed var(--line); }
.contact-info .row:last-child { border-bottom: none; }
.contact-info .row .ic {
  width: 52px; height: 52px; flex: 0 0 52px;
  border-radius: 14px; background: var(--blue-50); color: var(--blue);
  display: grid; place-items: center; font-size: 18px;
}
.contact-info .row strong { display: block; font-size: 15px; color: var(--ink); margin-bottom: 4px; }
.contact-info .row span, .contact-info .row a { font-size: 14px; color: var(--muted); display: block; line-height: 1.7; }
.contact-info .row a:hover { color: var(--coral); }

.contact-form h3 { margin-bottom: 8px; }
.contact-form p { font-size: 14px; color: var(--muted); margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.form-field input, .form-field textarea, .form-field select {
  font-family: inherit; font-size: 15px;
  padding: 14px 18px; border-radius: 14px;
  border: 1.5px solid var(--line);
  background: var(--bg); color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  outline: none;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: var(--blue); background: white;
  box-shadow: 0 0 0 4px rgba(30,58,138,0.10);
}
.form-field textarea { min-height: 130px; resize: vertical; }

.maps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
.map-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
}
.map-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.map-card iframe { width: 100%; height: 240px; border: 0; display: block; }
.map-card .map-info { padding: 20px; }
.map-card .map-info strong { display: block; font-size: 14.5px; color: var(--ink); }
.map-card .map-info span { font-size: 13px; color: var(--muted); margin-top: 4px; display: block; }
@media (max-width: 950px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .maps-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   SERVICES PAGE
   ========================================================= */
.svc-cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.svc-cat {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 34px;
  transition: transform .35s ease, box-shadow .35s ease;
  position: relative; overflow: hidden;
}
.svc-cat:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.svc-cat .ic {
  width: 64px; height: 64px; border-radius: 18px;
  background: var(--blue); color: var(--white);
  display: grid; place-items: center; font-size: 26px;
  margin-bottom: 20px;
}
.svc-cat:nth-child(2) .ic { background: var(--coral); }
.svc-cat:nth-child(3) .ic { background: var(--gold); color: var(--ink); }
.svc-cat h3 { font-family: 'Fraunces', serif; font-size: 1.55rem; }
.svc-cat ul { margin-top: 20px; }
.svc-cat ul li {
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14.5px; color: var(--ink-2); font-weight: 500;
  display: flex; align-items: center; gap: 12px;
  transition: color .2s ease, padding .2s ease;
}
.svc-cat ul li:hover { color: var(--coral); padding-left: 6px; }
.svc-cat ul li i { color: var(--blue); font-size: 11px; }
.svc-cat ul li:last-child { border-bottom: none; }
@media (max-width: 950px) { .svc-cat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .svc-cat-grid { grid-template-columns: 1fr; } }

/* =========================================================
   DISEASES
   ========================================================= */
.disease-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.disease-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 32px;
  transition: transform .35s, border-color .35s, box-shadow .35s;
  position: relative; overflow: hidden;
}
.disease-card .num {
  font-family: 'Fraunces', serif;
  font-size: 4rem; font-weight: 500;
  color: var(--blue-50);
  position: absolute; top: 14px; right: 22px;
  line-height: 1;
  transition: color .35s, transform .35s;
}
.disease-card h3 { font-size: 1.25rem; margin-bottom: 12px; position: relative; }
.disease-card p { font-size: 14.5px; position: relative; color: var(--muted); }
.disease-card:hover { transform: translateY(-6px); border-color: var(--blue); box-shadow: var(--shadow-sm); }
.disease-card:hover .num { color: var(--coral); transform: scale(1.1); }
@media (max-width: 950px) { .disease-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .disease-grid { grid-template-columns: 1fr; } }

/* =========================================================
   ANIMATIONS
   ========================================================= */
[data-reveal] {
  opacity: 0; transform: translateY(32px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--delay, 0ms);
}
[data-reveal].in { opacity: 1; transform: translateY(0); }
[data-reveal="fade"] { transform: none; }
[data-reveal="left"] { transform: translateX(-36px); }
[data-reveal="left"].in { transform: translateX(0); }
[data-reveal="right"] { transform: translateX(36px); }
[data-reveal="right"].in { transform: translateX(0); }
[data-reveal="zoom"] { transform: scale(.94); }
[data-reveal="zoom"].in { transform: scale(1); }

/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--gold));
  width: 0%; z-index: 200;
  transition: width .1s linear;
}

/* Floating WhatsApp button */
.float-wa {
  position: fixed; right: 22px; bottom: 22px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366; color: white;
  display: grid; place-items: center;
  font-size: 28px;
  box-shadow: 0 14px 30px -6px rgba(37,211,102,0.5);
  z-index: 90;
  transition: transform .3s ease;
  animation: float 4s ease-in-out infinite;
}
.float-wa:hover { transform: scale(1.1); }
.float-wa::before {
  content: "";
  position: absolute; inset: -6px;
  border-radius: 50%;
  background: rgba(37,211,102,0.4);
  z-index: -1;
  animation: ripple 2s ease-out infinite;
}
@keyframes ripple {
  0% { transform: scale(.85); opacity: .8; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Hide emergent badge */
#emergent-badge { display: none !important; }

/* =========================================================
   BOOKING DRAWER (side panel + WhatsApp redirect)
   ========================================================= */
.book-overlay {
  position: fixed; inset: 0;
  background: rgba(11,20,55,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
  z-index: 200;
}
.book-overlay.open { opacity: 1; pointer-events: auto; }

.book-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(460px, 100vw);
  background: var(--white);
  z-index: 201;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.7,0,.2,1);
  display: flex; flex-direction: column;
  box-shadow: -30px 0 60px -20px rgba(11,20,55,0.35);
}
.book-drawer.open { transform: translateX(0); }
.book-head {
  padding: 28px 28px 18px;
  background: linear-gradient(135deg, var(--blue), var(--blue-700));
  color: var(--white);
  position: relative; overflow: hidden;
  flex: 0 0 auto;
}
.book-head::before {
  content: "";
  position: absolute; top: -80px; right: -80px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255,94,91,0.45), transparent 70%);
  filter: blur(20px);
}
.book-head > * { position: relative; }
.book-head .eyebrow {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: transparent;
  box-shadow: none;
}
.book-head h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.7rem; margin-top: 14px;
  color: var(--white); font-weight: 600;
}
.book-head p { color: rgba(255,255,255,0.85); margin-top: 8px; font-size: 14px; }
.book-close {
  position: absolute; top: 18px; right: 18px;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.18); color: var(--white);
  display: grid; place-items: center;
  font-size: 16px;
  transition: background .2s ease, transform .2s ease;
  z-index: 2;
}
.book-close:hover { background: var(--coral); transform: rotate(90deg); }

.book-body {
  flex: 1; overflow-y: auto;
  padding: 26px 28px 30px;
  display: flex; flex-direction: column; gap: 14px;
}
.book-body .form-field { gap: 6px; }
.book-body label { font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.book-body input, .book-body select, .book-body textarea {
  font-family: inherit; font-size: 15px;
  padding: 13px 16px; border-radius: 12px;
  border: 1.5px solid var(--line);
  background: var(--bg); color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  outline: none; width: 100%;
}
.book-body input:focus, .book-body select:focus, .book-body textarea:focus {
  border-color: var(--blue); background: white;
  box-shadow: 0 0 0 4px rgba(30,58,138,0.10);
}
.book-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.book-slots { display: flex; flex-wrap: wrap; gap: 8px; }
.book-slots .slot {
  flex: 1 0 calc(33% - 6px);
  text-align: center;
  padding: 10px 8px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: var(--white);
  font-size: 13px; font-weight: 600; color: var(--ink-2);
  cursor: pointer;
  transition: all .2s ease;
}
.book-slots .slot:hover { border-color: var(--blue); color: var(--blue); }
.book-slots .slot.active { background: var(--blue); color: var(--white); border-color: var(--blue); }

.book-foot {
  flex: 0 0 auto;
  padding: 16px 28px 24px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.book-foot .btn { width: 100%; justify-content: center; }
.book-foot .helper {
  font-size: 12px; color: var(--muted);
  margin-top: 10px; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.book-foot .helper i { color: #25D366; font-size: 14px; }

@media (max-width: 500px) {
  .book-drawer { width: 100vw; }
  .book-head h3 { font-size: 1.4rem; }
  .book-row { grid-template-columns: 1fr; }
}

.center { text-align: center; }
.mt-30 { margin-top: 30px; }
.mt-50 { margin-top: 50px; }
