/* ==========================================================================
       DESIGN SYSTEM & BRAND TOKENS (Shree Sainath Hospital)
       ========================================================================== */
:root {
  --color-primary: #3174d1;
  --brand-navy-deep: #061326;
  --color-primary-dark: #1e5099;
  --color-primary-light: #ebf3fc;
  --color-secondary: #ebb915;
  --color-secondary-light: #fff9e6;
  --color-cta: #ee6401;
  --color-cta-hover: #d55600;
  --color-whatsapp: #25d366;
  --color-emergency: #dc2626;
  --color-emergency-light: #fef2f2;

  --color-heading: #0f172a;
  --color-body: #334155;
  --color-muted: #64748b;
  --color-light-bg: #f8fafc;
  --color-card-bg: #ffffff;
  --color-border: #e2e8f0;
  --color-border-light: #f1f5f9;

  --font-heading: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-marathi: "Noto Sans Devanagari", "Inter", sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 14px rgba(49, 116, 209, 0.08);
  --shadow-lg: 0 12px 28px rgba(15, 23, 42, 0.12);
  --shadow-cta: 0 8px 24px -4px rgba(238, 100, 1, 0.38);

  --transition: all 0.25s 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%;
}
a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

body {
  font-family: var(--font-body);
  color: var(--color-body);
  background-color: #ffffff;
  line-height: 1.55;
  font-size: 0.95rem;
  overflow-x: hidden;
  padding-bottom: 70px;
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

body.lang-mr {
  font-family: var(--font-marathi);
}

.lang-mr {
  display: none;
}

body.lang-mr .lang-en {
  display: none !important;
}

body.lang-mr .lang-mr {
  display: inline !important;
}

div.lang-mr,
p.lang-mr,
section.lang-mr {
  display: none;
}

body.lang-mr div.lang-mr,
body.lang-mr p.lang-mr,
body.lang-mr section.lang-mr {
  display: block !important;
}

body.lang-mr flex.lang-mr,
body.lang-mr span.lang-mr.flex {
  display: flex !important;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Top Announcement Ticker Bar */
.top-bar {
  background: #0b1e38;
  color: #ffffff;
  font-size: 0.8rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.top-slider-wrapper {
  position: relative;
  flex: 1;
  overflow: hidden;
  min-height: 28px;
  display: flex;
  align-items: center;
}

.top-slide-item {
  display: none;
  align-items: center;
  gap: 8px;
  animation: topFadeIn 0.35s ease forwards;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-slide-item.active {
  display: inline-flex;
}

@keyframes topFadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.top-slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(235, 185, 21, 0.2);
  color: var(--color-secondary);
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.top-slide-link {
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-slide-link:hover {
  text-decoration: underline;
}

.top-slide-text {
  color: #e2e8f0;
  font-size: 0.8rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-slider-nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.top-slider-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
  line-height: 1;
}

.top-slider-btn:hover {
  background: var(--color-primary);
}

.top-slider-indicators {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.top-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.2s ease;
}

.top-dot.active {
  width: 14px;
  border-radius: 3px;
  background: var(--color-secondary);
}

/* Site Header */
.site-header {
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 10px;
}

.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

@media (min-width: 576px) {
  .header-logo img {
    height: 50px;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-switch-wrap {
  display: inline-flex;
  align-items: center;
  background: #f1f5f9;
  padding: 3px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  gap: 4px;
  user-select: none;
}

.lang-pill-btn {
  border: none;
  background: transparent;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.775rem;
  font-weight: 700;
  color: var(--color-muted);
  cursor: pointer;
  transition: var(--transition);
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lang-pill-btn.active {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(49, 116, 209, 0.35);
}

@media (max-width: 991px) {
  .lang-switch-wrap {
    display: none !important;
  }

  #header-book-btn {
    display: none !important;
  }
}

/* Floating Edge Language Pill on Mobile */
.floating-lang-pill-mobile {
  position: fixed;
  top: 96px;
  right: 0;
  z-index: 9990;
  background: #0b1e38;
  border: 1.5px solid rgba(235, 185, 21, 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(11, 30, 56, 0.35);
}

@media (min-width: 992px) {
  .floating-lang-pill-mobile {
    display: none !important;
  }
}

.float-lang-globe {
  font-size: 0.8rem;
}

.float-lang-btn {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 5px;
  cursor: pointer;
  border-radius: 12px;
  font-family: var(--font-heading);
  transition: all 0.2s ease;
}

.float-lang-btn.active {
  color: #0b1e38;
  background: var(--color-secondary);
}

.float-lang-divider {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.65rem;
}

/* Standardized Medium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 18px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid transparent;
  text-align: center;
  min-height: 40px;
}

.btn:active {
  transform: scale(0.98);
}

.btn-sm {
  padding: 5px 12px;
  font-size: 0.775rem;
  min-height: 32px;
  border-radius: var(--radius-sm);
}

.btn-cta {
  background: linear-gradient(135deg, #ee6401 0%, #ff7f24 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(238, 100, 1, 0.35);
  border-color: #ee6401;
  position: relative;
  overflow: hidden;
}

.btn-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.65s ease;
}

.btn-cta:hover {
  background: linear-gradient(135deg, #d55600 0%, #ee6401 100%);
  box-shadow: 0 6px 18px rgba(238, 100, 1, 0.45);
  transform: translateY(-2px);
}

.btn-cta:hover::after {
  left: 150%;
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(49, 116, 209, 0.3);
}

.btn-outline-primary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline-primary:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  border-color: #25d366;
}

.btn-whatsapp:hover {
  background: #20ba5a;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
  display: flex;
}

/* Mobile Sticky Bottom CTA Dock */
.mobile-bottom-dock {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  padding: 8px 12px;
  box-shadow: 0 -4px 18px rgba(15, 23, 42, 0.12);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid var(--color-border);
}

@media (min-width: 992px) {
  .mobile-bottom-dock {
    display: none !important;
  }
}

.mobile-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.mobile-icon-call {
  background: var(--color-emergency);
  color: #ffffff;
}

.mobile-icon-wa {
  background: var(--color-whatsapp);
  color: #ffffff;
}

.mobile-pill-book-btn {
  flex: 1;
  min-height: 38px;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  animation: ctaFloatPulse 2.5s infinite ease-in-out;
}

@keyframes ctaFloatPulse {
  0%,
  100% {
    box-shadow: 0 4px 12px rgba(238, 100, 1, 0.35);
  }
  50% {
    box-shadow: 0 6px 18px rgba(238, 100, 1, 0.6);
  }
}

/* Section Commons */
section {
  padding: 44px 0;
  position: relative;
}

@media (min-width: 768px) {
  section {
    padding: 64px 0;
  }
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 32px auto;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.775rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-heading);
  line-height: 1.25;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.15rem;
  }
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* ==========================================================================
       HERO SECTION (ATTENTION)
       ========================================================================== */
.hero-section {
  background: linear-gradient(180deg, #f0f6ff 0%, #ffffff 100%);
  padding-top: 28px;
  padding-bottom: 40px;
}

@media (min-width: 992px) {
  .hero-section {
    padding-top: 48px;
    padding-bottom: 60px;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid rgba(49, 116, 209, 0.25);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--color-heading);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

@media (min-width: 768px) {
  .hero-headline {
    font-size: 2.65rem;
  }
}

.hero-headline .highlight {
  color: var(--color-primary);
  position: relative;
  display: inline-block;
}

.hero-sub {
  font-size: 1rem;
  color: var(--color-body);
  line-height: 1.6;
  margin-bottom: 12px;
}

.hero-eval-prompt {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  background: var(--color-primary-light);
  padding: 10px 14px;
  border-left: 4px solid var(--color-primary);
  border-radius: 4px var(--radius-sm) var(--radius-sm) 4px;
  margin-bottom: 20px;
}

/* 4 Value Trust Badges */
.hero-trust-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}

@media (min-width: 576px) {
  .hero-trust-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.trust-pill-tag {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-heading);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.trust-pill-check {
  color: #10b981;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.hero-cta-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-location-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 16px;
}

/* Life-Saving Emergency Warning Box */
.emergency-callout-box {
  background: var(--color-emergency-light);
  border: 1.5px solid rgba(220, 38, 38, 0.35);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.825rem;
  line-height: 1.5;
  color: #991b1b;
}

.emergency-callout-box .em-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  line-height: 1;
}

.emergency-callout-box strong {
  color: #7f1d1d;
  font-weight: 800;
}

/* Lead Capture Card (Hero Right Column) */
.hero-lead-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  padding: 24px 20px;
  position: relative;
}

.lead-card-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--color-cta);
  color: #ffffff;
  font-size: 0.725rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 6px rgba(238, 100, 1, 0.4);
}

.lead-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-heading);
  margin-top: 4px;
  margin-bottom: 4px;
}

.lead-card-sub {
  font-size: 0.825rem;
  color: var(--color-muted);
  margin-bottom: 16px;
}

/* Verified Clinical Trust Metrics Strip */
.trust-stats-strip {
  background: #ffffff;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 22px 0;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 10;
}

.stats-strip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 12px;
}

@media (min-width: 768px) {
  .stats-strip-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.stat-strip-item {
  text-align: center;
  padding: 6px 10px;
  position: relative;
}

@media (min-width: 768px) {
  .stat-strip-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: #e2e8f0;
  }
}

.stat-strip-num {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 2.4vw, 2.2rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.stat-strip-label {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--color-muted);
  line-height: 1.35;
}

/* ==========================================================================
       SECTION 2: SYMPTOMS / WARNING SIGNS
       ========================================================================== */
.section-symptoms {
  background: #ffffff;
}

.symptoms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

@media (min-width: 576px) {
  .symptoms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .symptoms-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.symptom-card {
  background: var(--color-light-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.symptom-card:hover {
  border-color: var(--color-primary);
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.symptom-icon {
  font-size: 1.35rem;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.symptom-text {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-heading);
  line-height: 1.3;
}

.guidance-box {
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-md);
  padding: 20px;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .guidance-box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
  }
}

.guidance-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-heading);
  margin-bottom: 6px;
}

.guidance-desc {
  font-size: 0.9rem;
  color: var(--color-body);
  line-height: 1.55;
  max-width: 680px;
}

.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;
}

/* ==========================================================================
       SECTION 3: TREATMENT OPTIONS & DECISION PATHWAY
       ========================================================================== */
.section-treatments {
  background: var(--color-light-bg);
}

.pathway-stepper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.pathway-step {
  font-size: 0.775rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  background: var(--color-primary-light);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.pathway-arrow {
  color: var(--color-muted);
  font-weight: 800;
  font-size: 0.8rem;
}

.treat-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.treat-badge {
  display: inline-block;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 0.725rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  width: fit-content;
}

.treat-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-heading);
  margin-bottom: 10px;
  line-height: 1.3;
}

.treat-desc {
  font-size: 0.875rem;
  color: var(--color-body);
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}

/* ==========================================================================
       SECTION 4: WHAT TO EXPECT (6-STEP JOURNEY)
       ========================================================================== */
.section-journey {
  background: #ffffff;
}

.journey-step-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  position: relative;
  /* display: flex; */
  flex-direction: column;
  justify-content: space-between;
}

.journey-step-num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.journey-step-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-heading);
  margin-bottom: 8px;
  line-height: 1.3;
}

.journey-step-desc {
  font-size: 0.85rem;
  color: var(--color-body);
  line-height: 1.55;
}

.duration-factors-box {
  background: linear-gradient(135deg, #0b1e38 0%, #1e3a8a 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  margin-top: 32px;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .duration-factors-box {
    padding: 32px;
  }
}

.duration-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 16px 0 20px 0;
}

@media (min-width: 768px) {
  .duration-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.duration-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ==========================================================================
       SECTION 5: TRUST — WHY SHREE SAINATH
       ========================================================================== */
.section-pillars {
  background: var(--color-light-bg);
}

.pillar-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pillar-icon {
  font-size: 1.75rem;
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-heading);
  line-height: 1.3;
}

.pillar-desc {
  font-size: 0.85rem;
  color: var(--color-body);
  line-height: 1.55;
}

/* ==========================================================================
       SECTION 6: DOCTOR SPOTLIGHT
       ========================================================================== */
.section-doctor {
  background: #ffffff;
}

.doctor-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 24px 20px;
  max-width: 840px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease;
}

.doctor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}

@media (min-width: 768px) {
  .doctor-card {
    grid-template-columns: 240px 1fr;
    padding: 32px;
    gap: 32px;
  }
}

.doctor-photo-wrap {
  text-align: center;
}

.doctor-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px auto;
  border: 4px solid var(--color-primary-light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.doctor-card:hover .doctor-photo {
  transform: scale(1.04);
}

.doctor-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--color-heading);
  margin-bottom: 4px;
}

.doctor-role {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.doctor-cred-table {
  background: var(--color-light-bg);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.cred-row {
  display: flex;
  margin-bottom: 4px;
  gap: 8px;
}

.cred-row strong {
  color: var(--color-heading);
  min-width: 110px;
}

.expertise-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.exp-pill {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-size: 0.775rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

/* ==========================================================================
       SECTION 7: PROOF — FACILITIES & PATIENT EXPERIENCE
       ========================================================================== */
.section-facilities {
  background: var(--color-light-bg);
}

.facility-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.facility-img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.facility-body {
  padding: 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.facility-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-heading);
  margin-bottom: 6px;
}

.facility-desc {
  font-size: 0.825rem;
  color: var(--color-body);
  line-height: 1.5;
}

.patient-quote-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  max-width: 820px;
  margin: 36px auto 0 auto;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.quote-mark {
  font-size: 3rem;
  color: var(--color-primary);
  line-height: 1;
  font-family: serif;
  opacity: 0.3;
  margin-bottom: -10px;
}

.quote-content {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-body);
  line-height: 1.65;
  margin-bottom: 14px;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--color-heading);
}

/* ==========================================================================
       SECTION 8: COST & INSURANCE
       ========================================================================== */
.section-cost {
  background: #ffffff;
}

.cost-factors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 20px 0 28px 0;
}

@media (min-width: 576px) {
  .cost-factors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .cost-factors-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cost-item {
  background: var(--color-light-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-heading);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cost-item::before {
  content: "•";
  color: var(--color-primary);
  font-size: 1.25rem;
  line-height: 1;
}

.cost-action-card {
  background: linear-gradient(135deg, #f0f6ff 0%, #ffffff 100%);
  border: 1.5px solid rgba(49, 116, 209, 0.25);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .cost-action-card {
    grid-template-columns: 1fr 1fr;
  }
}

.cost-box-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ==========================================================================
       SECTION 9: FAQS (ACCORDION)
       ========================================================================== */
.section-faq {
  background: var(--color-light-bg);
}

.faq-accordion-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.faq-question-btn {
  width: 100%;
  background: transparent;
  border: none;
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-heading);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  line-height: 1.4;
}

.faq-chevron {
  font-size: 1.2rem;
  transition: transform 0.25s ease;
  color: var(--color-primary);
  flex-shrink: 0;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px 18px 20px;
  font-size: 0.885rem;
  color: var(--color-body);
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ==========================================================================
       SECTION 10: FINAL CONVERSION CTA & FOOTER
       ========================================================================== */
.final-cta-section {
  position: relative;
  background:
    linear-gradient(
      135deg,
      rgba(11, 30, 56, 0.94) 0%,
      rgba(15, 23, 42, 0.92) 100%
    ),
    url("assets/hospital-reception.webp") center/cover no-repeat;
  color: #ffffff;
  text-align: center;
  padding: 64px 0;
  overflow: hidden;
}

.final-cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(49, 116, 209, 0.15),
    transparent 60%
  );
  animation: ctaAmbientPulse 8s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes ctaAmbientPulse {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translate(3%, 3%) scale(1.08);
    opacity: 0.9;
  }
}

@media (prefers-reduced-motion: reduce) {
  .final-cta-section::before {
    animation: none;
  }
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.final-cta-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .final-cta-title {
    font-size: 2.35rem;
  }
}

.final-cta-sub {
  font-size: 0.95rem;
  color: #e2e8f0;
  line-height: 1.6;
  margin-bottom: 24px;
}

.final-cta-deck {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.hospital-identity-badge {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  font-size: 0.85rem;
  color: #cbd5e1;
}

.hospital-identity-badge strong {
  color: #ffffff;
  font-size: 0.95rem;
}

/* .site-footer {
            background: #061121;
            color: #94A3B8;
            font-size: 0.8rem;
            padding: 24px 0;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        } */

/* Slider Controls Styling */
.slider-container {
  position: relative;
  width: 100%;
  overflow: visible;
}

.slider-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  gap: 16px;
  padding: 8px 4px 16px 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  will-change: scroll-position;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.slider-track.grabbing {
  cursor: grabbing !important;
  scroll-behavior: auto !important;
  scroll-snap-type: none !important;
}

.slider-track > * {
  flex: 0 0 calc(84% - 10px);
  min-width: 260px;
  max-width: 330px;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  box-sizing: border-box;
  transition:
    transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.slider-track > *:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
}

@media (min-width: 576px) {
  .slider-track > * {
    flex: 0 0 calc(48% - 10px);
    min-width: 270px;
    max-width: none;
  }
}

@media (min-width: 992px) {
  .slider-track > * {
    flex: 0 0 calc(32% - 10px);
    min-width: 290px;
    max-width: none;
  }
}

/* 4-column setups */
.slider-track.track-4col > * {
  flex: 0 0 calc(84% - 10px);
  min-width: 250px;
  max-width: 310px;
}

@media (min-width: 576px) {
  .slider-track.track-4col > * {
    flex: 0 0 calc(48% - 10px);
    min-width: 260px;
    max-width: none;
  }
}

@media (min-width: 992px) {
  .slider-track.track-4col > * {
    flex: 0 0 calc(25% - 12px);
    min-width: 240px;
    max-width: none;
  }
}

.slider-controls-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
  margin-bottom: 8px;
}

.slider-arrow-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid var(--color-border);
  color: var(--color-heading);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

.slider-arrow-btn:hover {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(49, 116, 209, 0.3);
}

.slider-dots-wrap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
}

.slider-dot-indicator {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: #cbd5e1;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.slider-dot-indicator.active {
  width: 26px;
  background: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(49, 116, 209, 0.25);
}

/* Modal Dialog */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-overlay.open {
  display: flex;
}

.modal-card {
  background: #ffffff;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-lg);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #f1f5f9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: #e2e8f0;
  color: var(--color-heading);
}

.field-group {
  margin-bottom: 12px;
}

.field-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 4px;
}

.field-input,
.field-select {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--color-heading);
  outline: none;
  transition: var(--transition);
}

.field-input:focus,
.field-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(49, 116, 209, 0.15);
}

@media (max-width: 767px) {
  .spine-testimonials-section {
    padding: 55px 0;
  }

  .spine-testimonials-header {
    margin-bottom: 32px;
  }

  .spine-testimonials-eyebrow {
    font-size: 11px;
    padding: 6px 12px;
  }

  .spine-testimonials-header h2 {
    font-size: 28px;
    line-height: 1.25;
  }

  .spine-testimonials-header p {
    font-size: 14px;
    line-height: 1.6;
  }

  .spine-testimonials-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .spine-testimonial-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .spine-testimonial-card {
    padding: 24px 20px;
    border-radius: 15px;
  }

  .spine-quote-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 15px;
    font-size: 17px;
  }

  .spine-testimonial-rating {
    margin-bottom: 14px;
  }

  .spine-testimonial-text {
    min-height: auto;
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1.7;
  }

  .spine-testimonial-author {
    padding-top: 16px;
  }
}

.spine-testimonials-section {
  padding: 90px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* Section Header */
.spine-testimonials-header {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.spine-testimonials-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 7px 15px;
  margin-bottom: 14px;
  border-radius: 50px;
  background: rgba(2, 132, 199, 0.1);
  color: var(--color-primary-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spine-testimonials-header h2 {
  margin: 0 0 15px;
  color: var(--brand-navy-deep);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
}

.spine-testimonials-header p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.7;
}

/* Testimonials Grid */
.spine-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Testimonial Card */
.spine-testimonial-card {
  position: relative;
  padding: 32px 28px;
  background: #ffffff;
  border: 1px solid rgba(2, 132, 199, 0.16);
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(6, 19, 38, 0.07);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.spine-testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(2, 132, 199, 0.35);
  box-shadow: 0 22px 50px rgba(6, 19, 38, 0.12);
}

/* Quote Icon */
.spine-quote-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 12px;
  background: rgba(2, 132, 199, 0.09);
  color: var(--color-primary);
  font-size: 20px;
}

/* Rating */
.spine-testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.spine-testimonial-rating i {
  color: #f59e0b;
  font-size: 14px;
}

/* Testimonial Text */
.spine-testimonial-text {
  min-height: 150px;
  margin: 0 0 25px;
  color: var(--color-body);
  font-size: 15px;
  line-height: 1.75;
  font-style: italic;
}

/* Author */
.spine-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.spine-author-avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 15px;
}

.spine-testimonial-author strong {
  display: block;
  margin-bottom: 3px;
  color: var(--brand-navy-deep);
  font-size: 14px;
  font-weight: 700;
}

.spine-testimonial-author span {
  display: block;
  color: var(--color-muted);
  font-size: 12px;
}
