/* =========================
   Hindu Shaurya Vahini - Nasha Mukti Kendra
   Mobile-first stylesheet
   ========================= */

:root {
  --green-900: #0a3a26;
  --green-800: #0a5c3e;
  --green-700: #117a52;
  --green-500: #1ea96f;
  --gold-500: #c9a227;
  --gold-600: #b08a18;
  --ink-900: #1a1a1a;
  --ink-700: #333;
  --ink-500: #555;
  --ink-300: #888;
  --line: #e6e8ea;
  --bg: #ffffff;
  --bg-soft: #f6f9f7;
  --bg-dark: #0a3a26;
  --wa: #25d366;
  --wa-d: #128c7e;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 6px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 18px 50px rgba(0,0,0,.12);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --maxw: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  color: var(--ink-900);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  /* Space at the bottom for the mobile call bar */
  padding-bottom: 70px;
}
@media (min-width: 900px) { body { padding-bottom: 0; } }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-800); text-decoration: none; }
a:hover { color: var(--green-700); }

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

/* ===== Top strip ===== */
.top-strip {
  background: linear-gradient(90deg, var(--green-900), var(--green-700));
  color: #fff;
  font-size: 13px;
  padding: 8px 0;
}
.top-strip a { color: #fff; font-weight: 600; }
.top-strip-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.ts-item { display: inline-flex; align-items: center; gap: 6px; }
@media (max-width: 600px) { .ts-hide-mobile { display: none; } }

/* ===== Header ===== */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid var(--gold-500);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  gap: 10px;
}
.brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.brand-logo { width: 50px; height: 50px; object-fit: contain; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.brand-name { font-weight: 800; font-size: 17px; color: var(--green-900); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.brand-tag { font-size: 11px; color: var(--ink-500); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px; height: 24px;
  background: none; border: none;
  cursor: pointer; padding: 0;
}
.menu-toggle span {
  display: block; height: 3px; background: var(--green-800); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

.main-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(85%, 320px);
  background: #fff;
  transform: translateX(100%);
  transition: transform .35s ease;
  padding: 80px 24px 24px;
  box-shadow: -10px 0 40px rgba(0,0,0,.15);
  overflow-y: auto;
  z-index: 90;
}
.main-nav.open { transform: translateX(0); }
.main-nav ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.main-nav a {
  display: block;
  padding: 12px 14px;
  color: var(--ink-900);
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
}
.main-nav a:hover, .main-nav a.active { background: var(--bg-soft); color: var(--green-800); }
.main-nav a.nav-cta {
  background: var(--green-700); color: #fff; text-align: center; margin-top: 8px;
}
.main-nav a.nav-cta:hover { background: var(--green-800); color: #fff; }

@media (min-width: 900px) {
  .menu-toggle { display: none; }
  .main-nav {
    position: static; transform: none; width: auto; padding: 0; box-shadow: none; background: transparent;
  }
  .main-nav ul { flex-direction: row; align-items: center; gap: 4px; }
  .main-nav a { padding: 8px 12px; font-size: 15px; }
  .main-nav a.nav-cta { margin-top: 0; padding: 10px 16px; }
  .brand-name { font-size: 19px; }
  .brand-tag { font-size: 12px; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  text-align: center;
  min-height: 48px;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary { background: var(--green-700); color: #fff; }
.btn-primary:hover { background: var(--green-800); color: #fff; }
.btn-whatsapp { background: var(--wa); color: #fff; }
.btn-whatsapp:hover { background: var(--wa-d); color: #fff; }
.btn-light { background: #fff; color: var(--green-800); }
.btn-light:hover { background: #f0f0f0; color: var(--green-900); }
.btn-outline { background: transparent; color: var(--green-800); border-color: var(--green-700); }
.btn-outline:hover { background: var(--green-700); color: #fff; }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 50px 0 60px;
  background: linear-gradient(135deg, #f6fbf8 0%, #eaf6ef 50%, #ddf0e3 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(30,169,111,0.18), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(201,162,39,0.12), transparent 50%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.hero-badge {
  display: inline-block;
  background: rgba(17,122,82,0.1);
  color: var(--green-800);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(28px, 7vw, 48px);
  line-height: 1.2;
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 16px;
}
.grad-text {
  background: linear-gradient(90deg, var(--green-700), var(--gold-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--ink-500);
  margin-bottom: 24px;
  max-width: 640px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(17,122,82,0.15);
  max-width: 640px;
}
.trust-item { text-align: center; }
.trust-item strong {
  display: block;
  font-size: clamp(18px, 4vw, 26px);
  color: var(--green-800);
  font-weight: 800;
  line-height: 1.1;
}
.trust-item span {
  font-size: clamp(11px, 2vw, 13px);
  color: var(--ink-500);
}

@media (min-width: 900px) {
  .hero { padding: 90px 0 100px; }
}

/* ===== Section common ===== */
section { padding: 50px 0; }
@media (min-width: 900px) { section { padding: 80px 0; } }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}
.section-head .eyebrow {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--gold-600);
  font-weight: 700;
  margin-bottom: 8px;
}
.section-head h2 {
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 10px;
  line-height: 1.25;
}
.section-head p { color: var(--ink-500); font-size: 16px; }
.section-head.light .eyebrow { color: var(--gold-500); }
.section-head.light h2, .section-head.light p { color: #fff; }

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

/* ===== Highlights ===== */
.highlights { background: var(--bg-soft); }
.hl-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) { .hl-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .hl-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

.hl-card {
  background: #fff;
  padding: 24px 20px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--line);
  transition: transform .3s, box-shadow .3s;
}
.hl-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.hl-icon { font-size: 40px; margin-bottom: 12px; }
.hl-card h3 { font-size: 17px; color: var(--green-800); margin-bottom: 8px; }
.hl-card p { font-size: 14px; color: var(--ink-500); }

/* ===== About Doctor (Premium professional treatment) ===== */
.about-doctor { background: #fff; position: relative; overflow: hidden; }
.about-doctor::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.08), transparent 70%);
  z-index: 0;
}
.about-doctor::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17,122,82,0.08), transparent 70%);
  z-index: 0;
}
.about-doctor .container { position: relative; z-index: 1; }

.doctor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .doctor-grid { grid-template-columns: 460px 1fr; gap: 60px; }
}
@media (min-width: 1100px) {
  .doctor-grid { grid-template-columns: 500px 1fr; gap: 70px; }
}

/* Premium photo card — full width on mobile */
.doctor-photo-wrap {
  position: relative;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding-top: 20px;
  padding-bottom: 40px;
}
@media (max-width: 599px) {
  /* Edge-to-edge bleed effect on phones */
  .doctor-photo-wrap {
    padding-top: 12px;
    padding-bottom: 30px;
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
    max-width: calc(100% + 40px);
  }
  .doctor-photo-frame { border-radius: 0; padding: 4px 4px 0; background: transparent; box-shadow: 0 12px 30px rgba(10,58,38,0.25); }
  .doctor-photo-inner { border-radius: 0; aspect-ratio: 1289 / 768; }
  .doctor-cred-badge.b1 { top: 12px; left: 12px; }
  .doctor-cred-badge.b2 { top: 50%; right: 12px; }
  .doctor-cred-badge.b3 { display: none; }
}
@media (min-width: 600px) and (max-width: 899px) {
  .doctor-photo-wrap { max-width: 520px; }
}
@media (min-width: 900px) {
  .doctor-photo-wrap { max-width: 460px; }
}
@media (min-width: 1100px) {
  .doctor-photo-wrap { max-width: 500px; }
}

.doctor-photo-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #1c5e42 0%, #0a3a26 100%);
  padding: 8px;
  box-shadow:
    0 25px 60px rgba(10, 58, 38, 0.35),
    0 0 0 1px rgba(201, 162, 39, 0.4),
    0 0 0 6px rgba(255, 255, 255, 0.95),
    0 0 0 8px rgba(201, 162, 39, 0.6);
}

.doctor-photo-inner {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  /* Match natural image dimensions 1289 x 768 (≈ 5:3) */
  aspect-ratio: 1289 / 768;
  background: #f0f0f0;
}

.doctor-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* Subtle studio enhancement (no zoom — show full image) */
  filter:
    contrast(1.1)
    saturate(1.06)
    brightness(1.05);
  transform: none;
}

/* Soft vignette + warm overlay to simulate studio lighting */
.doctor-photo-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center 30%, transparent 35%, rgba(10, 58, 38, 0.45) 100%),
    linear-gradient(180deg, transparent 55%, rgba(10, 58, 38, 0.55) 100%);
  pointer-events: none;
}

/* Bottom name plate */
.doctor-nameplate {
  position: absolute;
  left: 16px; right: 16px;
  bottom: 16px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 12px 14px;
  text-align: center;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  border: 1px solid rgba(201, 162, 39, 0.3);
}
.doctor-nameplate strong {
  display: block;
  font-size: 15px;
  color: var(--green-900);
  font-weight: 800;
  letter-spacing: 0.3px;
}
.doctor-nameplate span {
  display: block;
  font-size: 11px;
  color: var(--gold-600);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* Floating credential badges */
.doctor-cred-badge {
  position: absolute;
  background: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(10, 58, 38, 0.25);
  font-size: 11px;
  font-weight: 700;
  color: var(--green-800);
  display: flex; align-items: center; gap: 6px;
  z-index: 3;
  border: 2px solid #fff;
  white-space: nowrap;
}
.doctor-cred-badge::before {
  content: '✓';
  background: var(--green-500);
  color: #fff;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px;
  font-weight: 900;
}
.doctor-cred-badge.b1 { top: 5px; left: -10px; transform: rotate(-4deg); }
.doctor-cred-badge.b2 { top: 50%; right: -15px; transform: translateY(-50%) rotate(3deg); }
.doctor-cred-badge.b3 { bottom: 130px; left: -18px; transform: rotate(-3deg); }

@media (max-width: 600px) {
  .doctor-cred-badge.b1 { top: 8px; left: 8px; transform: rotate(-3deg); }
  .doctor-cred-badge.b2 { top: 50%; right: 8px; transform: translateY(-50%) rotate(3deg); }
  .doctor-cred-badge.b3 { bottom: 130px; left: 8px; transform: rotate(-3deg); }
}

/* Verified ribbon */
.doctor-verified {
  position: absolute;
  top: 18px; right: 18px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  display: flex; align-items: center; gap: 5px;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(176, 138, 24, 0.5);
}
.doctor-verified svg { width: 14px; height: 14px; fill: currentColor; }

.doctor-info h3 { font-size: 22px; color: var(--green-800); margin-bottom: 12px; line-height: 1.4; }
.doctor-info h4 { font-size: 16px; color: var(--ink-900); margin: 18px 0 12px; }
.doctor-intro { color: var(--ink-500); margin-bottom: 14px; font-size: 15px; }

.cred-list {
  list-style: none;
  margin-bottom: 24px;
}
.cred-list li {
  position: relative;
  padding: 10px 0 10px 32px;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
  color: var(--ink-700);
}
.cred-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 10px;
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  box-shadow: 0 2px 6px rgba(17, 122, 82, 0.3);
}

/* Quick stats row beside doctor */
.doctor-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0 22px;
}
.doctor-stat {
  background: var(--bg-soft);
  padding: 14px 8px;
  border-radius: var(--radius-sm);
  text-align: center;
  border-top: 3px solid var(--gold-500);
}
.doctor-stat strong {
  display: block;
  font-size: 22px;
  color: var(--green-800);
  font-weight: 800;
  line-height: 1.1;
}
.doctor-stat span {
  font-size: 12px;
  color: var(--ink-500);
}

/* ===== Services preview ===== */
.services-preview { background: var(--bg-soft); }
.srv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 700px) { .srv-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.srv-card {
  background: #fff;
  padding: 22px 18px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--line);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.srv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-500);
}
.srv-emoji { font-size: 36px; margin-bottom: 10px; }
.srv-card h3 { font-size: 16px; color: var(--green-800); margin-bottom: 8px; }
.srv-card p { font-size: 13px; color: var(--ink-500); }

/* ===== Process ===== */
.process {
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  color: #fff;
}
.proc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 700px) { .proc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .proc-grid { grid-template-columns: repeat(4, 1fr); } }

.proc-step {
  background: rgba(255,255,255,0.08);
  padding: 28px 22px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.15);
  transition: background .3s;
}
.proc-step:hover { background: rgba(255,255,255,0.14); }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold-500);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 800;
  margin: 0 auto 16px;
  box-shadow: 0 0 0 6px rgba(201,162,39,0.25);
}
.proc-step h3 { font-size: 17px; margin-bottom: 8px; }
.proc-step p { font-size: 14px; opacity: 0.85; }

/* ===== Testimonials ===== */
.test-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 700px) { .test-grid { grid-template-columns: repeat(3, 1fr); } }

.test-card {
  background: #fff;
  padding: 26px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.test-card::before {
  content: '"';
  position: absolute;
  top: 12px; right: 22px;
  font-size: 70px;
  color: var(--green-500);
  opacity: 0.2;
  line-height: 1;
  font-family: Georgia, serif;
}
.stars { color: var(--gold-500); font-size: 18px; margin-bottom: 10px; letter-spacing: 2px; }
.test-card p { color: var(--ink-700); font-size: 14px; line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.test-user { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-700), var(--gold-500));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 18px;
}
.test-user strong { display: block; font-size: 14px; color: var(--ink-900); }
.test-user span { font-size: 12px; color: var(--ink-500); }

/* ===== CTA Banner ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: #fff;
  padding: 50px 0;
}
.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}
@media (min-width: 800px) {
  .cta-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
.cta-inner h2 { font-size: clamp(20px, 4vw, 28px); margin-bottom: 8px; line-height: 1.3; }
.cta-inner p { opacity: 0.95; font-size: 15px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ===== Footer ===== */
.site-footer {
  background: var(--bg-dark);
  color: #cfd9d3;
  padding: 50px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 600px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 2fr 1fr 1.2fr 1.2fr; gap: 40px; } }

.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { width: 50px; height: 50px; object-fit: contain; }
.footer-brand strong { display: block; color: #fff; font-size: 17px; }
.footer-brand span { font-size: 13px; }
.footer-about { font-size: 14px; opacity: 0.85; line-height: 1.7; }

.site-footer h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 10px;
}
.site-footer h4::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--gold-500);
}
.footer-links { list-style: none; }
.footer-links li { padding: 6px 0; font-size: 14px; }
.footer-links a { color: #cfd9d3; transition: color .2s, padding .2s; display: inline-block; }
.footer-links a:hover { color: var(--gold-500); padding-left: 4px; }

.footer-bottom {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 13px;
  opacity: 0.7;
}

/* ===== Floating WhatsApp (desktop only) ===== */
.float-wa {
  position: fixed;
  bottom: 20px; right: 20px;
  width: 56px; height: 56px;
  background: var(--wa);
  color: #fff;
  border-radius: 50%;
  display: none;
  align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
  z-index: 200;
  animation: pulseWA 2.5s infinite;
  transition: transform .2s;
}
.float-wa:hover { transform: scale(1.08); color: #fff; }
@keyframes pulseWA {
  0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 20px rgba(37,211,102,0.5), 0 0 0 14px rgba(37,211,102,0); }
}
@media (min-width: 900px) { .float-wa { display: flex; } }

/* ===== Mobile Sticky Call Bar — Call Now dominates ===== */
.mobile-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: flex;
  z-index: 250;
  box-shadow: 0 -6px 24px rgba(0,0,0,0.22);
}
.mobile-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 8px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  min-height: 64px;
  transition: filter .2s;
  letter-spacing: 0.3px;
}
.mobile-bar a:active { filter: brightness(0.9); }

/* Call Now takes 2/3 width — primary action */
.mobile-bar .mb-call {
  flex: 2;
  background: linear-gradient(135deg, #16a567 0%, #0a5c3e 60%, #0a3a26 100%);
  position: relative;
  font-size: 17px;
  overflow: hidden;
}
.mobile-bar .mb-call::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.35) 0%, transparent 60%);
  opacity: 0;
  animation: callPulse 1.6s infinite;
}
.mobile-bar .mb-call::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transform: translate(-50%, -50%);
  animation: callRing 1.8s infinite ease-out;
  pointer-events: none;
}
@keyframes callPulse {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}
@keyframes callRing {
  0%   { width: 14px; height: 14px; opacity: 0.7; }
  100% { width: 220px; height: 220px; opacity: 0; }
}

/* WhatsApp gets 1/3 */
.mobile-bar .mb-wa {
  flex: 1;
  background: linear-gradient(135deg, var(--wa), var(--wa-d));
  font-size: 14px;
}
.mobile-bar svg { width: 24px; height: 24px; fill: currentColor; flex-shrink: 0; position: relative; z-index: 2; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25)); }
.mobile-bar span { position: relative; z-index: 2; }
.mobile-bar .mb-call .mb-sub {
  display: block;
  font-size: 10px;
  font-weight: 600;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: -2px;
}
.mobile-bar .mb-call .mb-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.15; }
@media (min-width: 900px) { .mobile-bar { display: none; } }

/* Increase body bottom padding to accommodate larger bar */
@media (max-width: 899px) {
  body { padding-bottom: 80px; }
}

/* ===== Desktop floating contact widget (laptop only) ===== */
.desk-widget {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 90px;
  width: 320px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  border: 1px solid var(--line);
  z-index: 199;
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s, opacity .3s;
}
.desk-widget.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.desk-widget-head {
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  color: #fff;
  padding: 16px 20px;
}
.desk-widget-head h4 { margin: 0; font-size: 16px; font-weight: 700; }
.desk-widget-head p { margin: 4px 0 0; font-size: 12px; opacity: 0.9; }
.desk-widget-body { padding: 16px 20px 20px; }
.desk-widget-body .form-group { margin-bottom: 10px; }
.desk-widget-body .form-group input,
.desk-widget-body .form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  background: var(--bg-soft);
}
.desk-widget-body .form-group textarea { resize: vertical; min-height: 70px; }
.desk-widget-body button { width: 100%; }
.desk-widget-close {
  position: absolute;
  top: 10px; right: 10px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 0;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}
.desk-widget-toggle {
  display: none;
  position: fixed;
  bottom: 20px; right: 20px;
  background: linear-gradient(135deg, var(--green-700), var(--green-800));
  color: #fff;
  border: 0;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(10,58,38,0.4);
  z-index: 200;
  align-items: center;
  gap: 8px;
}
.desk-widget-toggle:hover { transform: translateY(-2px); }
@media (min-width: 900px) {
  .desk-widget-toggle { display: inline-flex; }
  .desk-widget { display: block; }
  /* hide WA float when widget is shown to avoid stacking */
  .float-wa { bottom: 80px; right: 90px; }
}

/* ===== Page banner (inner pages) ===== */
.page-banner {
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  color: #fff;
  padding: 60px 0 50px;
  text-align: center;
}
.page-banner h1 {
  font-size: clamp(26px, 5vw, 40px);
  margin-bottom: 10px;
  font-weight: 800;
}
.breadcrumb { font-size: 14px; opacity: 0.85; }
.breadcrumb a { color: var(--gold-500); }

/* ===== Content sections (inner pages) ===== */
.content-block { padding: 50px 0; }
.content-block h2 {
  font-size: clamp(22px, 4vw, 30px);
  color: var(--green-800);
  margin-bottom: 16px;
  font-weight: 800;
}
.content-block h3 { font-size: 19px; color: var(--green-800); margin: 20px 0 10px; }
.content-block p { color: var(--ink-700); margin-bottom: 14px; }
.content-block ul, .content-block ol { margin: 0 0 16px 22px; color: var(--ink-700); }
.content-block li { margin-bottom: 6px; }

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
}
@media (min-width: 900px) { .two-col { grid-template-columns: 1fr 1fr; gap: 50px; } }

/* ===== Schedule timeline ===== */
.schedule {
  background: var(--bg-soft);
}
.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 28px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(var(--green-700), var(--gold-500));
}
.tl-item {
  position: relative;
  padding: 14px 18px;
  background: #fff;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--green-500);
}
.tl-item::before {
  content: '';
  position: absolute;
  left: -24px; top: 22px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold-500);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--gold-500);
}
.tl-time {
  display: inline-block;
  background: var(--green-700);
  color: #fff;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 6px;
  font-weight: 600;
}
.tl-item h4 { font-size: 15px; color: var(--ink-900); margin: 0; }

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 700px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 1000px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gal-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--bg-soft);
  position: relative;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.gal-item:hover img { transform: scale(1.07); }
.gal-item .caption {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  padding: 16px 12px 10px;
  font-size: 13px;
  font-weight: 600;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.3fr; gap: 40px; } }

.contact-info {
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  color: #fff;
  padding: 30px 26px;
  border-radius: var(--radius);
}
.contact-info h3 { font-size: 22px; margin-bottom: 18px; }
.contact-info ul { list-style: none; }
.contact-info li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px;
}
.contact-info .ci-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.contact-info a { color: #fff; font-weight: 600; }

.contact-form {
  background: #fff;
  padding: 30px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.contact-form h3 { font-size: 22px; color: var(--green-800); margin-bottom: 18px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-700);
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  background: var(--bg-soft);
  transition: border .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--green-700);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 100px; }

.map-wrap {
  margin-top: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--bg-soft);
}

/* Clickable map preview card (no API key needed) */
.map-preview {
  display: block;
  position: relative;
  height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 50%, #81c784 100%);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
}
.map-preview:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* Faux map road pattern */
.map-preview::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, transparent 30%, rgba(255,255,255,0.5) 30%, rgba(255,255,255,0.5) 31%, transparent 31%, transparent 65%, rgba(255,255,255,0.4) 65%, rgba(255,255,255,0.4) 66%, transparent 66%),
    linear-gradient(0deg, transparent 0%, transparent 35%, rgba(255,255,255,0.5) 35%, rgba(255,255,255,0.5) 36%, transparent 36%, transparent 70%, rgba(255,255,255,0.4) 70%, rgba(255,255,255,0.4) 71%, transparent 71%);
  opacity: 0.7;
}

.map-preview-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.map-pin {
  width: 70px;
  height: 70px;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(135deg, #ea4335, #c5221f);
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 12px 30px rgba(234,67,53,0.45);
  position: relative;
  animation: pinBounce 2s infinite;
}
.map-pin::before {
  content: '';
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #fff;
  transform: rotate(45deg);
}
.map-pin::after {
  content: '';
  position: absolute;
  bottom: -50px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 50px; height: 12px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  filter: blur(4px);
}
@keyframes pinBounce {
  0%, 100% { transform: rotate(-45deg) translateY(0); }
  50% { transform: rotate(-45deg) translateY(-8px); }
}

.map-preview h4 {
  font-size: 18px;
  color: var(--green-900);
  margin: 8px 0 4px;
  font-weight: 800;
}
.map-preview p {
  font-size: 13px;
  color: var(--ink-700);
  margin: 0 0 14px;
}
.map-preview .map-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-700);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(17,122,82,0.4);
}
.map-preview:hover .map-btn { background: var(--green-800); }

/* =================================================================
   MOBILE — COMPACT, CONVERSION-FOCUSED  (≤ 599px)
   Tight spacing • Scannable • Fast to "Call Now"
   ================================================================= */
@media (max-width: 599px) {
  body { font-size: 15px; line-height: 1.55; padding-bottom: 76px; }
  .container { padding: 0 16px; }

  /* Hide redundant alert banner — top-strip already has phone */
  .alert-banner { display: none; }

  /* Top strip — single thin call bar */
  .top-strip { padding: 8px 0; background: linear-gradient(90deg, var(--green-800), var(--green-700)); }
  .top-strip-inner { font-size: 12.5px; justify-content: center; gap: 6px; }
  .top-strip a { font-weight: 700; padding: 2px 4px; }

  /* Header — compact sticky */
  .site-header { border-bottom-width: 2px; }
  .header-inner { padding: 8px 14px; gap: 10px; min-height: 56px; }
  .brand { gap: 9px; }
  .brand-logo { width: 40px; height: 40px; }
  .brand-name { font-size: 14.5px; font-weight: 800; line-height: 1.15; }
  .brand-tag { font-size: 10.5px; line-height: 1.2; }
  .menu-toggle { width: 28px; height: 22px; }
  .menu-toggle span { height: 2.5px; }

  /* HERO — fits in one screen, action above the fold */
  .hero {
    padding: 24px 0 32px;
    background: linear-gradient(160deg, #f6fbf8 0%, #eaf6ef 100%);
  }
  .hero-badge {
    font-size: 10.5px;
    padding: 4px 10px;
    margin-bottom: 12px;
    letter-spacing: 0.2px;
  }
  .hero h1 {
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -0.4px;
    margin-bottom: 10px;
    font-weight: 800;
  }
  .hero-sub {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
    color: var(--ink-700);
  }

  /* CTAs — stacked, full-width, primary action prominent */
  .hero-actions {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
  }
  .hero-actions .btn {
    width: 100%;
    min-width: 0;
    padding: 13px 16px;
    font-size: 14.5px;
    min-height: 48px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(17,122,82,0.18);
  }

  /* Trust counters — 2x2 clean, no clutter */
  .trust-row {
    grid-template-columns: 1fr 1fr;
    padding: 12px;
    gap: 4px 8px;
    border-radius: 12px;
    background: #fff;
    border-color: var(--line);
  }
  .trust-item {
    padding: 6px 4px;
    border: 0;
  }
  .trust-item strong {
    font-size: 19px;
    line-height: 1.1;
    color: var(--green-800);
  }
  .trust-item span {
    font-size: 10.5px;
    line-height: 1.2;
    margin-top: 2px;
    display: block;
    color: var(--ink-500);
  }

  /* Section spacing — compact, not cramped */
  section { padding: 36px 0; }
  .section-head { margin-bottom: 22px; }
  .section-head h2 {
    font-size: clamp(15px, 4.2vw, 22px);
    line-height: 1.2;
    margin-bottom: 6px;
    font-weight: 800;
  }
  .section-head p { font-size: 13.5px; line-height: 1.5; }
  .section-head .eyebrow { font-size: 10.5px; letter-spacing: 1.5px; margin-bottom: 6px; }

  /* Trust strip — auto-scrolling marquee on mobile */
  .trust-strip { padding: 10px 0; }
  .trust-strip .container { padding: 0; max-width: none; }
  .trust-strip-inner { overflow: hidden; }
  .ts-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 2px 10px;
    width: max-content;
    animation: ts-marquee 22s linear infinite;
  }
  .ts-track [aria-hidden="true"] { display: inline-flex; }
  @keyframes ts-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  .ts-badge {
    flex: 0 0 auto;
    background: var(--bg-soft);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1.2;
    border: 1px solid var(--line);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .ts-badge .ts-icon { font-size: 14px; }
  .ts-badge strong { display: inline; font-size: 12.5px; color: var(--green-800); }

  /* Highlight cards — compact */
  .hl-grid { gap: 10px; }
  .hl-card {
    padding: 16px 14px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,.04);
    text-align: left;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    align-items: flex-start;
  }
  .hl-card .hl-icon { font-size: 28px; margin: 0; line-height: 1; }
  .hl-card h3 { font-size: 14.5px; margin-bottom: 3px; font-weight: 700; }
  .hl-card p { font-size: 12.5px; line-height: 1.45; color: var(--ink-500); grid-column: 2; }

  /* Addiction image cards — compact */
  .add-grid { gap: 8px; }
  .add-card { aspect-ratio: 4 / 5; box-shadow: 0 4px 12px rgba(0,0,0,0.08); border-radius: 12px; }
  .add-card-text { padding: 10px 8px; }
  .add-card-text h3 { font-size: 11px; margin-bottom: 2px; line-height: 1.2; white-space: nowrap; }
  .add-card-text p { font-size: 10px; line-height: 1.4; opacity: 0.9; }
  .add-card-text .icon { font-size: 18px; margin-bottom: 3px; }

  /* Inside Centre (real photos) */
  .ic-grid { gap: 8px; }
  .ic-item { box-shadow: 0 4px 12px rgba(0,0,0,0.08); border-radius: 12px; }
  .ic-item .ic-cap { padding: 14px 9px 8px; font-size: 11.5px; }
  .ic-item .ic-cap small { font-size: 9.5px; margin-top: 1px; }
  .ic-real-badge { font-size: 8.5px; padding: 2.5px 6px; }

  /* Doctor section — compact */
  .doctor-info h3 { font-size: 17px; line-height: 1.35; margin-bottom: 8px; }
  .doctor-info h4 { font-size: 14.5px; margin: 16px 0 8px; font-weight: 700; }
  .doctor-intro { font-size: 13.5px; line-height: 1.6; margin-bottom: 12px; }
  .cred-list li {
    font-size: 13px;
    padding: 7px 0 7px 28px;
    line-height: 1.45;
  }
  .cred-list li::before { width: 18px; height: 18px; top: 8px; font-size: 11px; }
  .doctor-stats { gap: 8px; margin: 14px 0 18px; }
  .doctor-stat { padding: 10px 4px; border-radius: 10px; }
  .doctor-stat strong { font-size: 18px; }
  .doctor-stat span { font-size: 10.5px; }
  /* Move nameplate below photo on mobile — keeps face fully visible */
  .doctor-nameplate {
    position: static;
    margin: 8px 12px 12px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(10,58,38,0.08);
    border: 1px solid var(--line);
    backdrop-filter: none;
  }
  .doctor-nameplate strong { font-size: 14px; color: var(--green-900); }
  .doctor-nameplate span { font-size: 10.5px; letter-spacing: 1px; color: var(--gold-600); }
  .doctor-cred-badge { font-size: 10px; padding: 5px 10px; }
  /* Hide the inner-photo overlay gradient that darkened the bottom */
  .doctor-photo-inner::after { display: none; }
  /* Restore some vertical breathing for the wrap so nameplate has space */
  .doctor-photo-wrap { padding-bottom: 18px; }

  /* Process / 4 steps — compact */
  .proc-grid { gap: 10px; }
  .proc-step { padding: 18px 16px; border-radius: 12px; }
  .proc-step h3 { font-size: 15px; margin-bottom: 4px; }
  .proc-step p { font-size: 13px; line-height: 1.45; }
  .step-num { width: 42px; height: 42px; font-size: 18px; margin-bottom: 10px; box-shadow: 0 0 0 4px rgba(201,162,39,0.2); }

  /* Callback section — form first on mobile (higher conversion) */
  .callback { padding: 36px 0; background-attachment: scroll; }
  .cb-grid { display: flex; flex-direction: column; gap: 22px; }
  .cb-card { order: -1; }
  .cb-info h2 { font-size: 21px; line-height: 1.25; margin-bottom: 8px; }
  .cb-info p { font-size: 13.5px; line-height: 1.55; margin-bottom: 12px; }
  .cb-info ul li { font-size: 13px; padding: 6px 0 6px 26px; }
  .cb-info ul li::before { width: 18px; height: 18px; font-size: 10.5px; top: 6px; }
  .cb-card { padding: 18px 16px; border-radius: 12px; }
  .cb-card h3 { font-size: 17px; margin-bottom: 4px; }
  .cb-card .cb-sub { font-size: 12.5px; margin-bottom: 14px; }
  .form-group { margin-bottom: 10px; }
  .form-group label { font-size: 12.5px; margin-bottom: 4px; font-weight: 600; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 11px 12px;
    font-size: 14px;
    border-radius: 8px;
    min-height: 44px;
    border-width: 1.5px;
  }
  .form-group textarea { min-height: 70px; }

  /* Big stats — compact */
  .big-stats { padding: 40px 0; }
  .bs-grid { gap: 8px; }
  .bs-item { padding: 16px 6px; border-radius: 12px; }
  .bs-num { font-size: 26px; margin-bottom: 6px; }
  .bs-label { font-size: 10px; letter-spacing: 0.8px; }

  /* Testimonials — compact */
  .test-grid { gap: 12px; }
  .test-card {
    padding: 18px 16px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }
  .stars { font-size: 15px; margin-bottom: 6px; }
  .test-card p { font-size: 13px; line-height: 1.55; margin-bottom: 12px; }
  .test-card::before { font-size: 50px; top: 8px; right: 14px; }
  .avatar { width: 38px; height: 38px; font-size: 15px; }
  .test-user strong { font-size: 13px; }
  .test-user span { font-size: 11px; }

  /* Awards — compact */
  .awards { padding: 28px 0; }
  .awards-head { margin-bottom: 18px; }
  .awards-head h3 { font-size: 11px; letter-spacing: 1.5px; }
  .awards-grid { gap: 12px 10px; }
  .award-item { padding: 8px 6px; }
  .award-item .ico { width: 46px; height: 46px; font-size: 20px; margin-bottom: 6px; box-shadow: 0 4px 10px rgba(201,162,39,0.25); }
  .award-item h4 { font-size: 12px; margin-bottom: 1px; }
  .award-item p { font-size: 10.5px; }

  /* CTA banner — compact */
  .cta-banner { padding: 28px 0; }
  .cta-inner { gap: 14px; }
  .cta-inner h2 { font-size: 19px; line-height: 1.25; margin-bottom: 4px; }
  .cta-inner p { font-size: 13px; }
  .cta-actions { width: 100%; flex-direction: column; gap: 8px; }
  .cta-actions .btn { width: 100%; padding: 12px 16px; font-size: 14px; min-height: 46px; }

  /* Footer — compact */
  .site-footer { padding: 32px 0 0; }
  .footer-grid { gap: 22px; }
  .footer-brand img { width: 42px; height: 42px; }
  .footer-brand strong { font-size: 15.5px; }
  .footer-brand span { font-size: 12px; }
  .footer-about { font-size: 13px; line-height: 1.55; }
  .site-footer h4 { font-size: 14.5px; margin-bottom: 10px; padding-bottom: 8px; }
  .footer-links li { padding: 4px 0; font-size: 13px; }
  .footer-bottom { font-size: 12px; padding: 16px 0; margin-top: 28px; }

  /* Map preview — compact */
  .map-preview { height: 200px; border-radius: 12px; }
  .map-pin { width: 46px; height: 46px; margin-bottom: 12px; }
  .map-pin::before { width: 18px; height: 18px; }
  .map-pin::after { bottom: -36px; width: 36px; height: 8px; }
  .map-preview h4 { font-size: 15px; }
  .map-preview p { font-size: 12px; margin-bottom: 10px; }
  .map-preview .map-btn { padding: 8px 16px; font-size: 12.5px; }

  /* Page banner */
  .page-banner { padding: 28px 0 22px; }
  .page-banner h1 { font-size: 22px; line-height: 1.15; margin-bottom: 4px; }
  .breadcrumb { font-size: 12px; }

  /* Timeline (facility) */
  .timeline { padding-left: 22px; }
  .timeline::before { left: 6px; }
  .tl-item { padding: 10px 12px; border-radius: 8px; margin-bottom: 8px; }
  .tl-item::before { left: -22px; top: 16px; width: 11px; height: 11px; }
  .tl-item h4 { font-size: 13.5px; }
  .tl-time { font-size: 10.5px; padding: 2px 8px; margin-bottom: 4px; }

  /* Services list cards */
  .srv-card { padding: 16px 14px; border-radius: 12px; gap: 12px !important; grid-template-columns: 44px 1fr !important; }
  .srv-card .srv-emoji { font-size: 32px !important; }
  .srv-card h3 { font-size: 14.5px; margin-bottom: 4px; }
  .srv-card p { font-size: 12.5px; line-height: 1.45; }

  /* FAQ */
  .faq-q { padding: 13px 14px; font-size: 13.5px; line-height: 1.35; }
  .faq-a { font-size: 13px; line-height: 1.55; }
  .faq-item.open .faq-a { padding: 0 14px 12px; }

  /* Two-col content (about etc.) */
  .two-col { gap: 24px; }
  .content-block { padding: 32px 0; }
  .content-block h2 { font-size: 21px; margin-bottom: 10px; }
  .content-block h3 { font-size: 16px; margin: 16px 0 8px; }
  .content-block p { font-size: 14px; line-height: 1.6; margin-bottom: 10px; }
  .content-block ul, .content-block ol { font-size: 13.5px; line-height: 1.6; margin-bottom: 12px; }
  .content-block li { margin-bottom: 4px; }

  /* Mobile nav drawer */
  .main-nav { padding: 70px 18px 24px; }
  .main-nav a { padding: 12px 14px; font-size: 15px; border-radius: 10px; }
  .main-nav a.nav-cta { margin-top: 8px; padding: 13px 14px; }

  /* Contact page */
  .contact-grid { gap: 16px; }
  .contact-info { padding: 18px 16px; border-radius: 12px; }
  .contact-info h3 { font-size: 18px; margin-bottom: 10px; }
  .contact-info li { padding: 10px 0; font-size: 13px; gap: 10px; }
  .contact-info .ci-icon { width: 34px; height: 34px; font-size: 15px; }
  .contact-form { padding: 18px 16px; border-radius: 12px; }
  .contact-form h3 { font-size: 18px; }

  /* Center-CTA spacing */
  .center-cta { margin-top: 18px; }
  .center-cta .btn { padding: 12px 22px; font-size: 14px; min-height: 46px; }

  /* Hero visual hidden on mobile (already) — also disable scroll-top crowding bar */
  .scroll-top { right: 12px; bottom: 88px; width: 40px; height: 40px; font-size: 18px; }
}

/* Tablet polish (600 – 899px) */
@media (min-width: 600px) and (max-width: 899px) {
  .container { padding: 0 24px; }
  .hero h1 { font-size: 42px; line-height: 1.1; }
  section { padding: 64px 0; }
  .section-head h2 { font-size: 30px; }
  .trust-row { gap: 14px; }
  .trust-item strong { font-size: 26px; }
  .hero-actions .btn { padding: 15px 24px; }
}

/* ===== Scroll-to-top button ===== */
.scroll-top {
  position: fixed;
  right: 16px;
  bottom: 96px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(10, 58, 38, 0.85);
  color: #fff;
  border: 0;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 240;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  font-size: 20px;
  font-weight: 800;
  backdrop-filter: blur(8px);
  transition: opacity .25s, transform .25s;
}
.scroll-top.show { display: flex; opacity: 1; }
.scroll-top:hover { transform: translateY(-3px); background: var(--green-800); }
@media (min-width: 900px) {
  .scroll-top { bottom: 90px; right: 90px; }
}

/* Transparent logos must keep transparent background */
.brand-logo, .footer-brand img { background: transparent; }

/* ===== Better focus rings for accessibility ===== */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(201, 162, 39, 0.6);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ===== Utility / FAQ ===== */
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  color: var(--ink-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: #fff;
  user-select: none;
}
.faq-q::after {
  content: '+';
  color: var(--green-700);
  font-size: 22px;
  font-weight: 300;
  transition: transform .3s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  color: var(--ink-500);
  font-size: 14px;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-item.open .faq-a { padding: 0 20px 16px; max-height: 400px; }

/* =========================================================
   ENHANCED HOMEPAGE COMPONENTS
   ========================================================= */

/* ===== Hero - 2-column with floating visual card (desktop) ===== */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}
@media (min-width: 1000px) {
  .hero-grid { grid-template-columns: 1.15fr 1fr; gap: 50px; }
}

/* Right-side hero visual */
.hero-visual {
  position: relative;
  display: none;
  height: 480px;
}
@media (min-width: 1000px) { .hero-visual { display: block; } }

.hv-main {
  position: absolute;
  inset: 0;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(10,58,38,0.35);
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
}
.hv-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.9) saturate(1.1);
}
.hv-main::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,58,38,0.65) 100%);
}

.hv-quote {
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.hv-quote small {
  display: block;
  font-size: 12px;
  opacity: 0.85;
  font-weight: 400;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Floating cards around hero visual */
.hv-float {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}
.hv-float strong { display: block; font-size: 14px; color: var(--green-900); line-height: 1.2; }
.hv-float span { font-size: 11px; color: var(--ink-500); }
.hv-float .ico {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.hv-float.f1 { top: -15px; left: -30px; animation-delay: 0s; }
.hv-float.f2 { top: 50%; right: -25px; transform: translateY(-50%); animation-delay: 1.5s; }
.hv-float.f3 { top: 35%; left: -35px; animation-delay: 3s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hv-float.f2 {
  animation-name: floatY;
}
@keyframes floatY {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 10px)); }
}

/* ===== Trust marquee strip ===== */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
}
.trust-strip-inner { overflow: hidden; }
.ts-track {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px 40px;
  text-align: center;
}
.ts-track [aria-hidden="true"] { display: none; }
.ts-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-700);
  font-weight: 600;
}
.ts-badge .ts-icon {
  font-size: 22px;
  color: var(--green-700);
}
.ts-badge strong { color: var(--green-800); }

/* ===== Visual Addictions We Treat ===== */
.addictions {
  background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
}
.add-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (min-width: 700px) { .add-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.add-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform .3s, box-shadow .3s;
}
.add-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.add-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.add-card:hover img { transform: scale(1.08); }
.add-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,58,38,0.1) 0%, rgba(10,58,38,0.85) 100%);
  z-index: 1;
}
.add-card-text {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px;
  color: #fff;
  z-index: 2;
}
.add-card-text .icon { font-size: 26px; margin-bottom: 6px; }
.add-card-text h3 {
  font-size: 16px;
  margin-bottom: 4px;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.add-card-text p {
  font-size: 12px;
  opacity: 0.92;
  margin: 0;
  line-height: 1.4;
}

/* ===== Video / Tour CTA section ===== */
.tour-cta {
  background: linear-gradient(135deg, #f0f7f3 0%, #e0eee5 100%);
}
.tour-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}
@media (min-width: 900px) { .tour-grid { grid-template-columns: 1fr 1fr; gap: 50px; } }

.tour-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}
.tour-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.tour-visual:hover img { transform: scale(1.05); }
.tour-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(10,58,38,0.35);
  z-index: 1;
}
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.5);
  animation: playPulse 2s infinite;
}
.play-btn::after {
  content: '';
  width: 0; height: 0;
  border-left: 22px solid var(--green-800);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 6px;
}
@keyframes playPulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
  100% { box-shadow: 0 0 0 30px rgba(255,255,255,0); }
}
.tour-info h2 { font-size: clamp(24px, 4vw, 32px); color: var(--ink-900); margin-bottom: 14px; line-height: 1.25; }
.tour-info p { color: var(--ink-500); margin-bottom: 18px; }
.tour-info ul { list-style: none; padding: 0; margin-bottom: 22px; }
.tour-info ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--ink-700);
  font-size: 14px;
}
.tour-info ul li::before {
  content: '✓';
  position: absolute; left: 0; top: 8px;
  width: 20px; height: 20px;
  background: var(--green-500);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

/* ===== Big stats counter section ===== */
.big-stats {
  background:
    linear-gradient(135deg, rgba(10,58,38,0.92), rgba(17,122,82,0.92)),
    url('images/centre/yoga.webp') center/cover;
  color: #fff;
  padding: 70px 0;
  text-align: center;
}
.bs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 700px) { .bs-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; } }

.bs-item {
  padding: 22px 12px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(6px);
  transition: transform .3s, background .3s;
}
.bs-item:hover { transform: translateY(-5px); background: rgba(255,255,255,0.1); }
.bs-num {
  font-size: clamp(34px, 6vw, 50px);
  font-weight: 800;
  color: var(--gold-500);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(201,162,39,0.3);
}
.bs-label {
  font-size: 13px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* ===== Awards / Certifications strip ===== */
.awards {
  background: #fff;
  padding: 50px 0;
  border-top: 1px solid var(--line);
}
.awards-head {
  text-align: center;
  margin-bottom: 30px;
}
.awards-head h3 {
  font-size: 14px;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}
.awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 700px) { .awards-grid { grid-template-columns: repeat(4, 1fr); } }

.award-item {
  text-align: center;
  padding: 18px 12px;
  border-radius: var(--radius-sm);
  transition: transform .3s, background .3s;
}
.award-item:hover { transform: scale(1.05); background: var(--bg-soft); }
.award-item .ico {
  width: 64px; height: 64px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(201,162,39,0.3);
}
.award-item h4 {
  font-size: 14px;
  color: var(--green-800);
  margin: 0 0 4px;
  font-weight: 700;
}
.award-item p {
  font-size: 12px;
  color: var(--ink-500);
  margin: 0;
}

/* ===== Enhanced Highlights cards (color tones) ===== */
.hl-card.tone-green { background: linear-gradient(180deg, #fff 0%, #f0faf4 100%); border-top: 3px solid var(--green-500); }
.hl-card.tone-gold  { background: linear-gradient(180deg, #fff 0%, #fdf7e3 100%); border-top: 3px solid var(--gold-500); }
.hl-card.tone-blue  { background: linear-gradient(180deg, #fff 0%, #eaf3f9 100%); border-top: 3px solid #2c7da0; }
.hl-card.tone-rose  { background: linear-gradient(180deg, #fff 0%, #eef2ff 100%); border-top: 3px solid #4c5fbe; }

/* ===== Testimonials with photo avatars ===== */
.test-card .avatar.av-img {
  background: none;
  padding: 0;
  overflow: hidden;
}
.test-card .avatar.av-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* ===== Emergency / Alert banner ===== */
.alert-banner {
  background: linear-gradient(90deg, #ce2935, #a91d28);
  color: #fff;
  padding: 12px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.alert-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: alertSweep 3s linear infinite;
}
@keyframes alertSweep {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}
.alert-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  position: relative;
  z-index: 1;
  font-size: 14px;
  font-weight: 600;
}
.alert-banner a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: #a91d28;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  font-size: 13px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.alert-banner .alert-pulse {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #fff;
  display: inline-block;
  animation: dotPulse 1.5s infinite;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.5);
}
@keyframes dotPulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* ===== Callback request section ===== */
.callback {
  background:
    linear-gradient(135deg, rgba(10,58,38,0.94), rgba(17,122,82,0.94)),
    url('images/centre/counselling.webp') center/cover fixed;
  color: #fff;
  padding: 60px 0;
}
.cb-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}
@media (min-width: 900px) { .cb-grid { grid-template-columns: 1fr 1fr; gap: 50px; } }

.cb-info .eyebrow { color: var(--gold-500); }
.cb-info h2 {
  font-size: clamp(24px, 4vw, 34px);
  color: #fff;
  margin: 8px 0 14px;
  line-height: 1.25;
}
.cb-info p { opacity: 0.92; margin-bottom: 18px; font-size: 15px; }
.cb-info ul { list-style: none; padding: 0; margin: 0; }
.cb-info ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 14px;
}
.cb-info ul li::before {
  content: '✓';
  position: absolute; left: 0; top: 8px;
  width: 20px; height: 20px;
  background: var(--gold-500);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: #fff;
}

.cb-card {
  background: #fff;
  color: var(--ink-900);
  padding: 28px 24px;
  border-radius: var(--radius);
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  border-top: 4px solid var(--gold-500);
}
.cb-card h3 {
  font-size: 20px;
  color: var(--green-800);
  margin-bottom: 6px;
  font-weight: 800;
}
.cb-card .cb-sub {
  color: var(--ink-500);
  font-size: 13px;
  margin-bottom: 18px;
}

/* ===== Inside Our Centre — real photo proof grid ===== */
.inside-centre {
  background: #fff;
}
.ic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 700px) { .ic-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }

.ic-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-md);
  transition: transform .3s, box-shadow .3s;
}
.ic-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.ic-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.ic-item:hover img { transform: scale(1.06); }
.ic-item .ic-cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px 14px 12px;
  background: linear-gradient(180deg, transparent, rgba(10,58,38,0.92));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  z-index: 2;
}
.ic-item .ic-cap small {
  display: block;
  font-size: 10.5px;
  opacity: 0.9;
  font-weight: 500;
  letter-spacing: 0.4px;
  margin-top: 2px;
}
.ic-real-badge {
  position: absolute;
  top: 8px; left: 8px;
  background: rgba(201,162,39,0.95);
  color: #fff;
  font-size: 9.5px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  z-index: 2;
  backdrop-filter: blur(4px);
}

/* ===== Animations ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .8s ease-out both; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

