

:root {
  --purple:      #6B21A8;
  --purple-dark: #4C1680;
  --purple-light:#8B3FC8;
  --purple-faint:#F3EEFF;
  --teal:        #1A7A7A;
  --teal-dark:   #145E5E;
  --teal-light:  #22A0A0;
  --teal-faint:  #EAF6F6;
  --red:         #E63946;
  --dark:        #1A1A2E;
  --dark-2:      #16213E;
  --charcoal:    #2D2D3A;
  --grey:        #6B7280;
  --light-grey:  #F8F9FB;
  --white:       #FFFFFF;
  --border:      #E5E7EB;

  --font-sans: 'Inter', system-ui, sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14);
  --shadow-xl: 0 24px 60px rgba(0,0,0,.18);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== SECTION BASE ===== */
.section { padding: 96px 0; }
.section-light  { background: var(--light-grey); }
.section-white  { background: var(--white); }
.section-dark   { background: #1e0d3a; color: var(--white); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; color: var(--dark); margin: 12px 0 16px; }
.section-header.light h2 { color: var(--white); }
.section-desc { color: var(--grey); max-width: 640px; margin: 0 auto; font-size: 1.05rem; }

.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-faint);
  padding: 6px 14px;
  border-radius: 50px;
}
.section-tag.light { color: var(--teal-light); background: rgba(255,255,255,.12); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .97rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(107,33,168,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(107,33,168,.45); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.5);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-white {
  background: var(--white);
  color: var(--purple);
  font-weight: 700;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.2); }
.btn-outline-white {
  background: transparent;
  border-color: rgba(255,255,255,.5);
  color: var(--white);
  white-space: nowrap;
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-white { white-space: nowrap; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 10px 0;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.10);
  transition: var(--transition);
}
.navbar.scrolled {
  padding: 8px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-img { height: 70px; object-fit: contain; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links li a {
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 500;
  font-size: .93rem;
  color: var(--charcoal);
  transition: var(--transition);
}
.navbar.scrolled .nav-links li a { color: var(--charcoal); }
.nav-links li a:hover { color: var(--purple); background: var(--purple-faint); }
.nav-cta {
  background: var(--purple) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 50px !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}
.nav-cta:hover { background: var(--purple-dark) !important; transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
  z-index: 1001;
  position: relative;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform .35s ease, opacity .35s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.navbar.scrolled .hamburger span { background: var(--charcoal); }

/* Hamburger overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 998;
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.nav-overlay.visible { opacity: 1; pointer-events: auto; }

/* ===== HERO ===== */
.hero {
  min-height: calc(100vh - 84px);
  background: linear-gradient(135deg, #0e0620 0%, #1a0a3e 45%, #0f1a3a 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 130px 0 110px;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: .12;
}
.shape-1 {
  width: 600px; height: 600px;
  background: var(--purple-light);
  top: -200px; right: -150px;
}
.shape-2 {
  width: 400px; height: 400px;
  background: var(--purple-dark);
  bottom: -100px; left: -100px;
}
.ecg-line {
  position: absolute;
  bottom: 5%; left: 0; right: 0;
  opacity: .6;
  height: 80px;
  pointer-events: none;
}
.ecg-path {
  fill: none;
  stroke: var(--red);
  stroke-width: 2.5;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: drawECG 3.5s ease-in-out infinite;
}
@keyframes drawECG {
  0%   { stroke-dashoffset: 2000; opacity: 0; }
  5%   { opacity: 1; }
  70%  { stroke-dashoffset: 0; opacity: 1; }
  90%  { stroke-dashoffset: 0; opacity: 0.4; }
  100% { stroke-dashoffset: -200; opacity: 0; }
}
/* ── HERO BADGE ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230,57,70,.2);
  border: 1px solid rgba(230,57,70,.55);
  color: #ffaaaf;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(1.4); }
}

/* ── HERO TITLE ── */
.hero-title {
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 18px;
  letter-spacing: -.5px;
  color: var(--white);
}
.highlight-teal {
  background: linear-gradient(135deg, #c084fc, #38bdf8, #2dd4bf);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ── HERO SUB (description) ── */
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 580px;
}

/* ── HERO INNER GRID: Stable 2-column layout ── */
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── HERO BUTTONS (all 3 in one flex row, wrap naturally) ── */
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-hero-red {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: .97rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, transform .2s;
}
.btn-hero-red:hover { background: #c9303d; transform: translateY(-2px); }
.btn-hero-primary {
  background: var(--purple);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: .97rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, transform .2s;
}
.btn-hero-primary:hover { background: var(--purple-dark); transform: translateY(-2px); }
.btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.4);
  padding: 12px 26px;
  border-radius: 8px;
  font-size: .92rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: border-color .2s;
}
.btn-hero-outline:hover { border-color: rgba(255,255,255,.85); }

/* ── STAT CARDS (3 side-by-side, ref exact) ── */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.stat {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 20px 18px;
  text-align: center;
  transition: background .2s, transform .2s;
}
.stat:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-3px);
}
.stat .num {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #c084fc, #38bdf8, #2dd4bf);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-variant-numeric: tabular-nums;
  transform: translateZ(0);
}
.stat .lbl {
  font-size: .74rem;
  color: rgba(255,255,255,.7);
  margin-top: 4px;
  line-height: 1.4;
}

.stat-citation {
  font-size: 0.88rem;
  color: #ffffff
  margin-top: 14px;
  text-align: center;
  font-style: italic;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

.stat-citation.dark-text {
  color: rgba(26, 26, 46, 0.45);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 100px;
  right: 40px;
  display: flex;
  align-items: flex-end;
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll-indicator span {
  display: block;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.5));
  border-radius: 2px;
}
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }


/* ===== ABOUT CARDS ===== */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.about-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.about-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.about-icon {
  width: 52px; height: 52px;
  background: var(--purple-faint);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--purple);
}
.about-icon svg { width: 24px; height: 24px; }
.about-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.about-card p { font-size: .93rem; color: var(--grey); line-height: 1.7; }

/* About prose & bullets */
.about-prose {
  max-width: 900px;
  margin: 0 auto 48px;
}
.about-prose p {
  color: var(--grey);
  line-height: 1.9;
  margin-bottom: 18px;
  font-size: .97rem;
}

/* ===== ABOUT MILESTONES ===== */
.about-milestones {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 48px;
  margin-bottom: 48px;
  box-shadow: var(--shadow-md);
  gap: 0;
  flex-wrap: wrap;
}
.milestone-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 36px;
  flex: 1;
  min-width: 140px;
}
.milestone-num {
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 6px;
}
.milestone-label {
  font-size: .8rem;
  color: var(--grey);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .07em;
  line-height: 1.4;
}
.milestone-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===== PARTNER CARDS ===== */
.about-partners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.partner-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.partner-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.partner-kamakshi::before { background: linear-gradient(90deg, var(--purple), var(--purple-light)); }
.partner-amudham::before  { background: linear-gradient(90deg, var(--teal), var(--teal-light)); }
.partner-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.partner-card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.partner-kamakshi .partner-card-icon { background: var(--purple-faint); color: var(--purple); }
.partner-amudham  .partner-card-icon { background: var(--teal-faint);   color: var(--teal); }
.partner-card-icon svg { width: 24px; height: 24px; }
.partner-card-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.partner-kamakshi .partner-card-tag { color: var(--purple); background: var(--purple-faint); }
.partner-amudham  .partner-card-tag { color: var(--teal);   background: var(--teal-faint); }
.partner-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
}
.partner-card > p {
  font-size: .92rem;
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 20px;
}
.partner-highlights {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.partner-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--charcoal);
  font-weight: 500;
}
.partner-highlights li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.partner-kamakshi .partner-highlights li::before { background: var(--purple); }
.partner-amudham  .partner-highlights li::before { background: var(--teal); }

/* ===== ABOUT ENSURES ===== */
.about-ensures {
  margin-bottom: 40px;
}
.about-ensures-header {
  margin-bottom: 24px;
}
.ensures-intro {
  color: var(--grey);
  font-size: .97rem;
  margin-top: 10px;
  line-height: 1.7;
}

/* ===== PEDIATRIC BLOCK ===== */
.about-pediatric {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
}
.pediatric-icon {
  width: 44px; height: 44px;
  background: var(--teal-faint);
  color: var(--teal);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pediatric-icon svg { width: 22px; height: 22px; }
.pediatric-content strong {
  display: block;
  font-size: .97rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.pediatric-content p {
  color: var(--grey);
  font-size: .93rem;
  line-height: 1.75;
  margin: 0;
}

.about-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}
.about-bullet-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: .93rem;
  font-weight: 500;
  color: var(--charcoal);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.about-bullet-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.bullet-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bullet-icon svg { width: 16px; height: 16px; }
.bullet-icon.teal   { background: var(--teal-faint); color: var(--teal); }
.bullet-icon.purple { background: var(--purple-faint); color: var(--purple); }

/* ===== COMMITMENT STRIP ===== */
.about-commitment-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1054 100%);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  color: var(--white);
}
.commitment-strip-icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #FF6B75;
}
.commitment-strip-icon svg { width: 26px; height: 26px; fill: none; }
.commitment-strip-text { flex: 1; }
.commitment-strip-text strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--white);
}
.commitment-strip-text p {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin: 0;
}
.commitment-strip-btn { flex-shrink: 0; white-space: nowrap; }

/* Commitment card (legacy fallback) */
.about-commitment { max-width: 900px; margin: 0 auto; }
.commitment-card {
  background: linear-gradient(135deg, var(--purple-faint), var(--teal-faint));
  border: 1px solid var(--border);
  border-left: 5px solid var(--purple);
  border-radius: var(--radius-md);
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.commitment-card p {
  color: var(--charcoal);
  line-height: 1.9;
  font-size: .97rem;
  margin: 0;
}


/* ===== DOCTOR ===== */
.doctor-grid { display: grid; grid-template-columns: 380px 1fr; gap: 72px; align-items: center; }
.doctor-card-img {
  background: linear-gradient(135deg, rgba(107,33,168,.2), rgba(26,122,122,.2));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.doctor-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.doctor-badge-float {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  padding: 14px 28px;
  text-align: center;
  white-space: nowrap;
}
.doctor-badge-float span { display: block; font-size: 1.8rem; font-weight: 800; color: var(--white); }
.doctor-badge-float small { font-size: .75rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; }
.doctor-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; color: var(--white); margin: 12px 0 6px; }
.doctor-title { font-size: 1rem; color: var(--teal-light); font-weight: 600; margin-bottom: 20px; }
.doctor-bio { color: rgba(255,255,255,.7); line-height: 1.8; margin-bottom: 28px; font-size: .97rem; }
.expertise-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.expertise-tag {
  background: rgba(26,122,122,.25);
  border: 1px solid rgba(26,122,122,.45);
  color: var(--teal-light);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 500;
}
.doctor-positions { display: flex; flex-direction: column; gap: 16px; }
.position-item { display: flex; gap: 14px; align-items: flex-start; }
.position-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--teal-light); flex-shrink: 0; margin-top: 6px; }
.position-item strong { display: block; color: var(--white); font-size: .93rem; }
.position-item span { color: rgba(255,255,255,.55); font-size: .85rem; }

/* ===== CATH LAB ===== */
.cathlab-grid { display: flex; flex-direction: column; gap: 32px; }
.cathlab-features { display: flex; flex-direction: column; }

.cathlab-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  height: 100%;
}
.cathlab-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cathlab-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.cathlab-card.red   { border-top: 3px solid var(--red); }
.cathlab-card.teal  { border-top: 3px solid var(--teal); }
.cathlab-card.purple { border-top: 3px solid var(--purple); }
.cathlab-card-icon {
  width: 46px; height: 46px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cathlab-card-icon svg { width: 22px; height: 22px; }
.cathlab-card.red    .cathlab-card-icon { background: #FEE2E2; color: var(--red); }
.cathlab-card.teal   .cathlab-card-icon { background: var(--teal-faint); color: var(--teal); }
.cathlab-card.purple .cathlab-card-icon { background: var(--purple-faint); color: var(--purple); }
.cathlab-card h4 { font-size: .97rem; font-weight: 700; color: var(--dark); line-height: 1.3; margin: 0; }
.cathlab-card p  { font-size: .86rem; color: var(--grey); line-height: 1.65; margin: 0; }

.feature-icon-sm {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-icon-sm svg { width: 20px; height: 20px; }
.feature-icon-sm.purple { background: var(--purple-faint); color: var(--purple); }
.feature-icon-sm.teal   { background: var(--teal-faint); color: var(--teal); }
.feature-icon-sm.red    { background: #FEE2E2; color: var(--red); }

.optima-card {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  color: var(--white);
  box-shadow: 0 16px 48px rgba(107,33,168,.35);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.optima-card-left { display: flex; flex-direction: column; gap: 12px; }
.optima-card-right { display: flex; flex-direction: column; gap: 16px; }
.optima-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.optima-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 16px; line-height: 1.4; }
.optima-card p { font-size: .9rem; color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 20px; }
.optima-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.optima-features li { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: rgba(255,255,255,.85); }
.optima-features li::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: #22D3EE; flex-shrink: 0; }
.optima-tag {
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  font-style: italic;
}

/* ===== ACCORDION ===== */
.services-accordion { display: flex; flex-direction: column; gap: 12px; max-width: 860px; margin: 0 auto; }
.acc-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--transition);
}
.acc-item:has(.acc-body.open) { box-shadow: var(--shadow-md); }
.acc-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  transition: background var(--transition);
  text-align: left;
}
.acc-header:hover { background: var(--light-grey); }
.acc-header-left { display: flex; align-items: center; gap: 16px; }
.acc-num {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--purple);
  min-width: 32px;
}
.acc-num.red-num { color: var(--red); }
.acc-icon { width: 20px; height: 20px; color: var(--grey); transition: transform var(--transition); flex-shrink: 0; }
.acc-header[aria-expanded="true"] .acc-icon { transform: rotate(180deg); color: var(--purple); }
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.4,0,.2,1), padding .3s;
  padding: 0 24px;
}
.acc-body.open { max-height: 700px; padding: 0 24px 24px; }
.acc-body p { color: var(--grey); margin-bottom: 14px; font-size: .95rem; }
.acc-body ul { display: flex; flex-direction: column; gap: 8px; padding-left: 4px; }
.acc-body ul li {
  display: flex; gap: 10px; align-items: baseline;
  font-size: .93rem; color: var(--charcoal);
}
.acc-body ul li::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex-shrink: 0; margin-top: 7px; }
.acc-body ul li strong { color: var(--dark); }
.acc-sub-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 16px; }
.acc-sub-grid h5 { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--purple); margin-bottom: 12px; }
.emergency-note {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FEE2E2;
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px;
  margin-top: 16px;
  color: var(--charcoal);
  font-size: .9rem;
  font-weight: 500;
}
.emergency-note svg { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; }

/* ===== TECHNOLOGY ===== */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.tech-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
}
.tech-card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(26,122,122,.12);
}
.tech-icon {
  width: 56px; height: 56px;
  background: var(--teal-faint);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  margin-bottom: 20px;
}
.tech-icon svg { width: 26px; height: 26px; }
.tech-card h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.tech-card p { font-size: .9rem; color: var(--grey); line-height: 1.7; }

/* ===== CONDITIONS ===== */
.conditions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}
.condition-pill {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: .93rem;
  color: var(--charcoal);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.condition-pill:hover {
  border-color: var(--purple);
  color: var(--purple);
  background: var(--purple-faint);
  transform: translateY(-2px);
}

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); transform: translateY(-4px); }
.why-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.671);
  font-style: italic;
  margin-bottom: 16px;
}
.why-num.red { color: rgba(230,57,70,.6); }
.why-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,.6); font-size: .9rem; line-height: 1.7; }

/* ===== QUALITY ===== */
.quality-container { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.quality-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; color: var(--dark); margin: 12px 0 16px; }
.quality-text p { color: var(--grey); margin-bottom: 20px; }
.quality-list { display: flex; flex-direction: column; gap: 12px; }
.quality-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: .95rem; color: var(--charcoal); font-weight: 500;
}
.quality-list li::before { content: '✓'; display: inline-block; width: 22px; height: 22px; background: var(--teal-faint); color: var(--teal); border-radius: 50%; font-size: .75rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.quality-expertise h3 { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 24px; }
.expertise-pillar { display: flex; align-items: center; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); font-weight: 500; color: var(--charcoal); }
.expertise-pillar:last-child { border-bottom: none; }
.pillar-line { width: 4px; height: 32px; border-radius: 4px; flex-shrink: 0; }
.pillar-line.purple { background: var(--purple); }
.pillar-line.teal   { background: var(--teal); }

/* ===== CTA SECTION ===== */
.section-cta {
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1054 50%, #1e0d3a 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape-1 { position: absolute; right: -100px; top: -100px; width: 400px; height: 400px; background: var(--purple); border-radius: 50%; opacity: .08; }
.cta-shape-2 { position: absolute; left: -50px; bottom: -80px; width: 300px; height: 300px; background: var(--teal); border-radius: 50%; opacity: .07; }
.cta-inner { position: relative; z-index: 1; }
.cta-content { max-width: 680px; }
.cta-content h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--white); margin: 14px 0 20px; }
.cta-content p { color: rgba(255,255,255,.7); font-size: 1rem; line-height: 1.8; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer { background: #110720; padding: 64px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo { height: 44px; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,.45); font-size: .88rem; line-height: 1.7; max-width: 280px; }
.footer-links h5, .footer-services h5 {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.footer-links ul, .footer-services ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links ul li a { color: rgba(255,255,255,.6); font-size: .9rem; transition: var(--transition); }
.footer-links ul li a:hover { color: var(--teal-light); }
.footer-services ul li { color: rgba(255,255,255,.45); font-size: .88rem; }
.footer-bottom { padding: 24px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { color: rgba(255,255,255,.35); font-size: .82rem; }
.footer-tagline { color: rgba(255,255,255,.2) !important; font-style: italic; }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--purple);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(107,33,168,.4);
  opacity: 0; pointer-events: none;
  transition: var(--transition);
  z-index: 999;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--purple-dark); transform: translateY(-2px); }
.back-to-top svg { width: 20px; height: 20px; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero {
    background: linear-gradient(135deg, #0e0620 0%, #1a0a3e 45%, #0f1a3a 100%);
  }
  .about-milestones { padding: 28px 24px; }
  .milestone-item { padding: 0 20px; }
  .about-partners { grid-template-columns: 1fr; }
  .doctor-grid { grid-template-columns: 1fr; }
  .doctor-card-img { max-width: 360px; margin: 0 auto; aspect-ratio: 3/4; }
  .cathlab-card-grid { grid-template-columns: 1fr 1fr; }
  .optima-card { grid-template-columns: 1fr; }
  .quality-container { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 768px) {
  .hero {
    background: linear-gradient(135deg, #0e0620 0%, #1a0a3e 45%, #0f1a3a 100%);
    min-height: auto;
    padding: 100px 0 60px;
  }
  .section { padding: 64px 0; }
  .hamburger { display: flex; }
  .nav-overlay { display: block; }
  .nav-links {
    position: fixed;
    top: 90px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 20px 24px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .3s ease;
    pointer-events: none;
    z-index: 999;
    border-bottom-left-radius: var(--radius-md);
    border-bottom-right-radius: var(--radius-md);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-links li a {
    color: var(--charcoal) !important;
    display: block;
    padding: 13px 16px;
    border-radius: 8px;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-links li a:hover { background: var(--purple-faint); color: var(--purple) !important; }
  .nav-links .nav-cta {
    display: block;
    text-align: center;
    margin-top: 8px;
    border-radius: 50px !important;
    border-bottom: none !important;
    color: var(--white) !important;
  }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-title { font-size: 1.85rem; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .about-milestones { padding: 20px 16px; gap: 8px; }
  .milestone-item { padding: 12px 16px; min-width: 120px; }
  .milestone-divider { width: 60px; height: 1px; }
  .about-bullets { grid-template-columns: 1fr; }
  .about-commitment-strip { flex-direction: column; text-align: center; padding: 28px 24px; }
  .commitment-strip-btn { width: 100%; justify-content: center; }
  .commitment-card { padding: 24px; }
  .acc-sub-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero {
    padding: 80px 0 48px;
  }
  .hero-btns { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-btns a { justify-content: center; text-align: center; }
  .hero-stats { grid-template-columns: 1fr; }
  .back-to-top { bottom: 18px; right: 18px; width: 40px; height: 40px; }
}

/* ===== EMERGENCY TOP BAR ===== */
.emg-topbar {
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 9px 20px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .3px;
  position: relative;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.emg-topbar a { color: #fff; font-weight: 700; text-decoration: none; }
.emg-topbar a:hover { text-decoration: underline; }
.emg-sep { opacity: .4; }

/* ===== TRUST RIBBON ===== */
.trust-ribbon {
  background: var(--light-grey);
  border-top: 3px solid #c89a3e;
  border-bottom: 1px solid var(--border);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}
.trust-label { font-size: .7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--grey); }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: .82rem; font-weight: 600; color: var(--dark); }
.trust-icon { font-size: .9rem; }
.trust-div { width: 1px; height: 18px; background: var(--border); }

/* ===== WARNING SIGNS SECTION ===== */
.warning-sec {
  background: #fff8f8;
  border-top: 5px solid var(--red);
  border-bottom: 1px solid #f5cccc;
}
.warn-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}
.warn-icon-wrap {
  width: 56px; height: 56px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.warn-icon-wrap svg { width: 26px; height: 26px; fill: #fff; }
.warn-header h2 { font-size: 1.6rem; font-weight: 800; color: var(--red); margin-bottom: 6px; }
.warn-header p { font-size: .9rem; color: var(--grey); line-height: 1.65; }
.warn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.warn-card {
  background: #fff;
  border: 1.5px solid #f5cccc;
  border-radius: var(--radius-md);
  padding: 22px 16px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 10px;
  transition: var(--transition);
}
.warn-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.warn-emoji { font-size: 1.8rem; }
.warn-card h4 { font-size: .9rem; font-weight: 700; color: var(--red); }
.warn-card p { font-size: .78rem; color: var(--grey); line-height: 1.55; }
.warn-cta {
  background: var(--red);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.warn-cta-text h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.warn-cta-text p { font-size: .85rem; opacity: .88; }
.warn-cta-btn { background: #fff !important; color: var(--red) !important; flex-shrink: 0; }

/* ===== SERVICES GRID ===== */
.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.srv-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  background: var(--white);
  transition: var(--transition);
}
.srv-card:hover { box-shadow: 0 6px 24px rgba(107,33,168,.12); border-color: rgba(107,33,168,.3); transform: translateY(-4px); }
.srv-card-emg { border-color: #f5cccc; }
.srv-card-emg:hover { box-shadow: 0 6px 24px rgba(230,57,70,.12); border-color: #f5cccc; }
.srv-num { font-size: .73rem; font-weight: 700; color: var(--purple); letter-spacing: 2px; margin-bottom: 12px; text-transform: uppercase; }
.srv-num-emg { color: var(--red); }
.srv-card-icon { font-size: 1.5rem; margin-bottom: 14px; display: block; }
.srv-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.srv-card p { font-size: .83rem; color: var(--grey); line-height: 1.6; margin-bottom: 14px; }
.srv-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.srv-list li { font-size: .79rem; color: var(--charcoal); padding-left: 14px; position: relative; }
.srv-list li::before { content: '→'; position: absolute; left: 0; color: var(--purple); font-weight: 700; }

/* ===== MID-PAGE CTA STRIP ===== */
.mid-cta-strip {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  color: #fff;
  padding: 52px 40px;
  text-align: center;
}
.mid-cta-strip h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 12px; }
.mid-cta-strip p { font-size: 1rem; opacity: .85; margin-bottom: 28px; }
.mid-cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ===== EMERGENCY FULL SECTION ===== */
.emg-full-sec {
  background: linear-gradient(135deg, #7b0e1a, var(--red));
  color: #fff;
}
.emg-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.emg-content .section-tag { margin-bottom: 16px; }
.emg-content h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); font-weight: 800; color: #fff; margin-bottom: 16px; line-height: 1.25; }
.emg-content p { font-size: .95rem; color: rgba(255,255,255,.85); line-height: 1.75; margin-bottom: 24px; }
.emg-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.emg-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.emg-btns .btn {
  flex: 1;
  min-width: 220px;
  justify-content: center;
}
.emg-metric {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  padding: 18px 14px;
  text-align: center;
}
.emg-metric-num { 
  font-size: 1.6rem; 
  font-weight: 800; 
  color: #ffe066; 
  font-variant-numeric: tabular-nums;
  transform: translateZ(0);
}
.emg-metric-lbl { font-size: .72rem; color: rgba(255,255,255,.8); margin-top: 4px; line-height: 1.4; }
.emg-protocol {
  background: rgba(0,0,0,.2);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}
.emg-protocol h3 { font-size: 1rem; font-weight: 700; color: #ffe066; margin-bottom: 20px; letter-spacing: .5px; }
.protocol-steps { display: flex; flex-direction: column; gap: 12px; }
.pstep { display: flex; align-items: flex-start; gap: 12px; }
.pnum {
  width: 28px; height: 28px;
  background: rgba(255,255,255,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.pstep p { font-size: .85rem; color: rgba(255,255,255,.88); line-height: 1.5; }
.pstep strong { color: #fff; }
.emg-note {
  margin-top: 20px;
  padding: 14px 16px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  font-size: .82rem;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
}
.emg-note strong { color: #ffe066; }

/* ===== WHAT YOU CAN EXPECT ===== */
.expect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.expect-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.expect-card:hover { 
  transform: translateY(-8px); 
  box-shadow: var(--shadow-xl); 
  border-color: var(--purple-light);
}
.expect-icon {
  width: 64px;
  height: 64px;
  background: var(--purple-faint);
  color: var(--purple);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}
.expect-card:hover .expect-icon {
  background: var(--purple);
  color: var(--white);
  transform: scale(1.1);
}
.expect-icon svg { width: 30px; height: 30px; }
.expect-card h3 { 
  font-size: 1.15rem; 
  font-weight: 700; 
  color: var(--dark); 
  margin-bottom: 14px; 
  line-height: 1.4;
}
.expect-card p { 
  font-size: .93rem; 
  color: var(--grey); 
  line-height: 1.7; 
}

/* ===== INSURANCE ===== */
.ins-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  justify-content: center;
}
.ins-pill {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-size: .84rem; font-weight: 600; color: #fff;
  display: flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.ins-pill:hover { background: rgba(255,255,255,.18); }
.ins-tick { color: #ffe066; font-weight: 700; }

/* ===== AI ASSISTANT ===== */
.ai-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  margin-top: 40px;
  align-items: start;
}
.ai-info h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.quick-qs { display: flex; flex-wrap: wrap; gap: 10px; }
.qq {
  background: var(--purple-faint);
  border: 1px solid rgba(107,33,168,.25);
  color: var(--purple);
  padding: 8px 14px;
  border-radius: 50px;
  font-size: .79rem; font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-sans);
}
.qq:hover { background: var(--purple); color: #fff; }
.chatbox {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}
.chat-head {
  background: var(--dark);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 10px;
}
.chat-green { width: 10px; height: 10px; background: #4caf50; border-radius: 50%; flex-shrink: 0; }
.ch-name { font-weight: 700; font-size: .88rem; color: #fff; }
.ch-sub { font-size: .7rem; color: rgba(255,255,255,.5); margin-top: 2px; }
.chat-msgs { padding: 14px; height: 260px; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; }
.cmsg { max-width: 88%; border-radius: var(--radius-md); padding: 10px 14px; font-size: .84rem; line-height: 1.5; font-family: var(--font-sans); }
.cmsg.bot { background: var(--light-grey); color: var(--charcoal); align-self: flex-start; border-bottom-left-radius: 4px; }
.cmsg.user { background: var(--purple); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.cmsg.thinking { opacity: .55; font-style: italic; }
.chat-inp { display: flex; border-top: 1px solid var(--border); }
.chat-inp input { flex: 1; border: none; outline: none; padding: 12px 16px; font-size: .87rem; font-family: var(--font-sans); }
.chat-send { background: var(--purple); color: #fff; border: none; padding: 12px 16px; cursor: pointer; font-size: 1rem; transition: var(--transition); }
.chat-send:hover { background: var(--purple-dark); }

/* ===== APPOINTMENT FORM ===== */
.appt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.appt-info { position: relative; z-index: 1; }
.emg-contact-box {
  background: var(--red); color: #fff;
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 14px; margin-top: 8px;
}
.ecb-icon { font-size: 1.8rem; flex-shrink: 0; }
.emg-contact-box h4 { font-size: .97rem; font-weight: 700; margin-bottom: 4px; }
.emg-contact-box p { font-size: .82rem; opacity: .9; margin-bottom: 6px; }
.emg-contact-box a { color: #ffe066; font-weight: 700; font-size: 1.05rem; text-decoration: none; }
.whatsapp-cta-box {
  background: #25D366; color: #fff;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
  transition: var(--transition); margin-bottom: 20px;
}
.whatsapp-cta-box:hover { background: #1eb858; }
.whatsapp-cta-box h4 { font-size: .9rem; font-weight: 700; margin-bottom: 3px; }
.whatsapp-cta-box p { font-size: .79rem; opacity: .92; }
.appt-contact-details { display: flex; flex-direction: column; gap: 10px; }
.appt-detail-row { display: flex; gap: 10px; align-items: flex-start; font-size: .85rem; color: rgba(255,255,255,.7); }
.appt-detail-icon { color: #ffe066; font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.appt-form {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 34px;
  border-top: 4px solid #c89a3e;
  position: relative; z-index: 1;
}
.appt-form h3 { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.appt-form-sub { font-size: .82rem; color: rgba(255,255,255,.6); margin-bottom: 24px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.fg label { font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .5px; }
.fg input, .fg select, .fg textarea {
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: var(--radius-sm);
  padding: 10px 14px; font-size: .88rem;
  font-family: var(--font-sans); outline: none;
  transition: border-color var(--transition);
  background: rgba(255,255,255,.08); color: #fff;
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,.35); }
.fg select { color: rgba(255,255,255,.8); }
.fg select option { background: var(--dark); color: #fff; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: #c89a3e; background: rgba(255,255,255,.12); }
.fg textarea { resize: vertical; height: 80px; }
.appt-submit {
  width: 100%; background: var(--purple); color: #fff;
  border: none; padding: 14px; border-radius: var(--radius-sm);
  font-size: .95rem; font-weight: 700; cursor: pointer;
  transition: var(--transition); font-family: var(--font-sans); margin-top: 4px;
}
.appt-submit:hover { background: var(--purple-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(107,33,168,.4); }

/* --- Form Validation --- */
.fg.error input, 
.fg.error select, 
.fg.error textarea {
  border-color: var(--red);
  background: rgba(230, 57, 70, 0.05);
}
.fg.error label {
  color: #ffaaaf;
}
.error-msg {
  font-size: 0.68rem;
  color: #ffaaaf;
  font-weight: 500;
  display: block;
  margin-top: 2px;
  letter-spacing: 0.3px;
  animation: errFade .3s ease;
}
@keyframes errFade {
  from { opacity: 0; transform: translateY(-3px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== FOOTER UPDATES ===== */
.footer-contact-col h5 { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); margin-bottom: 20px; }
.fci-row { display: flex; gap: 8px; margin-bottom: 10px; font-size: .8rem; color: rgba(255,255,255,.6); align-items: flex-start; }
.fci { color: #21c400; flex-shrink: 0; }
.fci-row a { color: #ffffff; text-decoration: none; }
.fci-row a:hover { text-decoration: underline; }
.footer-inner { grid-template-columns: 1.8fr 1fr 1fr 1.2fr !important; }

/* ===== NAV CALL BUTTON ===== */
.nav-call-wrap { display: flex; gap: 10px; }
.nav-call-btn { background: var(--red); color: #fff; padding: 9px 16px; border-radius: 50px; font-size: .83rem; font-weight: 700; text-decoration: none; transition: var(--transition); white-space: nowrap; }
.nav-call-btn:hover { background: #b01d29; transform: translateY(-1px); }

/* ===== EXTRA RESPONSIVE FOR NEW SECTIONS ===== */
@media (max-width: 1100px) {
  .warn-grid { grid-template-columns: repeat(3, 1fr); }
  .srv-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .emg-topbar { font-size: .75rem; gap: 8px; padding: 8px 14px; }
  .trust-ribbon { padding: 12px 20px; gap: 14px; }
  .trust-div { display: none; }
  .warn-grid { grid-template-columns: repeat(2, 1fr); }
  .warn-cta { flex-direction: column; }
  .emg-grid { grid-template-columns: 1fr; }
  .ai-wrap { grid-template-columns: 1fr; }
  .appt-grid { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr !important; }
  .footer-contact-col { grid-column: 1/-1; }
  .nav-call-wrap { display: none; }
  .srv-grid { grid-template-columns: 1fr 1fr; }
  .mid-cta-strip { padding: 40px 20px; }
  
  /* Missing Grids added: */
  .doctor-grid { grid-template-columns: 1fr; gap: 40px; }
  .doctor-card-img { aspect-ratio: 4/3; }
  .cathlab-card-grid { grid-template-columns: 1fr; }
  .optima-card { grid-template-columns: 1fr; gap: 32px; padding: 28px; }
  .about-pediatric { flex-direction: column; align-items: flex-start; }
  .about-partners { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .emg-topbar .emg-sep { display: none; }
  .emg-full-sec { padding: 48px 0; }
  .test-grid { grid-template-columns: 1fr; }
  .emg-metrics { grid-template-columns: 1fr; }
  .warn-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr !important; }
  .srv-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .doctor-card-img { aspect-ratio: 1/1; }
}

/* ============================================================
   ✨ PREMIUM ANIMATIONS
   ============================================================ */

/* ── 1. Hero entrance – refined staggered slide ── */
@keyframes heroFadeUp {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero-badge, .hero-title, .hero-sub, .hero-btns, .hero-stats { 
  will-change: transform, opacity; 
  backface-visibility: hidden;
}
.hero-badge  { animation: heroFadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both; animation-delay: 0.1s; }
.hero-title  { animation: heroFadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both; animation-delay: 0.2s; }
.hero-sub    { animation: heroFadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both; animation-delay: 0.3s; }
.hero-btns   { animation: heroFadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both; animation-delay: 0.4s; }
.hero-stats  { animation: heroFadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both; animation-delay: 0.5s; }

/* ── 2. Gradient text continuous shimmer ── */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.highlight-teal {
  background: linear-gradient(135deg, #c084fc, #38bdf8, #2dd4bf, #c084fc);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  animation: gradientShift 4s ease infinite;
}

/* ── 3. Stat cards subtle premium float ── */
@keyframes floatCard {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-4px) scale(1.02); }
}
.hero-stats .stat:nth-child(1) { animation: floatCard 6s ease-in-out infinite; }
.hero-stats .stat:nth-child(2) { animation: floatCard 6s ease-in-out infinite; animation-delay: 1s; }
.hero-stats .stat:nth-child(3) { animation: floatCard 6s ease-in-out infinite; animation-delay: 2s; }

/* ── 4. Button shimmer on hover ── */
.btn-hero-red,
.btn-hero-primary,
.nav-call-btn,
.appt-submit {
  position: relative;
  overflow: hidden;
}
.btn-hero-red::after,
.btn-hero-primary::after,
.nav-call-btn::after,
.appt-submit::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transform: skewX(-20deg);
}
.btn-hero-red:hover::after,
.btn-hero-primary:hover::after,
.nav-call-btn:hover::after,
.appt-submit:hover::after {
  animation: shimmer .6s ease forwards;
}
@keyframes shimmer {
  from { left: -100%; }
  to   { left: 150%; }
}

/* ── 5. Glowing border on card hover ── */
.srv-card:hover    { box-shadow: 0 0 0 2px rgba(107,33,168,.25), 0 12px 40px rgba(107,33,168,.18); }
.partner-card:hover { box-shadow: 0 0 0 2px rgba(107,33,168,.2), 0 12px 36px rgba(107,33,168,.15); }
.test-card:hover   { box-shadow: 0 0 0 2px rgba(107,33,168,.15), 0 12px 36px rgba(0,0,0,.12); }

/* ── 6. Warn card pulse ring on hover ── */
@keyframes warnPulse {
  0%   { box-shadow: 0 0 0 0 rgba(230,57,70,.35); }
  100% { box-shadow: 0 0 0 12px rgba(230,57,70,0); }
}
.warn-card:hover { animation: warnPulse .55s ease; }

/* ── 7. Emergency metric glow ── */
@keyframes numGlow {
  0%, 100% { text-shadow: 0 0 6px rgba(255,224,102,.3); }
  50%       { text-shadow: 0 0 18px rgba(255,224,102,.8); }
}
.emg-metric-num { animation: numGlow 2.5s ease-in-out infinite; }

/* ── 8. Chat live-dot pulse ── */
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(76,175,80,.5); }
  50%       { box-shadow: 0 0 0 6px rgba(76,175,80,0); }
}
.chat-green { animation: livePulse 2s ease-in-out infinite; }

/* ── 9. Scroll reveal with slight scale ── */
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(.98);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── 10. Why-card counter number entrance ── */
@keyframes countUp {
  from { opacity: 0; transform: scale(.7); }
  to   { opacity: 1; transform: scale(1); }
}
.why-num { animation: countUp .5s cubic-bezier(.34,1.56,.64,1) both; }

/* ============================================================
   ⚡ PREMIUM FEATURES v2
   ============================================================ */

/* ── Scroll Progress Bar ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #c084fc, #38bdf8, #2dd4bf);
  z-index: 99999;
  transition: width .1s linear;
  border-radius: 0 3px 3px 0;
}

/* ── 3D Tilt Cards (perspective wrapper) ── */
.srv-card,
.why-card,
.partner-card {
  transform-style: preserve-3d;
  will-change: transform;
}

/* ── Button Ripple ── */
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  transform: scale(0);
  animation: rippleAnim .6s linear;
  pointer-events: none;
}
@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

/* ── Animated gradient border on mid-CTA ── */
.mid-cta-strip {
  background: linear-gradient(270deg, #4C1680, #6B21A8, #1A7A7A, #702280);
  background-size: 400% 400%;
  animation: gradientBG 8s ease infinite;
}
@keyframes gradientBG {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── Cursor spotlight (applied via JS class) ── */
.cursor-spotlight {
  position: fixed;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,132,252,.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 999;
  transform: translate(-50%, -50%);
  transition: left .12s ease, top .12s ease;
  mix-blend-mode: screen;
}

/* ── Pulsing ring on emergency call button ── */
@keyframes callRing {
  0%   { box-shadow: 0 0 0 0 rgba(230,57,70,.6); }
  70%  { box-shadow: 0 0 0 16px rgba(230,57,70,0); }
  100% { box-shadow: 0 0 0 0 rgba(230,57,70,0); }
}
.btn-hero-red { animation: callRing 2s ease-in-out infinite; }

/* ── Milestone / stat count-up text style ── */
.num[data-counted], .emg-metric-num[data-counted],
.milestone-num[data-counted] {
  transition: opacity .3s;
  font-variant-numeric: tabular-nums;
}

/* ── Glass section tag ── */
.section-tag {
  backdrop-filter: blur(4px);
  border: 1px solid rgba(26,122,122,.25);
}




@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


@media (max-width: 1024px) {
  .cursor-spotlight { display: none !important; }
  .srv-card, .why-card, .partner-card, .test-card {
    transform: none !important;
    transition: none !important;
  }
}

.hero, .mid-cta-strip {
  will-change: background-position;
}


.kpopup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(11, 15, 25, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 20px;
}

.kpopup-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.kpopup-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 440px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.active .kpopup-card {
  transform: scale(1) translateY(0);
}

.kpopup-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  transition: transform 0.5s ease;
}

.active .kpopup-icon {
  transform: rotate(360deg);
}

.kpopup-icon.success {
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
}

.kpopup-icon.error {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

.kpopup-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  font-family: var(--font-playfair);
}

.kpopup-card p {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 30px;
  white-space: pre-line;
}

.kpopup-btn {
  background: var(--purple);
  color: #fff;
  border: none;
  padding: 14px 34px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-sans);
  width: 100%;
}

.kpopup-btn:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(107, 33, 168, 0.3);
}

.kpopup-close {
  position: absolute;
  top: 16px; right: 16px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--grey);
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s;
  line-height: 1;
}

.kpopup-close:hover {
  opacity: 1;
}

@media (max-width: 480px) {
  .kpopup-card {
    padding: 32px 24px;
  }
}
