/* ═══════════════════════════════════════════════════════
   Global Health and Heal — Main Stylesheet v4
   Brand Identity: Deep Teal · Aqua Teal · Warm Gold
   Fonts: Playfair Display (headings) + Lato (body)
   Tagline: Health for All. Hope for Tomorrow.
═══════════════════════════════════════════════════════ */

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

/* ── Brand Tokens ───────────────────────────────────── */
:root {
  /* ── Exact colours extracted from template image ── */
  --primary:      #015D6A;   /* Dark Teal — trust bar, hero, navbar */
  --primary-dark: #01424C;   /* Deeper teal — footer, hover */
  --primary-btn:  #085A65;   /* Button teal — Book Appointment */
  --secondary:    #1B8F8A;   /* Aqua Teal — secondary accents */
  --secondary-lt: #2AADA8;   /* Light aqua */
  --gold:         #F5AF1C;   /* Warm Gold — extracted exact pixel */
  --gold-dark:    #D4960F;   /* Darker gold — hover states */
  --gold-text:    #E8A020;   /* Gold for text accents */
  --bg:           #F5FAF9;   /* Soft Mint White — confirmed brand colour */
  --navy:         #0A1A27;   /* Dark navy — main headings */
  --charcoal:     #30373F;   /* Body text — extracted exact pixel */
  --white:        #FFFFFF;
  --border:       #C8E0E3;   /* Teal-tinted border */
  --border-lt:    #DFF0F2;   /* Light teal border */
  --slate:        #5A7478;   /* Muted teal-grey */
  --teal-lt-bg:   #E0F4F6;   /* Very light teal — icon bg, tags */
  --shadow:       0 4px 24px rgba(1,93,106,0.10);
  --shadow-lg:    0 12px 48px rgba(1,93,106,0.18);
  --radius:       12px;
  --radius-sm:    8px;
  --transition:   0.3s cubic-bezier(0.4,0,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: 'Lato', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
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; }

/* ── Typography ────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 700; }
p  { font-size: 1rem; color: var(--charcoal); line-height: 1.75; font-family: 'Lato', sans-serif; }

.text-primary   { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-gold      { color: var(--gold); }
.text-navy      { color: var(--navy); }
.text-white     { color: var(--white); }
.text-charcoal  { color: var(--charcoal); }

/* ── Layout ────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ── Section Label ─────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  background: #E0F4F6;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-label.dark {
  color: #A8DDD9;
  background: rgba(255,255,255,0.12);
}
.section-label.gold {
  color: var(--gold-dark);
  background: #FEF3D0;
}

/* ── Section Header ────────────────────────────────── */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-header p { margin-top: 16px; font-size: 1.05rem; color: var(--charcoal); }

/* ── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 100px;
  font-family: 'Lato', sans-serif; font-size: 0.95rem; font-weight: 700;
  transition: var(--transition); white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(245,175,28,0.40);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,175,28,0.55);
}
.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(27,143,138,0.30);
}
.btn-secondary:hover {
  background: #147570;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,143,138,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: #0F2A50; transform: translateY(-2px); }
.btn-whatsapp {
  background: #25D366; color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { background: #1ea952; transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Cards ─────────────────────────────────────────── */
.card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); border: 1px solid var(--border);
  padding: 32px; transition: var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ══ NAVBAR ════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13,77,87,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(13,77,87,0.99);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}

/* Logo in nav */
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-svg { width: 44px; height: 44px; flex-shrink: 0; }
.nav-logo-text { line-height: 1.1; }
.nav-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--white); display: block;
}
.nav-logo-name .global { color: #A8DDD9; }
.nav-logo-tagline {
  font-family: 'Lato', sans-serif;
  font-size: 0.6rem; font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em; display: block;
  font-style: italic;
}

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.875rem; font-weight: 700;
  color: rgba(255,255,255,0.75); transition: var(--transition);
  font-family: 'Lato', sans-serif; letter-spacing: 0.01em;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--white); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: var(--transition); }

.nav-mobile {
  display: none; background: var(--primary);
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block; color: rgba(255,255,255,0.75);
  padding: 12px 0; font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.nav-mobile a:hover { color: white; padding-left: 8px; }
.nav-mobile .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* ══ HERO ═══════════════════════════════════════════════ */
.hero {
  min-height: 100vh; background: var(--primary);
  position: relative; display: flex; align-items: center;
  overflow: hidden; padding-top: 72px;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 40%, rgba(27,143,138,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 15% 80%, rgba(242,178,51,0.10) 0%, transparent 55%);
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 64px; align-items: center;
  min-height: calc(100vh - 72px);
  padding-top: 48px; padding-bottom: 48px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,175,28,0.15);
  border: 1px solid rgba(242,178,51,0.35);
  color: #F7D07A; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; padding: 6px 14px 6px 8px;
  border-radius: 100px; margin-bottom: 28px;
  font-family: 'Lato', sans-serif;
}
.hero-badge-dot {
  width: 8px; height: 8px; background: var(--gold);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900; color: var(--white);
  line-height: 1.1; margin-bottom: 24px;
  font-family: 'Playfair Display', serif;
}
.hero-title .accent { color: var(--gold); font-style: italic; }
.hero-subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,0.70);
  max-width: 520px; margin-bottom: 40px; line-height: 1.75;
  font-family: 'Lato', sans-serif; font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex; gap: 40px; padding-top: 32px;
  border-top: 1px solid rgba(245,175,28,0.2);
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.hero-stat-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
  margin-top: 4px; line-height: 1.4;
}

/* Hero right visual */
.hero-right { position: relative; }
.hero-visual { position: relative; height: 480px; }
.hero-main-card {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(242,178,51,0.08);
  border: 1px solid rgba(242,178,51,0.25);
  backdrop-filter: blur(16px);
  border-radius: 20px; padding: 32px;
  width: 280px; text-align: center;
}
.hero-main-card .icon-circle {
  width: 72px; height: 72px; background: var(--gold);
  border-radius: 50%; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
}
.hero-main-card .icon-circle svg { width: 36px; height: 36px; color: var(--primary); }
.hero-main-card h4 { color: white; font-size: 1rem; margin-bottom: 8px; }
.hero-main-card p { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.5; }

.float-badge {
  position: absolute; background: white; border-radius: 12px;
  padding: 12px 16px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
  animation: float 4s ease-in-out infinite;
}
.float-badge:nth-child(2) { top: 8%; right: -5%; animation-delay: 0s; }
.float-badge:nth-child(3) { top: 38%; left: -12%; animation-delay: 1s; }
.float-badge:nth-child(4) { bottom: 12%; right: -8%; animation-delay: 2s; }
.float-badge:nth-child(5) { bottom: 28%; left: -5%; animation-delay: 1.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.float-badge .badge-icon {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.float-badge .badge-icon svg { width: 20px; height: 20px; }
.float-badge .badge-label { font-size: 0.72rem; color: var(--slate); line-height: 1.3; font-family: 'Lato', sans-serif; }
.float-badge .badge-value { font-size: 0.9rem; font-weight: 700; color: var(--navy); font-family: 'Playfair Display', serif; }

/* ══ TRUST BAR ════════════════════════════════════════ */
.trust-bar {
  background: var(--primary);
  padding: 20px 0;
  border-top: 1px solid rgba(245,175,28,0.15);
}
.trust-items {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem; font-weight: 700;
  font-family: 'Lato', sans-serif;
}
.trust-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* ══ WHY INDIA ════════════════════════════════════════ */
.why-india { background: var(--bg); }
.stat-cards {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 20px; margin-bottom: 48px;
}
.stat-card {
  background: white; border-radius: var(--radius);
  padding: 28px 20px; text-align: center;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  transition: var(--transition);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stat-card .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700;
  color: var(--primary); line-height: 1; margin-bottom: 8px;
}
.stat-card .label { font-size: 0.82rem; color: var(--charcoal); line-height: 1.4; font-family: 'Lato', sans-serif; }
.stat-card .source { font-size: 0.68rem; color: var(--slate); margin-top: 6px; font-style: italic; }

/* ══ SPECIALTIES ══════════════════════════════════════ */
.specialties-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.spec-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px 28px; border: 1px solid var(--border);
  box-shadow: var(--shadow); transition: var(--transition);
  position: relative; overflow: hidden;
}
.spec-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0); transition: var(--transition);
}
.spec-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.spec-card:hover::before { transform: scaleX(1); }
.spec-icon {
  width: 56px; height: 56px; background: #E0F4F6;
  border-radius: 14px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px; transition: var(--transition);
}
.spec-icon svg { width: 28px; height: 28px; color: var(--primary); }
.spec-card:hover .spec-icon { background: var(--secondary); }
.spec-card:hover .spec-icon svg { color: white; }
.spec-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--navy); }
.spec-card p { font-size: 0.88rem; color: var(--charcoal); line-height: 1.65; margin-bottom: 16px; }
.spec-procedures { display: flex; flex-wrap: wrap; gap: 6px; }
.proc-tag {
  font-size: 0.72rem; font-weight: 700;
  background: #E0F4F6; color: var(--primary);
  padding: 3px 10px; border-radius: 100px;
  font-family: 'Lato', sans-serif;
}
.spec-card:hover .proc-tag { background: #FEF3D0; color: var(--gold-dark); }
.spec-cost { font-size: 0.85rem; color: var(--navy); font-weight: 700; margin-top: 14px; font-family: 'Lato', sans-serif; }
.spec-cost span { color: var(--secondary); font-weight: 900; }

/* ══ HOW IT WORKS ═════════════════════════════════════ */
.how-it-works {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
}
.how-it-works h2 { color: white; }
.how-it-works .section-header p { color: rgba(255,255,255,0.65); }
.steps-grid {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 0; position: relative; margin-top: 56px;
}
.steps-grid::before {
  content: ''; position: absolute;
  top: 32px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(245,175,28,0.2));
}
.step { text-align: center; padding: 0 16px; position: relative; z-index: 2; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 20px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700; color: var(--primary);
  box-shadow: 0 0 0 8px rgba(245,175,28,0.15);
}
.step h4 { color: white; font-size: 0.95rem; margin-bottom: 8px; font-family: 'Playfair Display', serif; }
.step p { font-size: 0.82rem; color: rgba(255,255,255,0.55); font-family: 'Lato', sans-serif; }

/* ══ MARKETS ══════════════════════════════════════════ */
.markets { background: var(--bg); }
.markets-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.market-card {
  background: white; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--border); transition: var(--transition);
}
.market-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.market-header {
  padding: 24px; display: flex; align-items: center;
  gap: 16px; background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.market-flag {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; flex-shrink: 0;
}
.market-phase {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: white; padding: 3px 10px;
  border-radius: 100px; margin-bottom: 4px; display: inline-block;
  font-family: 'Lato', sans-serif;
}
.market-header h3 { font-size: 1.05rem; color: var(--navy); }
.market-body { padding: 20px 24px 24px; }
.market-body p { font-size: 0.88rem; color: var(--charcoal); margin-bottom: 16px; line-height: 1.65; }
.market-facts { display: flex; flex-direction: column; gap: 8px; }
.market-fact {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.82rem; color: var(--charcoal); font-family: 'Lato', sans-serif;
}
.market-fact svg { width: 14px; height: 14px; color: var(--secondary); flex-shrink: 0; margin-top: 2px; }

/* ══ HOSPITALS ════════════════════════════════════════ */
.hospitals { background: white; }
.hospital-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.hospital-card {
  background: var(--bg); border-radius: var(--radius);
  padding: 28px; border: 1px solid var(--border); transition: var(--transition);
}
.hospital-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.hospital-logo-placeholder {
  width: 56px; height: 56px; background: var(--primary);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 16px;
}
.hospital-logo-placeholder svg { width: 28px; height: 28px; color: #A8DDD9; }
.hospital-card h4 { font-size: 1rem; margin-bottom: 4px; color: var(--navy); }
.hospital-card .city { font-size: 0.82rem; color: var(--slate); margin-bottom: 14px; font-family: 'Lato', sans-serif; }
.hospital-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.hosp-tag { font-size: 0.72rem; padding: 3px 10px; border-radius: 100px; font-weight: 700; font-family: 'Lato', sans-serif; }
.tag-jci  { background: #E0F4F6; color: var(--primary); }
.tag-nabh { background: #E0F4F6; color: var(--secondary); }
.tag-spec { background: #FEF3D0; color: var(--gold-dark); }
.hosp-view-all { text-align: center; margin-top: 40px; }

/* ══ MATURITY ═════════════════════════════════════════ */
.maturity { background: var(--bg); }
.maturity-stages { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.stage-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.stage-header { padding: 28px; text-align: center; }
.stage-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 700; opacity: 0.25; line-height: 1; margin-bottom: 4px;
}
.stage-header h3 { font-size: 1.05rem; margin-bottom: 4px; }
.stage-header .period { font-size: 0.8rem; opacity: 0.75; font-family: 'Lato', sans-serif; }
.stage-body { background: white; padding: 24px 28px; }
.stage-items { display: flex; flex-direction: column; gap: 10px; }
.stage-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: var(--charcoal); font-family: 'Lato', sans-serif;
}
.stage-item svg { width: 16px; height: 16px; color: var(--secondary); flex-shrink: 0; margin-top: 2px; }
.stage-metric {
  margin-top: 20px; background: #E0F4F6; border-radius: 8px;
  padding: 10px 16px; font-size: 0.82rem; font-weight: 700;
  color: var(--primary); text-align: center; font-family: 'Lato', sans-serif;
}

/* Stage header gradients */
.maturity-stages .stage-card:nth-child(1) .stage-header { background: linear-gradient(135deg, var(--secondary), #2AADA8); color: white; }
.maturity-stages .stage-card:nth-child(1) .stage-header h3 { color: white; }
.maturity-stages .stage-card:nth-child(2) .stage-header { background: linear-gradient(135deg, #F5AF1C, #D4960F); color: var(--primary); }
.maturity-stages .stage-card:nth-child(2) .stage-header h3 { color: var(--primary); }
.maturity-stages .stage-card:nth-child(2) .stage-metric { background: #FEF3D0; color: var(--gold-dark); }
.maturity-stages .stage-card:nth-child(3) .stage-header { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; }
.maturity-stages .stage-card:nth-child(3) .stage-header h3 { color: white; }

/* ══ ENQUIRY ══════════════════════════════════════════ */
.enquiry-section {
  background: linear-gradient(150deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative; overflow: hidden;
}
.enquiry-section::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(27,143,138,0.25), transparent 70%);
}
.enquiry-section::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--gold), var(--gold-dark));
}
.enquiry-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; position: relative; z-index: 2;
}
.enquiry-left h2 { color: white; margin-bottom: 16px; }
.enquiry-left p { color: rgba(255,255,255,0.70); font-size: 1.05rem; margin-bottom: 32px; }
.enquiry-perks { display: flex; flex-direction: column; gap: 14px; }
.enquiry-perk {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.92rem; color: rgba(255,255,255,0.75); font-family: 'Lato', sans-serif;
}
.enquiry-perk svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.enquiry-form {
  background: white; border-radius: 20px;
  padding: 40px; box-shadow: var(--shadow-lg);
}
.enquiry-form h3 { margin-bottom: 24px; font-size: 1.3rem; color: var(--navy); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-size: 0.82rem; font-weight: 700; color: var(--navy);
  font-family: 'Lato', sans-serif; letter-spacing: 0.02em;
}
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-family: 'Lato', sans-serif;
  font-size: 0.92rem; color: var(--charcoal); transition: var(--transition);
  background: var(--bg);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--secondary); background: white;
  box-shadow: 0 0 0 3px rgba(27,143,138,0.12);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit {
  width: 100%; padding: 15px; font-size: 1rem;
  border-radius: var(--radius-sm);
  background: var(--gold); color: var(--primary);
  font-weight: 900; font-family: 'Lato', sans-serif;
  box-shadow: 0 4px 20px rgba(245,175,28,0.40);
  border: none; cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,175,28,0.55);
}

/* ══ TESTIMONIALS ══════════════════════════════════════ */
.testimonials { background: white; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.testimonial-card {
  background: var(--bg); border-radius: var(--radius);
  padding: 32px; border: 1px solid var(--border); position: relative;
}
.testimonial-card::before {
  content: '"'; position: absolute; top: 16px; right: 24px;
  font-family: 'Playfair Display', serif; font-size: 5rem;
  color: var(--gold); opacity: 0.2; line-height: 1;
}
.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.stars svg { width: 16px; height: 16px; color: var(--gold); fill: var(--gold); }
.testimonial-card p {
  font-size: 0.9rem; color: var(--charcoal); font-style: italic;
  margin-bottom: 20px; line-height: 1.75; font-family: 'Lato', sans-serif;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--secondary); display: flex; align-items: center;
  justify-content: center; font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; color: white;
}
.author-name { font-size: 0.88rem; font-weight: 700; color: var(--navy); font-family: 'Lato', sans-serif; }
.author-meta { font-size: 0.78rem; color: var(--slate); font-family: 'Lato', sans-serif; }

/* ══ HEAL STRIP ═══════════════════════════════════════ */
.heal-strip {
  background: linear-gradient(135deg, #FF9933 0%, #FFFFFF 50%, #138808 100%);
  padding: 20px 0;
}
.heal-strip-inner { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.heal-strip p { font-size: 0.88rem; font-weight: 700; color: var(--primary); font-family: 'Lato', sans-serif; }
.heal-badge {
  background: var(--primary); color: var(--gold);
  font-size: 0.78rem; font-weight: 700; padding: 6px 16px;
  border-radius: 100px; letter-spacing: 0.05em; font-family: 'Lato', sans-serif;
}

/* ══ FOOTER ═══════════════════════════════════════════ */
footer { background: linear-gradient(180deg, var(--primary-dark) 0%, #051518 100%); color: white; padding: 64px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.88rem; margin: 16px 0 24px; max-width: 260px; line-height: 1.7; font-family: 'Lato', sans-serif; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,0.08); display: flex;
  align-items: center; justify-content: center; transition: var(--transition);
}
.social-link:hover { background: var(--secondary); }
.social-link svg { width: 18px; height: 18px; color: rgba(255,255,255,0.7); }
.social-link:hover svg { color: white; }
.footer-col h5 {
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 20px; font-family: 'Lato', sans-serif;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: var(--transition); font-family: 'Lato', sans-serif; }
.footer-links a:hover { color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: rgba(255,255,255,0.6); font-family: 'Lato', sans-serif; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  padding: 20px 0; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); font-family: 'Lato', sans-serif; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.35); transition: var(--transition); font-family: 'Lato', sans-serif; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ══ WHATSAPP FLOAT ════════════════════════════════════ */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.wa-btn {
  width: 60px; height: 60px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45); transition: var(--transition); cursor: pointer;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.55); }
.wa-btn svg { width: 30px; height: 30px; color: white; }
.wa-tooltip {
  background: var(--primary); color: white; font-size: 0.8rem;
  padding: 8px 14px; border-radius: 8px; white-space: nowrap;
  opacity: 0; transform: translateX(10px); transition: var(--transition);
  pointer-events: none; font-family: 'Lato', sans-serif;
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* ══ ANIMATIONS ════════════════════════════════════════ */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ══ RESPONSIVE ════════════════════════════════════════ */
@media (max-width: 1024px) {
  .stat-cards { grid-template-columns: repeat(2,1fr); }
  .specialties-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: repeat(3,1fr); gap: 32px; }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta .btn { display: none; }
  .enquiry-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .testimonials-grid, .markets-grid, .hospital-cards, .maturity-stages, .specialties-grid, .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-items { gap: 20px; }
  .section { padding: 64px 0; }
  .stat-cards { grid-template-columns: repeat(2,1fr); }
}
