/* ============================================================
   JEEVAK MULTISPECIALITY HOSPITAL — DESIGN SYSTEM
   Premium Healthcare UI · Nashik, Maharashtra
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Noto+Sans+Devanagari:wght@400;500;600&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  /* Brand */
  --teal-900: #052e2e;
  --teal-800: #084040;
  --teal-700: #0a5252;
  --teal-600: #0d6666;
  --teal-500: #0E7373;
  --teal-400: #1a9292;
  --teal-300: #3ab8b8;
  --teal-200: #9ee0e0;
  --teal-100: #d4f2f2;
  --teal-50:  #edfafa;

  --saffron-600: #c47c10;
  --saffron-500: #E8A02E;
  --saffron-400: #f0b84a;
  --saffron-100: #fdf3dc;

  --emergency: #c8392b;
  --emergency-light: #fef2f1;
  --success: #1e7c5a;
  --success-light: #edf7f3;

  /* Neutral */
  --white: #ffffff;
  --ink-900: #0d1117;
  --ink-700: #1f2937;
  --ink-600: #374151;
  --ink-500: #4b5563;
  --ink-400: #6b7280;
  --ink-300: #9ca3af;
  --ink-200: #d1d5db;
  --ink-100: #f3f4f6;
  --ink-50:  #f9fafb;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-marathi: 'Noto Sans Devanagari', sans-serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.05);
  --shadow-xl: 0 24px 64px rgba(0,0,0,.12), 0 8px 24px rgba(0,0,0,.06);
  --shadow-teal: 0 8px 32px rgba(14,115,115,.20);
  --shadow-emergency: 0 8px 32px rgba(200,57,43,.30);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 150ms;
  --duration-base: 250ms;
  --duration-slow: 400ms;
  --duration-slower: 600ms;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink-700);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

/* ── LOADING SCREEN ── */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--teal-800);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 20px;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
  font-family: var(--font-display);
  font-size: 32px;
  color: white;
  letter-spacing: -0.01em;
}
.loader-logo span { color: var(--saffron-400); }
.loader-bar {
  width: 200px; height: 3px;
  background: rgba(255,255,255,.15);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  background: var(--saffron-400);
  border-radius: var(--radius-full);
  animation: load 1.2s var(--ease-out) forwards;
}
@keyframes load { from { width: 0 } to { width: 100% } }
.loader-tag { font-size: 13px; color: rgba(255,255,255,.5); letter-spacing: 0.1em; text-transform: uppercase; }

/* ── TOPBAR ── */
.topbar {
  background: var(--teal-800);
  color: rgba(255,255,255,.8);
  font-size: 12.5px;
  padding: 8px var(--space-xl);
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.topbar-left { display: flex; align-items: center; gap: var(--space-md); flex-wrap: wrap; }
.topbar-right { display: flex; align-items: center; gap: var(--space-lg); }
.topbar-chip {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.08);
  padding: 3px 10px; border-radius: var(--radius-full);
  font-size: 12px; white-space: nowrap;
}
.topbar-chip .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ade80;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.topbar-link {
  color: rgba(255,255,255,.7);
  font-size: 12px;
  transition: color var(--duration-fast);
  display: flex; align-items: center; gap: 5px;
}
.topbar-link:hover { color: white; }
.topbar-emerg {
  background: var(--emergency);
  color: white;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px; font-weight: 600;
  border: none;
  animation: pulse-red 2s infinite;
  white-space: nowrap;
}
@keyframes pulse-red {
  0%,100%{ box-shadow: 0 0 0 0 rgba(200,57,43,.4) }
  50%{ box-shadow: 0 0 0 8px rgba(200,57,43,0) }
}

/* ── NAVBAR ── */
.navbar {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--ink-200);
  position: sticky; top: 0; z-index: 500;
  transition: all var(--duration-base) var(--ease-out);
}
.navbar.scrolled {
  background: rgba(255,255,255,.98);
  box-shadow: var(--shadow-md);
}
.navbar-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 var(--space-xl);
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.navbar-brand {
  display: flex; flex-direction: column;
  text-decoration: none;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 600;
  color: var(--teal-600);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.brand-sub {
  font-size: 10.5px; font-weight: 500;
  color: var(--ink-400);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.navbar-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-link {
  position: relative;
  padding: 8px 12px;
  font-size: 14px; font-weight: 500;
  color: var(--ink-500);
  border-radius: var(--radius-sm);
  transition: color var(--duration-fast), background var(--duration-fast);
  white-space: nowrap;
}
.nav-link:hover { color: var(--teal-600); background: var(--teal-50); }
.nav-link.active { color: var(--teal-600); }
.nav-link.active::after {
  content: '';
  position: absolute; bottom: -1px; left: 12px; right: 12px;
  height: 2px; background: var(--teal-500);
  border-radius: var(--radius-full);
}
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 200px;
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 6px;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--duration-base) var(--ease-out);
  z-index: 100;
}
.dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-item {
  display: block;
  padding: 9px 12px;
  font-size: 13.5px; color: var(--ink-600);
  border-radius: var(--radius-sm);
  transition: background var(--duration-fast), color var(--duration-fast);
}
.dropdown-item:hover { background: var(--teal-50); color: var(--teal-600); }
.navbar-actions { display: flex; align-items: center; gap: 10px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 11px 22px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px; font-weight: 600;
  border: none; cursor: pointer;
  transition: all var(--duration-base) var(--ease-out);
  white-space: nowrap; text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--teal-500);
  color: white;
}
.btn-primary:hover {
  background: var(--teal-600);
  transform: translateY(-1px);
  box-shadow: var(--shadow-teal);
}
.btn-secondary {
  background: transparent;
  color: var(--teal-500);
  border: 1.5px solid var(--teal-500);
}
.btn-secondary:hover {
  background: var(--teal-50);
  transform: translateY(-1px);
}
.btn-emergency {
  background: var(--emergency);
  color: white;
}
.btn-emergency:hover {
  background: #a82d21;
  transform: translateY(-1px);
  box-shadow: var(--shadow-emergency);
}
.btn-white {
  background: white;
  color: var(--teal-600);
}
.btn-white:hover {
  background: var(--teal-50);
  transform: translateY(-1px);
}
.btn-ghost {
  background: rgba(255,255,255,.12);
  color: white;
  border: 1px solid rgba(255,255,255,.25);
}
.btn-ghost:hover { background: rgba(255,255,255,.2); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 15px 32px; font-size: 16px; border-radius: var(--radius-lg); }
.btn-xl { padding: 18px 40px; font-size: 17px; border-radius: var(--radius-lg); }
.btn-icon { width: 40px; height: 40px; padding: 0; border-radius: var(--radius-md); }

/* ── HAMBURGER ── */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 8px; cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--ink-600); border-radius: 2px;
  transition: all var(--duration-base) var(--ease-out);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed; inset: 0; top: 0;
  background: white; z-index: 450;
  padding: 100px var(--space-xl) var(--space-xl);
  flex-direction: column; gap: var(--space-sm);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--duration-slow) var(--ease-out);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-link {
  display: block; padding: 14px var(--space-md);
  font-size: 17px; font-weight: 500;
  color: var(--ink-700);
  border-bottom: 1px solid var(--ink-100);
  border-radius: var(--radius-sm);
}
.mobile-nav-link:hover { background: var(--teal-50); color: var(--teal-600); }

/* ── FLOATING BUTTONS ── */
.float-cluster {
  position: fixed; bottom: 28px; right: 24px;
  z-index: 400;
  display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
}
.float-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 18px; border-radius: var(--radius-full);
  font-size: 14px; font-weight: 700;
  border: none; cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all var(--duration-base) var(--ease-out);
  white-space: nowrap;
}
.float-btn:hover { transform: translateY(-3px) scale(1.03); }
.float-emergency {
  background: var(--emergency);
  color: white;
  animation: float-pulse 3s infinite;
}
@keyframes float-pulse {
  0%,100%{ box-shadow: 0 8px 32px rgba(200,57,43,.4) }
  50%{ box-shadow: 0 8px 48px rgba(200,57,43,.6) }
}
.float-whatsapp { background: #25d366; color: white; }
.float-top {
  background: var(--teal-600); color: white;
  width: 44px; height: 44px;
  border-radius: var(--radius-full);
  padding: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  opacity: 0; transform: translateY(20px);
  pointer-events: none;
  transition: all var(--duration-base) var(--ease-out);
}
.float-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }

/* ── SECTION BASE ── */
.section {
  padding: var(--space-4xl) var(--space-xl);
  max-width: 1280px; margin: 0 auto;
}
.section-full { padding: var(--space-4xl) 0; }
.section-label {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--teal-500);
  margin-bottom: var(--space-sm);
  background: var(--teal-50);
  padding: 4px 12px; border-radius: var(--radius-full);
}
.section-label.light { background: rgba(255,255,255,.15); color: rgba(255,255,255,.9); }
h2.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: var(--space-md);
}
h2.section-title.light { color: white; }
h2.section-title em { font-style: italic; color: var(--teal-500); }
.section-sub {
  font-size: 16.5px; color: var(--ink-400);
  max-width: 540px; line-height: 1.65;
  margin-bottom: var(--space-3xl);
}
.section-sub.light { color: rgba(255,255,255,.7); }
.section-header { margin-bottom: var(--space-3xl); }
.section-header-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: var(--space-xl); flex-wrap: wrap;
  margin-bottom: var(--space-3xl);
}

/* ── HERO ── */
.hero {
  background: var(--teal-800);
  position: relative; overflow: hidden;
  padding: var(--space-4xl) var(--space-xl) var(--space-5xl);
  min-height: 90vh;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(26,146,146,.20) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(232,160,46,.12) 0%, transparent 50%),
    linear-gradient(135deg, var(--teal-900) 0%, var(--teal-700) 55%, #0f6060 100%);
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: rgba(26,146,146,.18);
  top: -100px; right: -50px;
  animation: float 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  background: rgba(232,160,46,.10);
  bottom: -80px; left: 10%;
  animation: float 10s ease-in-out infinite reverse;
}
@keyframes float {
  0%,100%{ transform: translate(0,0) scale(1) }
  33%{ transform: translate(20px,-30px) scale(1.05) }
  66%{ transform: translate(-10px,20px) scale(.97) }
}
.hero-inner {
  max-width: 1280px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 420px;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  padding: 7px 16px;
  font-size: 12.5px; color: rgba(255,255,255,.9);
  margin-bottom: var(--space-lg);
  width: fit-content;
}
.hero-badge .pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  position: relative;
}
.hero-badge .pulse-dot::after {
  content: '';
  position: absolute; inset: -3px;
  border-radius: 50%; border: 2px solid rgba(74,222,128,.4);
  animation: ring 2s infinite;
}
@keyframes ring { 0%{ transform:scale(.8); opacity:1 } 100%{ transform:scale(2); opacity:0 } }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 600; line-height: 1.08;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: var(--space-lg);
}
.hero h1 em { font-style: italic; color: var(--saffron-400); }
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,.72);
  line-height: 1.65; margin-bottom: 8px;
  max-width: 520px;
}
.hero-sub-mr {
  font-family: var(--font-marathi);
  font-size: 14px; color: rgba(255,255,255,.40);
  margin-bottom: var(--space-2xl);
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: var(--space-2xl); }
.hero-stats {
  display: flex; gap: var(--space-xl); flex-wrap: wrap;
}
.hero-stat .val {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 600;
  color: white; line-height: 1;
  letter-spacing: -0.02em;
}
.hero-stat .val span { color: var(--saffron-400); }
.hero-stat .lbl {
  font-size: 12px; color: rgba(255,255,255,.5);
  margin-top: 3px; text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Doctor card */
.doctor-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: 0 32px 80px rgba(0,0,0,.24);
  position: relative;
  animation: card-float 6s ease-in-out infinite;
}
@keyframes card-float {
  0%,100%{ transform: translateY(0) }
  50%{ transform: translateY(-10px) }
}
.dr-avatar-wrap {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: var(--space-lg);
}
.dr-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  border: 3px solid var(--teal-100);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 24px; font-weight: 600;
  color: white;
  box-shadow: var(--shadow-teal);
  flex-shrink: 0;
}
.dr-info h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 600;
  color: var(--teal-700); line-height: 1.2;
  letter-spacing: -0.01em;
}
.dr-quals {
  font-size: 12px; color: var(--ink-400);
  font-weight: 400; margin-top: 3px;
  letter-spacing: 0.02em;
}
.dr-bio {
  font-size: 14px; color: var(--ink-500);
  line-height: 1.65; margin-bottom: var(--space-md);
}
.expertise-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: var(--space-lg); }
.tag {
  background: var(--teal-50);
  color: var(--teal-700);
  font-size: 11.5px; font-weight: 500;
  padding: 4px 11px; border-radius: var(--radius-full);
  border: 1px solid var(--teal-100);
}
.tag.emergency { background: var(--emergency-light); color: var(--emergency); border-color: #fcd5d1; }
.tag.gold { background: var(--saffron-100); color: var(--saffron-600); border-color: #f5d99a; }
.opd-status {
  display: flex; align-items: center; gap: 10px;
  background: var(--ink-50); border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 13px;
}
.opd-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); animation: blink 2s infinite; }
.opd-status .status { color: var(--success); font-weight: 600; }
.opd-status .time { color: var(--ink-400); }

/* Review strip on card */
.card-reviews {
  display: flex; align-items: center; gap: 10px;
  margin-top: var(--space-md); padding-top: var(--space-md);
  border-top: 1px solid var(--ink-100);
}
.stars-mini { color: var(--saffron-500); font-size: 13px; letter-spacing: 1px; }
.review-text { font-size: 12px; color: var(--ink-400); }
.review-text strong { color: var(--ink-700); }

/* ── STATS COUNTER ── */
.stats-band {
  background: var(--teal-700);
  padding: var(--space-2xl) var(--space-xl);
}
.stats-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}
.stat-item {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(255,255,255,.12);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 52px; font-weight: 600;
  color: white; line-height: 1;
  letter-spacing: -0.03em;
}
.stat-num span { color: var(--saffron-400); }
.stat-lbl {
  font-size: 13px; color: rgba(255,255,255,.6);
  margin-top: 6px; text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-icon { font-size: 24px; margin-bottom: 8px; }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card {
  background: white;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  transition: all var(--duration-slow) var(--ease-out);
  cursor: pointer;
  position: relative; overflow: hidden;
  text-decoration: none; display: block; color: inherit;
}
.svc-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--teal-50), transparent);
  opacity: 0; transition: opacity var(--duration-slow);
}
.svc-card:hover {
  border-color: var(--teal-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.svc-card:hover::before { opacity: 1; }
.svc-card-accent {
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-500), var(--teal-300));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--duration-slow) var(--ease-out);
}
.svc-card:hover .svc-card-accent { transform: scaleX(1); }
.svc-icon-wrap {
  width: 56px; height: 56px;
  background: var(--teal-50);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: var(--space-md);
  position: relative; z-index: 1;
  transition: transform var(--duration-base) var(--ease-out);
}
.svc-card:hover .svc-icon-wrap { transform: scale(1.1) rotate(-3deg); }
.svc-card h3 {
  font-size: 17px; font-weight: 600;
  color: var(--ink-800); margin-bottom: 4px;
  position: relative; z-index: 1;
}
.svc-card h3 small {
  display: block;
  font-family: var(--font-marathi);
  font-size: 12px; font-weight: 400;
  color: var(--ink-400); margin-top: 2px;
}
.svc-card p {
  font-size: 14px; color: var(--ink-400);
  line-height: 1.6; margin-bottom: var(--space-md);
  position: relative; z-index: 1;
}
.svc-link {
  font-size: 13px; font-weight: 600;
  color: var(--teal-500);
  display: flex; align-items: center; gap: 5px;
  position: relative; z-index: 1;
  transition: gap var(--duration-fast);
}
.svc-card:hover .svc-link { gap: 10px; }
.svc-card.icu {
  background: linear-gradient(135deg, var(--teal-700) 0%, var(--teal-900) 100%);
  border-color: transparent;
}
.svc-card.icu .svc-icon-wrap { background: rgba(255,255,255,.12); }
.svc-card.icu h3, .svc-card.icu h3 small,
.svc-card.icu p, .svc-card.icu .svc-link { color: rgba(255,255,255,.9); }
.svc-card.icu h3 small { color: rgba(255,255,255,.55); }
.svc-card.icu:hover { box-shadow: var(--shadow-teal); }

/* ── WHY CHOOSE US ── */
.why-section { background: var(--ink-50); }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.why-visual {
  background: linear-gradient(135deg, var(--teal-700), var(--teal-500));
  border-radius: var(--radius-2xl);
  padding: var(--space-3xl);
  position: relative; overflow: hidden;
}
.why-visual-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.06) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(232,160,46,.08) 0%, transparent 50%);
}
.why-feature-list { position: relative; z-index: 1; }
.why-feature {
  display: flex; gap: 16px; align-items: flex-start;
  padding: var(--space-md) 0;
}
.why-feature:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,.1); }
.why-feature-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.why-feature-text h4 {
  font-size: 15px; font-weight: 600;
  color: white; margin-bottom: 3px;
}
.why-feature-text p { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.5; }
.why-items { display: flex; flex-direction: column; gap: var(--space-lg); }
.why-item {
  display: flex; gap: 16px; align-items: flex-start;
}
.why-item-num {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--teal-50); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600; color: var(--teal-500);
}
.why-item h4 { font-size: 16px; font-weight: 600; color: var(--ink-800); margin-bottom: 4px; }
.why-item p { font-size: 14px; color: var(--ink-400); line-height: 1.6; }

/* ── ICU EMERGENCY BAND ── */
.icu-band {
  background: var(--emergency);
  padding: var(--space-3xl) var(--space-xl);
  position: relative; overflow: hidden;
}
.icu-band-bg {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,.02) 0, rgba(255,255,255,.02) 1px,
    transparent 1px, transparent 40px
  );
}
.icu-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-xl); flex-wrap: wrap;
  position: relative; z-index: 1;
}
.icu-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600; color: white;
  letter-spacing: -0.02em; margin-bottom: 8px;
}
.icu-text p { font-size: 16px; color: rgba(255,255,255,.8); max-width: 460px; }
.icu-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── INSURANCE ── */
.insurance-section { background: var(--ink-50); }
.insurance-inner {
  max-width: 1280px; margin: 0 auto;
  padding: var(--space-4xl) var(--space-xl);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.ins-logos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.ins-logo {
  background: white; border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; color: var(--ink-600);
  transition: all var(--duration-base) var(--ease-out);
}
.ins-logo:hover { border-color: var(--teal-300); color: var(--teal-600); box-shadow: var(--shadow-sm); }
.ins-note {
  grid-column: 1 / -1;
  font-size: 12px; color: var(--ink-400); text-align: center;
  padding: var(--space-sm);
}

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--teal-900); position: relative; overflow: hidden; }
.testimonials-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(14,115,115,.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(232,160,46,.08) 0%, transparent 60%);
}
.testimonials-inner {
  max-width: 1280px; margin: 0 auto;
  padding: var(--space-4xl) var(--space-xl);
  position: relative; z-index: 1;
}
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.test-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: all var(--duration-slow) var(--ease-out);
}
.test-card:hover {
  background: rgba(255,255,255,.09);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.test-stars { color: var(--saffron-400); font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.test-quote {
  font-size: 15px; line-height: 1.7;
  color: rgba(255,255,255,.82);
  margin-bottom: var(--space-lg);
  font-style: italic;
}
.test-author-row { display: flex; align-items: center; gap: 12px; }
.test-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--teal-600);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; color: white;
  flex-shrink: 0;
}
.test-name { font-size: 14px; font-weight: 600; color: white; }
.test-meta { font-size: 12px; color: rgba(255,255,255,.4); }
.google-badge {
  display: flex; align-items: center; gap: 10px;
  margin-top: var(--space-2xl);
  font-size: 13px; color: rgba(255,255,255,.4);
}

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog-card {
  background: white;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--duration-slow) var(--ease-out);
  cursor: pointer; text-decoration: none; color: inherit; display: block;
}
.blog-card:hover {
  border-color: var(--teal-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.blog-thumb {
  height: 160px;
  background: var(--teal-50);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; position: relative;
  overflow: hidden;
}
.blog-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.15), transparent);
}
.blog-cat-pill {
  position: absolute; bottom: 12px; left: 14px;
  background: var(--teal-500); color: white;
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
  padding: 3px 10px; border-radius: var(--radius-full);
  text-transform: uppercase; z-index: 1;
}
.blog-body { padding: 20px; }
.blog-body h4 {
  font-size: 16px; font-weight: 600;
  color: var(--ink-800); line-height: 1.45;
  margin-bottom: 10px;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.blog-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; color: var(--ink-400);
  margin-bottom: var(--space-md);
}
.blog-meta span { display: flex; align-items: center; gap: 4px; }
.blog-read-more {
  font-size: 13px; font-weight: 600;
  color: var(--teal-500);
  display: flex; align-items: center; gap: 5px;
  transition: gap var(--duration-fast);
}
.blog-card:hover .blog-read-more { gap: 10px; }

/* ── APPOINTMENT CTA BAND ── */
.appt-band {
  background: linear-gradient(135deg, var(--teal-700), var(--teal-900));
  padding: var(--space-4xl) var(--space-xl);
  text-align: center; position: relative; overflow: hidden;
}
.appt-band-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(232,160,46,.10) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(26,146,146,.20) 0%, transparent 50%);
}
.appt-band-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.appt-band h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px); font-weight: 600;
  color: white; letter-spacing: -0.02em; margin-bottom: var(--space-md);
}
.appt-band p { font-size: 17px; color: rgba(255,255,255,.7); margin-bottom: var(--space-2xl); }
.appt-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── MAP / CONTACT ── */
.contact-band { background: var(--ink-50); }
.contact-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
}
.contact-info { padding: var(--space-4xl) var(--space-3xl) var(--space-4xl) var(--space-xl); }
.contact-info h2 {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 600;
  color: var(--ink-900); letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
}
.contact-addr { font-size: 15px; color: var(--ink-500); line-height: 1.8; margin-bottom: var(--space-lg); }
.landmark-box {
  background: var(--saffron-100);
  border: 1px solid #f0d08e;
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  font-size: 14px; line-height: 1.65;
  margin-bottom: var(--space-lg);
  color: #6b4a00;
}
.landmark-box strong { color: #4a3000; }
.pluscode-chip {
  font-family: 'Courier New', monospace;
  background: white; border: 1px solid var(--ink-200);
  padding: 6px 12px; border-radius: var(--radius-sm);
  font-size: 13px; color: var(--ink-500);
  display: inline-block; margin-bottom: var(--space-lg);
}
.contact-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.contact-map {
  background: var(--teal-100);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  min-height: 320px; gap: 12px;
  position: relative; overflow: hidden;
}
.map-pin-anim {
  font-size: 56px;
  animation: pin-bounce 2s ease-in-out infinite;
}
@keyframes pin-bounce {
  0%,100%{ transform: translateY(0) }
  50%{ transform: translateY(-12px) }
}
.contact-map p {
  font-size: 15px; font-weight: 600; color: var(--teal-700); text-align: center;
}
.contact-map small { font-size: 12px; color: var(--teal-500); }

/* ── FOOTER ── */
footer {
  background: var(--ink-900);
  color: rgba(255,255,255,.6);
}
.footer-top { padding: var(--space-4xl) var(--space-xl) var(--space-2xl); max-width: 1280px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl); margin-bottom: var(--space-3xl);
}
.footer-brand .brand-name-lg {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  color: white; margin-bottom: 4px;
}
.footer-brand .brand-sub-mr {
  font-family: var(--font-marathi);
  font-size: 13px; color: rgba(255,255,255,.3);
  margin-bottom: var(--space-md);
}
.footer-brand .footer-desc {
  font-size: 14px; line-height: 1.75; max-width: 280px;
  margin-bottom: var(--space-lg);
}
.footer-emerg-cta {
  display: flex; align-items: center; gap: 8px;
  background: var(--emergency);
  color: white; border: none;
  padding: 11px 20px; border-radius: var(--radius-md);
  font-size: 14px; font-weight: 700;
  cursor: pointer; width: fit-content;
  transition: all var(--duration-base) var(--ease-out);
}
.footer-emerg-cta:hover { background: #a82d21; transform: translateY(-1px); }
footer h5 {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,.9); margin-bottom: var(--space-md);
}
footer ul li { margin-bottom: 9px; }
footer ul a {
  font-size: 14px; color: rgba(255,255,255,.5);
  transition: color var(--duration-fast);
}
footer ul a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: var(--space-lg) var(--space-xl);
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--space-md);
}
.footer-bottom p { font-size: 13px; }
.footer-legal { display: flex; gap: var(--space-lg); }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,.35); }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.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 (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--teal-800), var(--teal-600));
  padding: var(--space-4xl) var(--space-xl);
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.05) 0%, transparent 70%);
}
.page-hero-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px); font-weight: 600;
  color: white; letter-spacing: -0.02em; margin-bottom: var(--space-md);
}
.page-hero p { font-size: 17px; color: rgba(255,255,255,.75); line-height: 1.6; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.5);
  justify-content: center; margin-bottom: var(--space-md);
}
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: white; }
.breadcrumb-sep { color: rgba(255,255,255,.3); }

/* ── FORM ── */
.form-card {
  background: white;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: var(--space-lg); }
.form-group label {
  display: block; font-size: 13.5px; font-weight: 600;
  color: var(--ink-700); margin-bottom: 7px;
}
.form-group label .req { color: var(--emergency); margin-left: 2px; }
.form-control {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--ink-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px; color: var(--ink-700);
  background: white;
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
  outline: none;
}
.form-control:focus {
  border-color: var(--teal-400);
  box-shadow: 0 0 0 3px rgba(14,115,115,.12);
}
.form-control::placeholder { color: var(--ink-300); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
select.form-control { appearance: none; cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 100px; }

/* ── CARDS ── */
.info-card {
  background: white;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-slow) var(--ease-out);
}
.info-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--teal-200);
  transform: translateY(-2px);
}

/* ── ACCORDION (FAQ) ── */
.faq-item {
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 10px;
  transition: box-shadow var(--duration-base);
}
.faq-item.open { box-shadow: var(--shadow-sm); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--space-md) var(--space-xl);
  cursor: pointer;
  font-size: 15px; font-weight: 600; color: var(--ink-800);
  background: white;
  transition: background var(--duration-fast);
  gap: var(--space-md);
}
.faq-question:hover { background: var(--ink-50); }
.faq-item.open .faq-question { background: var(--teal-50); color: var(--teal-700); }
.faq-chevron {
  font-size: 20px; color: var(--ink-400);
  transition: transform var(--duration-base) var(--ease-out);
  flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--teal-500); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-out), padding var(--duration-slow);
  padding: 0 var(--space-xl);
  font-size: 14.5px; color: var(--ink-500); line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 400px; padding: var(--space-md) var(--space-xl) var(--space-lg); }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-item {
  background: var(--teal-50);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-size: 42px; gap: 10px;
  cursor: pointer; overflow: hidden;
  transition: all var(--duration-base) var(--ease-out);
  border: 1px solid var(--ink-100);
  position: relative;
}
.gallery-item::after {
  content: '🔍';
  position: absolute; inset: 0;
  background: rgba(14,115,115,.8);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  opacity: 0; transition: opacity var(--duration-base);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover { transform: scale(1.02); }
.gallery-label { font-size: 12px; color: var(--ink-400); font-weight: 500; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,.9);
  display: none; align-items: center; justify-content: center;
  backdrop-filter: blur(10px);
}
.lightbox.open { display: flex; }
.lightbox-content {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  max-width: 600px; width: 90%;
  text-align: center;
  animation: scale-in 0.3s var(--ease-out);
}
@keyframes scale-in { from{transform:scale(.8);opacity:0} to{transform:scale(1);opacity:1} }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  background: rgba(255,255,255,.2); border: none;
  width: 44px; height: 44px; border-radius: 50%;
  font-size: 22px; cursor: pointer; color: white;
  transition: background var(--duration-fast);
}
.lightbox-close:hover { background: rgba(255,255,255,.35); }

/* ── SUCCESS MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 800;
  background: rgba(0,0,0,.5);
  display: none; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: white; border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  max-width: 440px; width: 92%;
  text-align: center;
  animation: scale-in 0.35s var(--ease-out);
}
.modal-icon { font-size: 56px; margin-bottom: var(--space-md); }
.modal-box h3 {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 600;
  color: var(--ink-900); margin-bottom: 8px;
}
.modal-box p { font-size: 15px; color: var(--ink-500); margin-bottom: var(--space-xl); }

/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-teal { color: var(--teal-500); }
.bg-surface { background: var(--ink-50); }
.divider { height: 1px; background: var(--ink-100); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-xl { margin-bottom: var(--space-xl); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; max-width: 640px; }
  .hero { min-height: auto; padding-bottom: var(--space-4xl); }
  .doctor-card { animation: none; }
  .hero-inner .hero-right { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .navbar-links, .navbar-actions > *:not(.btn-emergency-nav) { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .why-grid { grid-template-columns: 1fr; }
  .insurance-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .icu-inner { flex-direction: column; text-align: center; }
  .topbar { font-size: 11px; }
  .topbar-right { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
}

@media (max-width: 600px) {
  :root { font-size: 15px; }
  .section { padding: var(--space-3xl) var(--space-md); }
  .services-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
  .stat-num { font-size: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: var(--space-md); }
  .hero h1 { font-size: 36px; }
  .hero-ctas { flex-direction: column; }
  .float-btn span { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .ins-logos { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
