/* ==========================================================================
       DESIGN SYSTEM & BRAND ARCHITECTURE — SHREE SAINATH HOSPITAL
       Custom Palette: Deep Prussian Navy + Surgical Azure + Amber Gold + Clean White
       ========================================================================== */
:root {
  --brand-navy: #0a1e3b;
  --brand-navy-deep: #061326;
  --brand-blue: #1d63d8;
  --brand-blue-hover: #154eb3;
  --brand-blue-soft: #eef4ff;
  --brand-teal: #0d9488;
  --brand-teal-soft: #f0fdfa;
  --brand-gold: #e5a108;
  --brand-gold-soft: #fef9e7;
  --brand-coral: #ee6401;
  --brand-coral-hover: #d35400;
  --brand-whatsapp: #25d366;
  --brand-whatsapp-hover: #1ebe5d;

  --text-main: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  --bg-page: #f8fafc;
  --bg-surface: #ffffff;
  --bg-alt: #f1f5f9;
  --border-subtle: #e2e8f0;
  --border-medium: #cbd5e1;

  --shadow-subtle: 0 2px 6px rgba(15, 23, 42, 0.05);
  --shadow-card:
    0 10px 25px -3px rgba(15, 23, 42, 0.07),
    0 4px 6px -2px rgba(15, 23, 42, 0.03);
  --shadow-hover:
    0 20px 35px -5px rgba(29, 99, 216, 0.12),
    0 10px 10px -5px rgba(15, 23, 42, 0.04);
  --shadow-cta: 0 6px 20px rgba(238, 100, 1, 0.35);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;

  --font-display:
    "Plus Jakarta Sans", "Noto Sans Devanagari", -apple-system, sans-serif;
  --font-body: "Inter", "Noto Sans Devanagari", -apple-system, sans-serif;
  --font-marathi: "Noto Sans Devanagari", "Inter", sans-serif;

  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg-page);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 60px;
  /* Essential clearance for mobile floating dock */
}
.mb-2 {
  margin-bottom: 20px !important;
}
@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button,
input,
select,
textarea {
  font: inherit;
}

/* Bilingual Toggle Classes */
body.lang-en .lang-mr {
  display: none !important;
}

body.lang-mr .lang-en {
  display: none !important;
}

body.lang-mr {
  font-family: var(--font-marathi);
  line-height: 1.7;
}

body.lang-mr h1,
body.lang-mr h2,
body.lang-mr h3 {
  font-family: var(--font-marathi);
  line-height: 1.35;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}

/* Clean, Human-Crafted Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--text-main);
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.badge-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.775rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-blue);
  background: var(--brand-blue-soft);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(29, 99, 216, 0.15);
  margin-bottom: 12px;
}

.badge-eyebrow svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.section-title {
  font-size: clamp(1.6rem, 2.5vw + 0.5rem, 2.25rem);
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: clamp(0.925rem, 1.1vw + 0.4rem, 1.05rem);
  color: var(--text-muted);
  max-width: 720px;
  line-height: 1.6;
}

/* Proportioned Medium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  min-height: 40px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: none;
  transition: var(--transition-fast);
  text-align: center;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn-cta {
  background: var(--brand-coral);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(238, 100, 1, 0.28);
}

.btn-cta:hover,
.btn-cta:active {
  background: var(--brand-coral-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(238, 100, 1, 0.38);
}

.btn-primary {
  background: var(--brand-blue);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(29, 99, 216, 0.22);
}

.btn-primary:hover,
.btn-primary:active {
  background: var(--brand-blue-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background: #ffffff;
  color: var(--brand-navy);
  border: 1.5px solid var(--border-medium);
}

.btn-outline:hover,
.btn-outline:active {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  background: var(--brand-blue-soft);
}

.btn-whatsapp {
  background: var(--brand-whatsapp);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.26);
}

.btn-whatsapp:hover,
.btn-whatsapp:active {
  background: var(--brand-whatsapp-hover);
  transform: translateY(-1px);
}

.btn-sm {
  min-height: 32px;
  padding: 5px 12px;
  font-size: 0.775rem;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
       TOP ANNOUNCEMENT SLIDER TICKER
       ========================================================================== */
.top-announcement-strip {
  background: var(--brand-navy-deep);
  color: #ffffff;
  font-size: 0.775rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1001;
}

.top-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.top-ticker-wrapper {
  flex: 1;
  position: relative;
  height: 22px;
  overflow: hidden;
}

.top-ticker-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.top-ticker-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  pointer-events: none;
}

.top-ticker-item.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.top-ticker-tag {
  background: rgba(229, 161, 8, 0.25);
  color: #fcd34d;
  font-weight: 700;
  font-size: 0.7rem;
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}

.top-ticker-text {
  color: #e2e8f0;
  font-size: 0.775rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-ticker-controls {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.ticker-ctrl-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.8rem;
  line-height: 1;
  transition: var(--transition-fast);
}

.ticker-ctrl-btn:hover {
  background: var(--brand-blue);
}

/* ==========================================================================
       SITE HEADER & ADAPTIVE NAV
       ========================================================================== */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-subtle);
}

.header-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  gap: 12px;
}

.header-brand-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-brand-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
}

@media (min-width: 576px) {
  .header-brand-logo {
    height: 48px;
  }
}

/* Desktop Navigation & Toggle */
.header-right-deck {
  display: flex;
  align-items: center;
  gap: 10px;
}

.desktop-lang-switcher {
  display: inline-flex;
  align-items: center;
  background: #f8fafc;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-pill);
  padding: 3px 6px;
  gap: 3px;
}

.lang-tab-btn {
  border: none;
  background: transparent;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.775rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
  min-height: 28px;
}

.lang-tab-btn.active {
  background: var(--brand-blue);
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(29, 99, 216, 0.3);
}

@media (max-width: 991px) {
  .desktop-lang-switcher {
    display: none !important;
  }

  #header-cta-book {
    display: none !important;
  }
}

/* Unique Floating Right-Edge Language Switcher (Mobile) */
.mobile-edge-lang-dock {
  position: fixed;
  top: 92px;
  right: 0;
  z-index: 9990;
  background: var(--brand-navy);
  border: 1.5px solid rgba(229, 161, 8, 0.5);
  border-right: none;
  border-radius: 20px 0 0 20px;
  padding: 3px 6px 3px 9px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  box-shadow: -3px 4px 14px rgba(10, 30, 59, 0.35);
  user-select: none;
}

@media (min-width: 992px) {
  .mobile-edge-lang-dock {
    display: none !important;
  }
}

.edge-lang-globe {
  font-size: 0.8rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.edge-lang-btn {
  border: none;
  background: transparent;
  padding: 3px 7px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.725rem;
  font-weight: 700;
  color: #94a3b8;
  cursor: pointer;
  transition: var(--transition-fast);
}

.edge-lang-btn.active {
  background: var(--brand-blue);
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(29, 99, 216, 0.45);
}

.edge-lang-sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.7rem;
}

/* ==========================================================================
       SECTION 1: HERO (ATTENTION) — ASYMMETRIC MEDICAL ARCHITECTURE
       ========================================================================== */
.hero-stage {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f1f6fd 65%, #e9f1fc 100%);
  padding-top: 26px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--border-subtle);
}

.hero-split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-stage {
    padding-top: 46px;
    padding-bottom: 56px;
  }

  .hero-split-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 36px;
  }
}

.hero-headline {
  font-size: clamp(1.85rem, 3.4vw + 0.4rem, 2.85rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--brand-navy);
  margin-bottom: 14px;
}

.hero-headline .text-gradient {
  background: linear-gradient(135deg, var(--brand-blue) 0%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-lead-text {
  font-size: clamp(0.925rem, 1.1vw + 0.4rem, 1.05rem);
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* 4 Value Pillars in Hero */
.hero-value-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 22px;
}

@media (max-width: 480px) {
  .hero-value-cards {
    grid-template-columns: 1fr;
  }
}

.hero-value-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 9px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-navy);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 5px rgba(15, 23, 42, 0.03);
}

.val-check-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.hero-action-deck {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

@media (min-width: 480px) {
  .hero-action-deck {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-action-deck .btn {
    flex: 1;
    min-width: 140px;
  }
}

.hero-location-notice {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.hero-location-notice svg {
  width: 15px;
  height: 15px;
  fill: var(--brand-blue);
  flex-shrink: 0;
}

/* Bespoke Interactive Quick Consultation Card (Right Column) */
.hero-interactive-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow-card);
  border: 1.5px solid rgba(29, 99, 216, 0.16);
  position: relative;
}

@media (min-width: 576px) {
  .hero-interactive-card {
    padding: 26px 24px;
  }
}

.card-top-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.live-desk-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-teal-soft);
  color: var(--brand-teal);
  font-size: 0.725rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
}

.live-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-teal);
  animation: pulseTeal 1.8s infinite;
}

@keyframes pulseTeal {
  0% {
    box-shadow: 0 0 0 0 rgba(13, 148, 136, 0.7);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(13, 148, 136, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(13, 148, 136, 0);
  }
}

.interactive-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 4px;
}

.interactive-card-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.form-row {
  margin-bottom: 12px;
}

.form-label-txt {
  display: block;
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 4px;
}

.form-input-field,
.form-select-field {
  width: 100%;
  height: 40px;
  padding: 8px 12px;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--text-main);
  background: #ffffff;
  transition: var(--transition-fast);
  outline: none;
}

.form-input-field:focus,
.form-select-field:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(29, 99, 216, 0.15);
}

.form-disclaimer {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* Hero Authentic Surgical OT Thumbnail */
.hero-surgical-proof-thumb {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 18px;
  border: 2px solid #ffffff;
  box-shadow: var(--shadow-subtle);
}

.hero-ot-img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero-surgical-proof-thumb:hover .hero-ot-img {
  transform: scale(1.03);
}

.ot-caption-glass {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    0deg,
    rgba(10, 30, 59, 0.92) 0%,
    rgba(10, 30, 59, 0) 100%
  );
  color: #ffffff;
  font-size: 0.725rem;
  padding: 14px 10px 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
       TRUST METRICS STRIP (COUNT-UP GSAP READY)
       ========================================================================== */
.metrics-ribbon {
  background: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
  padding: 18px 0;
}

.metrics-ribbon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 768px) {
  .metrics-ribbon-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.metric-badge-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: var(--bg-alt);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.metric-ico-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.metric-number-bold {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1.1;
}

.metric-caption-txt {
  font-size: 0.725rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ==========================================================================
       SECTION 2: SYMPTOMS / PROBLEM — MOBILITY IMPACT ASSESSMENT
       ========================================================================== */
.section-symptoms-layout {
  padding: 48px 0;
  background: #ffffff;
}

.symptoms-split-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 26px;
}

@media (min-width: 992px) {
  .symptoms-split-wrap {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 36px;
    align-items: start;
  }
}

.symptom-items-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 576px) {
  .symptom-items-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.symptom-impact-card {
  background: var(--bg-page);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: var(--transition-fast);
}

.symptom-impact-card:hover {
  border-color: var(--brand-blue);
  background: var(--brand-blue-soft);
  transform: translateY(-2px);
}

.symptom-alert-badge {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fee2e2;
  color: #dc2626;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.symptom-name-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.4;
}

/* Clinical Decision Guidance Box */
.clinical-guidance-card {
  background: linear-gradient(135deg, var(--brand-navy) 0%, #15325b 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  box-shadow: var(--shadow-card);
}

.guidance-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(229, 161, 8, 0.2);
  color: #fcd34d;
  font-size: 0.725rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.guidance-heading {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.guidance-body-txt {
  color: #cbd5e1;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.guidance-alert-quote {
  background: rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--brand-gold);
  padding: 10px 14px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.8rem;
  color: #e2e8f0;
  margin-bottom: 18px;
}

/* ==========================================================================
       SECTION 3: TREATMENT OPTIONS — INTERACTIVE TABBED CLINICAL SUITE
       ========================================================================== */
.section-treatments-suite {
  padding: 48px 0;
  background: var(--bg-page);
}

.treatments-tab-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: none;
  margin-top: 24px;
  margin-bottom: 20px;
}

.treatments-tab-nav::-webkit-scrollbar {
  display: none;
}

.treatment-nav-pill {
  background: #ffffff;
  border: 1.5px solid var(--border-medium);
  color: var(--text-body);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.treatment-nav-pill.active {
  background: var(--brand-blue);
  color: #ffffff;
  border-color: var(--brand-blue);
  box-shadow: 0 4px 12px rgba(29, 99, 216, 0.28);
}

.treatment-pane-box {
  display: none;
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-card);
  animation: fadeInPane 0.3s ease;
}

.treatment-pane-box.active {
  display: block;
}

@keyframes fadeInPane {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pane-header-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
}

.pane-title-badge {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-navy);
}

.pane-clinical-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .pane-clinical-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }
}

.pane-body-desc {
  font-size: 0.8875rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 16px;
}

.pane-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.pane-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.825rem;
  color: var(--brand-navy);
  font-weight: 600;
}

.pane-feature-item svg {
  width: 14px;
  height: 14px;
  fill: var(--brand-teal);
  flex-shrink: 0;
}

.pane-visual-card {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  text-align: center;
}

.pane-visual-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.pane-visual-label {
  padding: 8px 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Decision Pathway Flowchart */
.pathway-flowchart-card {
  margin-top: 28px;
  background: #ffffff;
  border: 1.5px solid rgba(29, 99, 216, 0.2);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  text-align: center;
  box-shadow: var(--shadow-subtle);
}

.flowchart-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 14px;
}

.flowchart-steps-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.flowchart-step-pill {
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 0.775rem;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(29, 99, 216, 0.18);
}

.flowchart-arrow {
  color: var(--text-light);
  font-weight: 800;
  font-size: 0.85rem;
}

/* ==========================================================================
       SECTION 4: CARE JOURNEY & RECOVERY ROADMAP
       ========================================================================== */
.section-journey-roadmap {
  padding: 48px 0;
  background: #ffffff;
}

.journey-stepper-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 24px;
}

@media (min-width: 576px) {
  .journey-stepper-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .journey-stepper-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stepper-card-box {
  background: var(--bg-page);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  position: relative;
  transition: var(--transition-fast);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.stepper-card-box:hover {
  border-color: var(--brand-blue);
  background: #ffffff;
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.step-index-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-blue);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
  align-self: flex-start;
}

.step-name-bold {
  font-size: 1rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 6px;
}

.step-detail-txt {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Recovery Milestones Panel */
.recovery-milestones-card {
  margin-top: 32px;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1.5px solid #86efac;
  border-radius: var(--radius-lg);
  padding: 24px 20px;
}

.milestone-heading {
  font-size: 1.15rem;
  font-weight: 800;
  color: #166534;
  margin-bottom: 6px;
}

.milestone-desc {
  font-size: 0.85rem;
  color: #15803d;
  line-height: 1.6;
}

.recovery-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 16px;
}

@media (min-width: 768px) {
  .recovery-pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.recovery-pillar-tag {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(22, 101, 52, 0.2);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #166534;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
       SECTION 5: TRUST — 7 PILLARS OF EXCELLENCE
       ========================================================================== */
.section-pillars-trust {
  padding: 48px 0;
  background: var(--bg-page);
}

.hospital-pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 24px;
}

@media (min-width: 576px) {
  .hospital-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .hospital-pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hospital-pillar-card {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-subtle);
}

.hospital-pillar-card:hover {
  border-color: var(--brand-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.pillar-ico-wrap {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-ico-wrap svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.pillar-card-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 4px;
}

.pillar-card-txt {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
       SECTION 6: DOCTOR SPECIALIST PROFILE
       ========================================================================== */
.section-doctor-spotlight {
  padding: 48px 0;
  background: #ffffff;
}

.doctor-spotlight-box {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

@media (min-width: 768px) {
  .doctor-spotlight-box {
    grid-template-columns: 240px 1fr;
    padding: 32px;
    gap: 32px;
  }
}

.doctor-avatar-wrap {
  text-align: center;
}

.doctor-avatar-img {
  width: 100%;
  max-width: 220px;
  height: 250px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-subtle);
  margin: 0 auto;
  border: 3px solid #ffffff;
}

.doctor-tag-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--brand-navy);
  color: var(--brand-gold);
  font-size: 0.725rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-top: 8px;
}

.doctor-name-heading {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 2px;
}

.doctor-post-sub {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 12px;
}

.doctor-qual-row {
  font-size: 0.825rem;
  color: var(--text-body);
  margin-bottom: 12px;
  line-height: 1.55;
}

.expertise-badges-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
  margin-bottom: 16px;
}

.expertise-badge-pill {
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(29, 99, 216, 0.18);
}

/* ==========================================================================
       SECTION 7: REAL FACILITIES GALLERY & PATIENT EXPERIENCES
       ========================================================================== */
.section-proof-gallery {
  padding: 48px 0;
  background: var(--bg-page);
}

.facility-cards-deck {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}

@media (min-width: 576px) {
  .facility-cards-deck {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .facility-cards-deck {
    grid-template-columns: repeat(3, 1fr);
  }
}

.facility-item-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--border-subtle);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition-fast);
}

.facility-item-card:hover {
  transform: translateY(-2px);
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-card);
}

.facility-card-pic {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.facility-item-card:hover .facility-card-pic {
  transform: scale(1.04);
}

.facility-card-body {
  padding: 14px;
  flex-grow: 1;
}

.facility-card-title {
  font-size: 0.925rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 4px;
}

.facility-card-caption {
  font-size: 0.775rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Patient Experiences Testimonial Carousel */
.testimonials-panel-box {
  margin-top: 36px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-subtle);
  padding: 26px 20px;
  box-shadow: var(--shadow-subtle);
}

.testimonial-slide-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .testimonial-slide-track {
    grid-template-columns: repeat(3, 1fr);
  }
}

.patient-quote-card {
  background: var(--bg-alt);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-rating-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.quote-statement-txt {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 12px;
}

.quote-author-row {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.quote-verified-badge {
  font-size: 0.7rem;
  color: var(--brand-teal);
  font-weight: 600;
}

/* ==========================================================================
       SECTION 8: COST TRANSPARENCY & CASHLESS TPA NETWORK
       ========================================================================== */
.section-cost-insurance {
  padding: 48px 0;
  background: #ffffff;
}

.cost-elements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 18px;
  margin-bottom: 26px;
}

@media (min-width: 768px) {
  .cost-elements-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cost-element-pill {
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 10px;
  text-align: center;
}

.cost-element-icon {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.cost-element-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.cashless-banner-dock {
  background: linear-gradient(135deg, var(--brand-navy) 0%, #15325b 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-card);
}

.cashless-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.cashless-title-wrap svg {
  width: 22px;
  height: 22px;
  fill: var(--brand-gold);
}

.cashless-heading-txt {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
}

.cashless-desc-txt {
  font-size: 0.85rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 18px;
}

.insurance-tpa-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tpa-network-tag {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 0.725rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

/* ==========================================================================
       SECTION 9: FAQ ACCORDION (11 QUESTIONS WITH ACCESSIBLE CONTROLS)
       ========================================================================== */
.section-faq-accordion {
  padding: 48px 0;
  background: var(--bg-page);
}

.faq-items-stack {
  max-width: 850px;
  margin: 26px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item-card {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item-card.active {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-subtle);
}

.faq-trigger-btn {
  width: 100%;
  background: transparent;
  border: none;
  padding: 14px 18px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.925rem;
  color: var(--brand-navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  line-height: 1.35;
}

.faq-trigger-btn:hover {
  color: var(--brand-blue);
}

.faq-arrow-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-item-card.active .faq-arrow-circle {
  transform: rotate(180deg);
  background: var(--brand-blue);
  color: #ffffff;
}

.faq-panel-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: #fafafa;
  border-top: 1px solid transparent;
}

.faq-item-card.active .faq-panel-content {
  border-top-color: var(--bg-alt);
}

.faq-answer-inner {
  padding: 12px 18px 16px;
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* ==========================================================================
       SECTION 10: FINAL CONVERSION BANNER
       ========================================================================== */
.section-final-conversion {
  background: linear-gradient(135deg, var(--brand-navy) 0%, #15325b 100%);
  color: #ffffff;
  padding: 52px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-final-conversion::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(29, 99, 216, 0.18) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.final-stage-wrap {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

.final-gold-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(229, 161, 8, 0.22);
  color: #fcd34d;
  font-size: 0.775rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.final-cta-headline {
  color: #ffffff;
  font-size: clamp(1.65rem, 3vw + 0.5rem, 2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.25;
}

.final-cta-lead {
  color: #e2e8f0;
  font-size: 0.925rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.final-actions-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
}

@media (min-width: 576px) {
  .final-actions-row {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* ==========================================================================
       LOCAL FOOTER
       ========================================================================== */
.site-footer-dock {
  background: var(--brand-navy-deep);
  color: #cbd5e1;
  padding: 38px 0 24px;
  font-size: 0.825rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-columns-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

@media (min-width: 768px) {
  .footer-columns-wrap {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.footer-col-title {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}

.footer-copyright-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  text-align: center;
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.55;
}

/* ==========================================================================
       FLOATING CONVERSION CONTROLS (MOBILE & DESKTOP)
       ========================================================================== */
/* Mobile Fixed Bottom Action Bar */
.mobile-floating-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  padding-bottom: max(8px, env(safe-area-inset-bottom));
  box-shadow: 0 -4px 18px rgba(15, 23, 42, 0.16);
  border-top: 1px solid rgba(29, 99, 216, 0.16);
}

@media (min-width: 992px) {
  .mobile-floating-bar {
    display: none;
  }
}

.circle-touch-action {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  text-decoration: none;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.circle-touch-action:active {
  transform: scale(0.92);
}

.touch-call {
  background: var(--brand-blue);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.touch-wa {
  background: var(--brand-whatsapp);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.mobile-pill-book-btn {
  flex: 1;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #ee6401 0%, #ff7f24 100%);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(238, 100, 1, 0.38);
  animation: ctaFloatPulse 2.4s infinite ease-in-out;
  -webkit-tap-highlight-color: transparent;
}

@keyframes ctaFloatPulse {
  0%,
  100% {
    box-shadow: 0 4px 14px rgba(238, 100, 1, 0.38);
  }

  50% {
    box-shadow: 0 6px 20px rgba(238, 100, 1, 0.6);
    transform: translateY(-1px);
  }
}

/* Desktop Persistent Floating Enquiry Widget */
.desktop-floating-enquiry-widget {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: #ffffff;
  border-radius: var(--radius-pill);
  padding: 6px 8px 6px 14px;
  box-shadow: 0 10px 30px rgba(10, 30, 59, 0.18);
  border: 1.5px solid rgba(29, 99, 216, 0.2);
  align-items: center;
  gap: 10px;
}

@media (min-width: 992px) {
  .desktop-floating-enquiry-widget {
    display: flex;
  }
}

.desk-widget-text {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-navy);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
       MODAL APPOINTMENT POPUP
       ========================================================================== */
.modal-backdrop-layer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 30, 59, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.modal-backdrop-layer.active {
  opacity: 1;
  visibility: visible;
}

.modal-inner-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 24px 22px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
  transform: scale(0.95);
  transition: transform 0.25s ease;
}

.modal-backdrop-layer.active .modal-inner-card {
  transform: scale(1);
}

.modal-exit-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--bg-alt);
  color: var(--text-main);
  font-size: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-fast);
}

.modal-exit-btn:hover {
  background: var(--border-medium);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
