/* ===================================================
   GINI HOSPITAL — styles.css
   Theme: Purple #7C3AED | Lavender #C4B5FD | Dark #2E1065
   =================================================== */

/* ---------- CSS VARIABLES ---------- */
:root {
  --purple:       #7C3AED;
  --purple-dark:  #5B21B6;
  --purple-deeper:#2E1065;
  --lavender:     #C4B5FD;
  --lavender-light:#EDE9FE;
  --lavender-pale: #F5F3FF;
  --white:        #FFFFFF;
  --gray-50:      #F9FAFB;
  --gray-100:     #F3F4F6;
  --gray-200:     #E5E7EB;
  --gray-600:     #4B5563;
  --gray-700:     #374151;
  --gray-800:     #1F2937;
  --gray-900:     #111827;
  --green:        #059669;
  --red:          #DC2626;
  --gold:         #F59E0B;

  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm:    8px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    32px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.08);
  --shadow-md:    0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:    0 12px 40px rgba(0,0,0,.14);
  --shadow-purple: 0 8px 32px rgba(124,58,237,.25);

  --transition:   0.3s cubic-bezier(.4,0,.2,1);
  --max-w:        1200px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -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; }

/* ---------- UTILITIES ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--alt { background: var(--lavender-pale); }
.section--dark { background: var(--purple-deeper); color: var(--white); }
.section--purple { background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%); color: var(--white); }

.section-tag {
  display: inline-block;
  background: var(--lavender-light);
  color: var(--purple);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section--dark .section-tag,
.section--purple .section-tag {
  background: rgba(255,255,255,.15);
  color: var(--lavender);
}

.section-headline {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 16px;
  color: var(--gray-900);
}
.section--dark .section-headline,
.section--purple .section-headline { color: var(--white); }

.section-sub {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 680px;
  line-height: 1.7;
}
.section--dark .section-sub,
.section--purple .section-sub { color: rgba(255,255,255,.8); }

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--purple);
  color: var(--white);
  box-shadow: var(--shadow-purple);
}
.btn--primary:hover { background: var(--purple-dark); transform: translateY(-1px); box-shadow: 0 12px 36px rgba(124,58,237,.35); }
.btn--secondary { background: transparent; color: var(--purple); border: 2px solid var(--purple); }
.btn--secondary:hover { background: var(--lavender-light); }
.btn--white { background: var(--white); color: var(--purple); }
.btn--white:hover { background: var(--lavender-light); }
.btn--outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); }
.btn--outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn--emergency { background: var(--red); color: var(--white); }
.btn--emergency:hover { background: #B91C1C; }
.btn--sm { padding: 10px 20px; font-size: 13px; }
.btn--lg { padding: 18px 36px; font-size: 17px; }

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo-mark {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
  font-size: 18px;
}
.nav__logo-text { font-weight: 800; font-size: 15px; color: var(--gray-900); line-height: 1.1; }
.nav__logo-sub { font-size: 11px; color: var(--purple); font-weight: 600; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav__links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  transition: var(--transition);
  white-space: nowrap;
}
.nav__links a:hover { color: var(--purple); }
.nav__cta { display: flex; align-items: center; gap: 10px; padding-left: 16px; border-left: 1px solid var(--gray-200); }
.nav__emergency {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  border: 1.5px solid rgba(220,38,38,0.25);
  padding: 5px 11px;
  border-radius: 20px;
  white-space: nowrap;
  transition: var(--transition);
}
.nav__emergency:hover { background: rgba(220,38,38,0.06); }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--gray-200);
  padding: 16px 24px 24px;
}
.nav__mobile a {
  padding: 12px 0;
  font-weight: 600;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}
.nav__mobile.open { display: flex; }

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--purple-deeper) 0%, var(--purple) 50%, var(--purple-dark) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 24px;
}
.hero__h1 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}
.hero__h1 span { color: var(--lavender); }
.hero__sub {
  font-size: 18px;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  margin-bottom: 12px;
}
.hero__location {
  font-size: 14px;
  color: var(--lavender);
  font-weight: 600;
  margin-bottom: 36px;
}
.hero__btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.hero__stat {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  backdrop-filter: blur(8px);
}
.hero__stat-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--lavender);
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-label { font-size: 11px; color: rgba(255,255,255,.75); font-weight: 600; line-height: 1.3; }

/* Hero right — floating cards */
.hero__visual { position: relative; height: 500px; }
.hero__img-wrap {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.15);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero__img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255,255,255,.5);
  font-size: 14px;
  text-align: center;
}
.hero__img-placeholder .placeholder-icon { font-size: 64px; }

.float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  z-index: 10;
  animation: float 4s ease-in-out infinite;
}
.float-card:nth-child(2) { animation-delay: 1s; }
.float-card:nth-child(3) { animation-delay: 2s; }
.float-card:nth-child(4) { animation-delay: 0.5s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.float-card--top-right { top: -20px; right: -20px; }
.float-card--left { left: -30px; top: 50%; transform: translateY(-50%); }
.float-card--bottom-right { bottom: 20px; right: -20px; }
.float-card--bottom-left { bottom: -10px; left: 10px; }

.float-card__label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-600); }
.float-card__value { font-size: 20px; font-weight: 900; color: var(--purple); line-height: 1.1; }
.float-card__sub { font-size: 11px; color: var(--gray-600); }
.float-card--accent { background: var(--purple); color: var(--white); }
.float-card--accent .float-card__label { color: var(--lavender); }
.float-card--accent .float-card__value { color: var(--white); font-size: 13px; font-weight: 600; font-style: italic; }
.float-card--accent .float-card__sub { color: rgba(255,255,255,.7); }

/* ---------- BOOKING BAR ---------- */
.booking-bar {
  background: var(--white);
  border-bottom: 2px solid var(--lavender-light);
  padding: 16px 0;
  position: sticky;
  top: 72px;
  z-index: 900;
  box-shadow: var(--shadow-md);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform .4s ease, opacity .4s ease;
}
.booking-bar.visible { transform: translateY(0); opacity: 1; }
.booking-bar__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.booking-bar__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-700);
  white-space: nowrap;
}
.booking-bar__select {
  flex: 1;
  min-width: 160px;
  padding: 10px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: inherit;
  color: var(--gray-700);
  background: var(--white);
  outline: none;
  transition: var(--transition);
}
.booking-bar__select:focus { border-color: var(--purple); }
.booking-bar__input {
  padding: 10px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: inherit;
  color: var(--gray-700);
  outline: none;
  transition: var(--transition);
  min-width: 140px;
}
.booking-bar__input:focus { border-color: var(--purple); }

/* ---------- TRUST BAR ---------- */
.trust-bar { background: var(--purple-deeper); padding: 40px 0; }
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.trust-bar__item {
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.trust-bar__item:last-child { border-right: none; }
.trust-bar__num {
  font-size: 36px;
  font-weight: 900;
  color: var(--lavender);
  line-height: 1;
  margin-bottom: 6px;
}
.trust-bar__label { font-size: 12px; color: rgba(255,255,255,.7); font-weight: 600; line-height: 1.3; }

/* ---------- WHY GINI ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(24px);
}
.why-card.visible { opacity: 1; transform: translateY(0); }
.why-card:hover { box-shadow: var(--shadow-purple); border-color: var(--lavender); transform: translateY(-4px); }
.why-card__icon { font-size: 48px; margin-bottom: 20px; }
.why-card__headline { font-size: 22px; font-weight: 800; color: var(--gray-900); margin-bottom: 12px; }
.why-card__stat { font-size: 36px; font-weight: 900; color: var(--purple); line-height: 1; }
.why-card__stat-label { font-size: 13px; color: var(--gray-600); margin-bottom: 20px; font-weight: 600; }
.why-card__text { font-size: 14px; color: var(--gray-600); line-height: 1.7; }
.why-card__list { list-style: none; margin-top: 16px; }
.why-card__list li {
  font-size: 14px;
  color: var(--gray-700);
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
}
.why-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ---------- SPECIALTIES ---------- */
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.specialty-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
}
.specialty-card.visible { opacity: 1; transform: translateY(0); }
.specialty-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--lavender));
  opacity: 0;
  transition: var(--transition);
}
.specialty-card:hover::before { opacity: 1; }
.specialty-card:hover { box-shadow: var(--shadow-md); border-color: var(--lavender); transform: translateY(-4px); }
.specialty-card--featured { border-color: var(--purple); box-shadow: var(--shadow-purple); }
.specialty-card--featured::before { opacity: 1; }
.specialty-card__badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--purple);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.specialty-card__icon { font-size: 40px; margin-bottom: 16px; }
.specialty-card__name { font-size: 18px; font-weight: 800; color: var(--gray-900); margin-bottom: 6px; }
.specialty-card__tagline { font-size: 12px; color: var(--purple); font-weight: 700; margin-bottom: 12px; }
.specialty-card__stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.specialty-card__stat-pill {
  background: var(--lavender-pale);
  color: var(--purple);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}
.specialty-card__text { font-size: 13px; color: var(--gray-600); line-height: 1.6; margin-bottom: 20px; }
.specialty-card__doctor { font-size: 12px; color: var(--gray-700); font-weight: 600; margin-bottom: 20px; }

/* ---------- PROGRAMMES ---------- */
.programmes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.programme-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.programme-card.visible { opacity: 1; transform: translateY(0); }
.programme-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.programme-card__header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.programme-card__duration {
  background: var(--lavender-light);
  color: var(--purple);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
}
.programme-card__title { font-size: 24px; font-weight: 800; color: var(--gray-900); margin-bottom: 8px; }
.programme-card__for { font-size: 13px; color: var(--gray-600); margin-bottom: 20px; }
.programme-card__outcomes { margin: 20px 0; }
.programme-card__outcomes-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-600); margin-bottom: 10px; }
.programme-outcome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 13px;
  color: var(--gray-700);
}
.programme-outcome:last-child { border-bottom: none; }
.programme-outcome__icon { color: var(--green); font-size: 16px; flex-shrink: 0; }
.programme-outcome strong { color: var(--purple); }
.programme-card__price {
  background: var(--lavender-pale);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--gray-700);
}
.programme-card__price strong { color: var(--purple); font-size: 16px; }

/* ---------- OUTCOMES TABLE ---------- */
.outcomes-section { padding: 96px 0; background: var(--gray-50); }
.outcomes-section .section-headline { color: var(--gray-900); }
.outcomes-callout {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  margin: 32px 0 48px;
}
.outcomes-callout__num {
  font-size: 72px;
  font-weight: 900;
  color: var(--lavender);
  line-height: 1;
  flex-shrink: 0;
}
.outcomes-callout__text-big { font-size: 24px; font-weight: 800; line-height: 1.2; }
.outcomes-callout__text-small { font-size: 15px; color: rgba(255,255,255,.8); margin-top: 4px; }

.outcomes-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.outcomes-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 15px;
}
.outcomes-table th {
  padding: 20px 24px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.outcomes-table thead tr {
  background: var(--purple-deeper);
  color: var(--white);
}
.outcomes-table thead th:nth-child(2) { background: var(--purple); }
.outcomes-table tbody tr {
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition);
}
.outcomes-table tbody tr:hover { background: var(--lavender-pale); }
.outcomes-table tbody tr:last-child {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: var(--white);
  font-weight: 800;
  font-size: 17px;
}
.outcomes-table tbody tr:last-child td { color: var(--white); }
.outcomes-table td { padding: 18px 24px; color: var(--gray-700); }
.outcomes-table td:first-child { font-weight: 600; color: var(--gray-900); }
.outcomes-table .gini-val {
  color: var(--purple);
  font-weight: 800;
  font-size: 17px;
}
.outcomes-table tbody tr:last-child .gini-val { color: var(--lavender); font-size: 20px; }
.outcomes-table .national-val { color: var(--gray-500); }
.outcomes-table .diff-val {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ECFDF5;
  color: var(--green);
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 13px;
}
.outcomes-table tbody tr:last-child .diff-val {
  background: rgba(255,255,255,.2);
  color: var(--lavender);
  font-size: 16px;
  padding: 6px 16px;
}
.outcomes-source {
  font-size: 11px;
  color: var(--gray-600);
  margin-top: 20px;
  font-style: italic;
}

/* ---------- PATIENT STORIES ---------- */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.story-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.story-card.visible { opacity: 1; transform: translateY(0); }
.story-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.story-card__before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.story-ba-box { border-radius: var(--radius-sm); padding: 14px; }
.story-ba-box--before { background: #FEF2F2; border: 1px solid #FECACA; }
.story-ba-box--after { background: #ECFDF5; border: 1px solid #A7F3D0; }
.story-ba-box__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 6px;
}
.story-ba-box--before .story-ba-box__label { color: var(--red); }
.story-ba-box--after .story-ba-box__label { color: var(--green); }
.story-ba-box__val { font-size: 22px; font-weight: 900; line-height: 1; }
.story-ba-box--before .story-ba-box__val { color: var(--red); }
.story-ba-box--after .story-ba-box__val { color: var(--green); }
.story-ba-box__metric { font-size: 11px; color: var(--gray-600); }

.story-card__quote {
  font-size: 14px;
  color: var(--gray-700);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
  padding-left: 16px;
  border-left: 3px solid var(--lavender);
}
.story-card__patient { display: flex; align-items: center; gap: 12px; }
.story-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 16px;
}
.story-card__name { font-weight: 700; font-size: 15px; color: var(--gray-900); }
.story-card__info { font-size: 12px; color: var(--gray-600); }
.story-card__tag {
  display: inline-block;
  background: var(--lavender-light);
  color: var(--purple);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: 4px;
}

/* ---------- JIYO100SAAL ---------- */
.mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mission-text h2 { color: var(--white); font-size: clamp(28px, 4vw, 44px); font-weight: 900; margin-bottom: 16px; }
.mission-text p { color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 24px; }
.mission-pillars { display: flex; flex-direction: column; gap: 20px; }
.mission-pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid rgba(255,255,255,.1);
  transition: var(--transition);
}
.mission-pillar:hover { background: rgba(255,255,255,.12); }
.mission-pillar__num {
  font-size: 32px;
  font-weight: 900;
  color: var(--lavender);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}
.mission-pillar__title { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.mission-pillar__text { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.5; }

/* ---------- TRUST & CREDIBILITY ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 56px;
}
.trust-col {
  opacity: 0;
  transform: translateY(20px);
}
.trust-col.visible { opacity: 1; transform: translateY(0); }
.trust-col__icon { font-size: 40px; margin-bottom: 16px; }
.trust-col__title { font-size: 18px; font-weight: 800; color: var(--gray-900); margin-bottom: 12px; }
.trust-col__list { list-style: none; }
.trust-col__list li {
  font-size: 13px;
  color: var(--gray-600);
  padding: 5px 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  gap: 8px;
}
.trust-col__list li:last-child { border-bottom: none; }
.trust-col__list .dot { color: var(--purple); font-weight: 700; flex-shrink: 0; }
.trust-col__big-num { font-size: 48px; font-weight: 900; color: var(--purple); line-height: 1; margin-bottom: 4px; }
.trust-col__big-label { font-size: 14px; color: var(--gray-700); font-weight: 600; margin-bottom: 4px; }
.trust-col__big-sub { font-size: 12px; color: var(--gray-600); }

/* ---------- TEAM ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.team-grid .doctor-card--featured {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
}
.doctor-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.doctor-card.visible { opacity: 1; transform: translateY(0); }
.doctor-card:hover { box-shadow: var(--shadow-purple); border-color: var(--lavender); transform: translateY(-4px); }
.doctor-card--featured { border-color: var(--purple); box-shadow: var(--shadow-purple); }
.doctor-card__photo {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--lavender-pale), var(--lavender-light));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.doctor-card--featured .doctor-card__photo { aspect-ratio: 16/9; }
.doctor-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.doctor-card__initials {
  font-size: 48px;
  font-weight: 900;
  color: var(--purple);
  opacity: .4;
}
.doctor-card--featured .doctor-card__initials { font-size: 72px; }
.doctor-card__photo-label {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  color: var(--gray-600);
  white-space: nowrap;
  background: rgba(255,255,255,.8);
  padding: 2px 8px;
  border-radius: 100px;
}
.doctor-card__body { padding: 20px; }
.doctor-card--featured .doctor-card__body { padding: 28px; }
.doctor-card__tag {
  display: inline-block;
  background: var(--purple);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
}
.doctor-card__name { font-size: 17px; font-weight: 800; color: var(--gray-900); margin-bottom: 4px; }
.doctor-card--featured .doctor-card__name { font-size: 22px; }
.doctor-card__title { font-size: 12px; color: var(--purple); font-weight: 700; margin-bottom: 10px; }
.doctor-card__creds { font-size: 12px; color: var(--gray-600); line-height: 1.6; margin-bottom: 12px; }
.doctor-card__quote {
  font-size: 12px;
  color: var(--gray-700);
  font-style: italic;
  line-height: 1.6;
  padding: 12px;
  background: var(--lavender-pale);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  display: none;
}
.doctor-card--featured .doctor-card__quote { display: block; }
.doctor-card__specs { font-size: 11px; color: var(--gray-600); line-height: 1.6; margin-bottom: 16px; display: none; }
.doctor-card--featured .doctor-card__specs { display: block; }

/* ---------- LOCATION ---------- */
.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 420px;
}
.location-map iframe { width: 100%; height: 100%; border: none; }
.location-address {
  background: var(--lavender-pale);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid var(--lavender);
}
.location-address h3 { font-size: 16px; font-weight: 700; color: var(--purple); margin-bottom: 8px; }
.location-address p { font-size: 14px; color: var(--gray-700); line-height: 1.7; }
.location-contacts { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.location-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.location-contact-item:hover { border-color: var(--purple); box-shadow: var(--shadow-sm); }
.location-contact-item__icon { font-size: 24px; flex-shrink: 0; }
.location-contact-item__label { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-600); font-weight: 700; }
.location-contact-item__val { font-size: 17px; font-weight: 800; color: var(--gray-900); }
.location-contact-item--emergency .location-contact-item__val { color: var(--red); }
.location-hours {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.location-hours__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 13px;
}
.location-hours__row:last-child { border-bottom: none; }
.location-hours__row strong { color: var(--gray-900); font-weight: 700; }
.location-hours__row span { color: var(--gray-600); }
.location-hours__row .badge-24 {
  background: var(--green);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}

/* ---------- FINAL CTA ---------- */
.cta-final {
  background: linear-gradient(135deg, var(--purple-deeper) 0%, var(--purple) 60%, var(--purple-dark) 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(196,181,253,.1) 0%, transparent 60%),
              radial-gradient(circle at 70% 50%, rgba(124,58,237,.2) 0%, transparent 60%);
}
.cta-final__inner { position: relative; z-index: 1; }
.cta-final h2 { font-size: clamp(28px, 4vw, 52px); font-weight: 900; color: var(--white); margin-bottom: 16px; }
.cta-final p { font-size: 18px; color: rgba(255,255,255,.8); max-width: 640px; margin: 0 auto 32px; }
.cta-final__checklist {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.cta-final__check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,.9);
  font-weight: 600;
}
.cta-final__check .checkmark { color: var(--lavender); font-size: 18px; }
.cta-final__btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--purple-deeper);
  color: rgba(255,255,255,.8);
  padding: 80px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer__logo-mark {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
  font-size: 16px;
}
.footer__logo-text { font-weight: 800; font-size: 16px; color: var(--white); }
.footer__tagline { font-size: 13px; color: var(--lavender); font-style: italic; margin-bottom: 16px; }
.footer__about { font-size: 13px; line-height: 1.7; margin-bottom: 20px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}
.footer__social a:hover { background: var(--purple); }
.footer__col-title { font-size: 14px; font-weight: 800; color: var(--white); margin-bottom: 20px; text-transform: uppercase; letter-spacing: .08em; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 13px; color: rgba(255,255,255,.7); transition: var(--transition); }
.footer__links a:hover { color: var(--lavender); padding-left: 4px; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom-emergency { color: var(--lavender); font-weight: 700; }
.footer__bottom-links { display: flex; gap: 20px; }
.footer__bottom-links a { color: rgba(255,255,255,.6); transition: var(--transition); }
.footer__bottom-links a:hover { color: var(--lavender); }

/* ---------- SCROLL ANIMATIONS ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }
.fade-in-delay-4 { transition-delay: .4s; }
.fade-in-delay-5 { transition-delay: .5s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .team-grid { grid-template-columns: repeat(4, 1fr); }
  .team-grid .doctor-card--featured { grid-column: span 2; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .specialties-grid { grid-template-columns: repeat(2, 1fr); }
  .programmes-grid { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: 1fr; }
  .mission-inner { grid-template-columns: 1fr; }
  .location-inner { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid .doctor-card--featured { grid-column: span 3; flex-direction: row; }
  .team-grid .doctor-card--featured .doctor-card__photo { width: 260px; flex-shrink: 0; aspect-ratio: auto; height: auto; }
  .trust-bar__grid { grid-template-columns: repeat(3, 1fr); }
  .trust-bar__item:nth-child(3) { border-right: none; }
  .trust-bar__item:nth-child(4) { border-right: 1px solid rgba(255,255,255,.1); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .booking-bar__inner { justify-content: flex-start; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .hero { padding-top: 72px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .specialties-grid { grid-template-columns: 1fr; }
  .trust-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar__item:nth-child(2) { border-right: none; }
  .trust-bar__item:nth-child(3) { border-right: 1px solid rgba(255,255,255,.1); }
  .trust-bar__item:nth-child(4) { border-right: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid .doctor-card--featured { grid-column: span 2; flex-direction: column; }
  .team-grid .doctor-card--featured .doctor-card__photo { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; }
  .outcomes-callout { flex-direction: column; text-align: center; gap: 8px; }
  .cta-final__checklist { flex-direction: column; align-items: center; gap: 12px; }
  .hero__btns { flex-direction: column; }
  .cta-final__btns { flex-direction: column; align-items: center; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ---- BOOKING MODAL ---- */
.booking-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.booking-modal-overlay.open { display: flex; }
.booking-modal {
  background: #fff;
  border-radius: 16px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}
.booking-modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #6b7280;
  line-height: 1;
}
.booking-modal__close:hover { color: #111; }
.booking-modal__title {
  font-size: 24px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 4px;
}
.booking-modal__sub {
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 24px;
  line-height: 1.5;
}
.booking-form__group {
  margin-bottom: 16px;
}
.booking-form__group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.booking-form__input,
.booking-form__select,
.booking-form__textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  color: var(--gray-900);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.booking-form__input:focus,
.booking-form__select:focus,
.booking-form__textarea:focus { border-color: var(--purple); }
.booking-form__textarea { resize: vertical; }
.booking-form__radio-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.booking-form__radio-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  cursor: pointer;
}
.bhansali-callout {
  background: #fef3f2;
  border: 1.5px solid #fca5a5;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--gray-800);
  line-height: 1.6;
}
.bhansali-callout a {
  color: #e74c3c;
  font-weight: 700;
}
.booking-confirm-note {
  font-size: 12px;
  color: var(--gray-600);
  margin-top: 12px;
  text-align: center;
}
.booking-success {
  text-align: center;
  padding: 32px 0;
  display: none;
}
.booking-success__icon { font-size: 48px; margin-bottom: 12px; }
.booking-success__title { font-size: 22px; font-weight: 800; color: #10b981; margin-bottom: 8px; }
.booking-success__text { font-size: 15px; color: var(--gray-600); line-height: 1.6; }

@media (max-width: 600px) {
  .booking-modal { padding: 28px 20px; }
  .booking-modal__title { font-size: 20px; }
}

/* ---- WHATSAPP FLOAT ---- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
}
.wa-float__btn {
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  animation: wa-pulse 2.2s infinite;
  flex-shrink: 0;
}
.wa-float__btn svg { width: 30px; height: 30px; fill: #fff; }
.wa-float__label {
  background: #25d366;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(37,211,102,0.3);
  display: none;
}
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@media (min-width: 768px) {
  .wa-float.scrolled .wa-float__label { display: block; }
  .wa-float { flex-direction: row-reverse; }
}
@media (max-width: 767px) {
  .wa-float { bottom: 20px; right: 16px; }
  .wa-float__label { display: none !important; }
}
