/* ==========================================================================
       MOBILE-FIRST DESIGN SYSTEM & BRAND TOKENS (Shree Sainath Hospital)
       ========================================================================== */
:root {
  /* Brand Palette */
  --color-primary: #3174d1;
  /* Medical Royal Blue */
  --color-primary-dark: #1e5099;
  /* Deep Navy */
  --color-primary-light: #ebf3fc;
  /* Soft Blue Tint */
  --color-secondary: #ebb915;
  /* Brand Warm Gold */
  --color-secondary-light: #fff9e6;
  /* Soft Gold Tint */
  --color-cta: #ee6401;
  /* High-Conversion Orange */
  --color-cta-hover: #d55600;
  /* Darker Orange Hover */
  --color-whatsapp: #25d366;
  /* WhatsApp Green */
  --color-whatsapp-dark: #1ebe5d;

  /* Neutrals & Surfaces */
  --color-heading: #0f172a;
  /* Slate 900 - High Contrast */
  --color-body: #334155;
  /* Slate 700 - Senior Readable */
  --color-muted: #64748b;
  /* Slate 500 */
  --color-light-bg: #f8fafc;
  /* Clean Off-White */
  --color-surface: #ffffff;
  /* Pure White */
  --color-border: #e2e8f0;
  /* Subtle Boundaries */
  --color-border-light: #f1f5f9;

  /* Typography Scale */
  --font-heading:
    "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;

  /* Elevation & Shadows */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md:
    0 4px 16px -2px rgba(49, 116, 209, 0.1),
    0 2px 6px -1px rgba(15, 23, 42, 0.04);
  --shadow-lg:
    0 12px 32px -4px rgba(49, 116, 209, 0.14),
    0 4px 10px -2px rgba(15, 23, 42, 0.04);
  --shadow-cta: 0 8px 24px -4px rgba(238, 100, 1, 0.38);

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Layout Limits */
  --container-max: 1200px;
  --touch-target: 48px;
  /* Minimum Mobile Tap Target Size */
  --transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset */
*,
*::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(--color-body);
  background-color: var(--color-light-bg);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 74px;
  /* Essential space for sticky bottom mobile bar */
}

@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);
}

button,
input,
select,
textarea {
  font: inherit;
}

/* Bilingual Toggle Mechanism */
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;
  /* Extra vertical room for Devanagari vowel matras */
}

body.lang-mr h1,
body.lang-mr h2,
body.lang-mr h3 {
  font-family: var(--font-marathi);
  line-height: 1.35;
}

/* Responsive Container (Mobile-First) */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 576px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Typography Defaults */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.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-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
  border: 1px solid rgba(49, 116, 209, 0.2);
}

.section-title {
  font-size: clamp(1.5rem, 3.5vw + 0.5rem, 2.25rem);
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: clamp(0.95rem, 1.2vw + 0.4rem, 1.1rem);
  color: var(--color-muted);
  line-height: 1.6;
}

/* Clean Medium-Proportioned Buttons (CRO Optimized) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  min-height: 40px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.btn-cta {
  background: var(--color-cta);
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(238, 100, 1, 0.28);
}

.btn-cta:hover,
.btn-cta:active {
  background: var(--color-cta-hover);
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(49, 116, 209, 0.22);
}

.btn-primary:hover,
.btn-primary:active {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}

.btn-outline-primary {
  background: #ffffff;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}

.btn-outline-primary:hover,
.btn-outline-primary:active {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.26);
}

.btn-whatsapp:hover,
.btn-whatsapp:active {
  background: var(--color-whatsapp-dark);
  transform: translateY(-1px);
}

.btn-sm {
  min-height: 32px;
  padding: 5px 12px;
  font-size: 0.775rem;
  font-weight: 600;
}

.btn-lg {
  min-height: 42px;
  padding: 9px 20px;
  font-size: 0.9rem;
  font-weight: 700;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
       TOP UTILITY BAR WITH DYNAMIC ANNOUNCEMENT SLIDER
       ========================================================================== */
.top-bar {
  background: #0b1e38;
  color: #e2e8f0;
  font-size: 0.8rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  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);
}

/* ==========================================================================
       BRAND HEADER & ENHANCED BILINGUAL TOGGLE
       ========================================================================== */
.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;
  }
}

/* Enhanced Language Switcher (Desktop Navbar) */
.lang-switch-wrap {
  display: inline-flex;
  align-items: center;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-full);
  padding: 3px 6px;
  gap: 4px;
  user-select: none;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.04);
}

.lang-globe-icon {
  font-size: 0.9rem;
  margin-right: 2px;
  display: inline-flex;
  align-items: center;
}

.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;
    /* Completely removed from navbar on mobile */
  }

  #header-book-btn {
    display: none !important;
    /* Removed from header on mobile, driven by floating mobile button */
  }

  .header-call-cta {
    display: inline-flex !important;
    font-size: 0.775rem;
    padding: 5px 12px;
    min-height: 32px;
  }
}

/* ==========================================================================
       UNIQUE FLOATING LANGUAGE DOCK (MOBILE RESPONSIVE EDGE TAB)
       ========================================================================== */
.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);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
  user-select: none;
}

@media (min-width: 992px) {
  .floating-lang-pill-mobile {
    display: none;
    /* Only floating on mobile view */
  }
}

.float-lang-globe {
  font-size: 0.8rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.float-lang-btn {
  border: none;
  background: transparent;
  padding: 3px 7px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.725rem;
  font-weight: 700;
  color: #94a3b8;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}

.float-lang-btn.active {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(49, 116, 209, 0.45);
}

.float-lang-divider {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.7rem;
}

.header-right-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-call-cta {
  display: none;
}

@media (min-width: 768px) {
  .header-call-cta {
    display: inline-flex;
  }
}

/* ==========================================================================
       HERO SECTION — MOBILE-FIRST INDEPENDENT ARCHITECTURE
       ========================================================================== */
.hero-section {
  background: linear-gradient(180deg, #f0f6fd 0%, #ffffff 60%, #fff9f3 100%);
  padding: 24px 0 36px 0;
  position: relative;
  border-bottom: 1px solid var(--color-border);
}

@media (min-width: 992px) {
  .hero-section {
    padding: 50px 0 60px 0;
    background: linear-gradient(135deg, #f0f6fd 0%, #ffffff 60%, #fff9f3 100%);
  }
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 992px) {
  .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
  }
}

.hero-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  color: var(--color-primary);
  font-size: 0.775rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  width: fit-content;
  margin-bottom: 12px;
}

.hero-title {
  font-size: clamp(1.85rem, 5vw + 0.5rem, 2.85rem);
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.hero-title .highlight {
  color: var(--color-primary);
}

.hero-desc {
  font-size: clamp(0.975rem, 2vw + 0.2rem, 1.1rem);
  color: var(--color-body);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Mobile-Optimized Action Cluster */
.hero-actions-cluster {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

@media (min-width: 480px) {
  .hero-actions-cluster {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-actions-cluster .btn {
    flex: 1;
    min-width: 160px;
  }
}

/* 4 Trust Pills */
.hero-trust-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
}

.trust-pill-tag {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 8px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-heading);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
}

.trust-pill-check {
  color: var(--color-primary);
  font-weight: 800;
}

.hero-location-note {
  font-size: 0.825rem;
  color: var(--color-muted);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.45;
}

/* Real Hospital Photo Card in Hero */
.hero-image-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  margin-top: 16px;
  background: #0b1e38;
}

.hero-real-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

@media (min-width: 768px) {
  .hero-real-img {
    height: 250px;
  }
}

.hero-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    0deg,
    rgba(11, 30, 56, 0.92) 0%,
    rgba(11, 30, 56, 0.6) 70%,
    transparent 100%
  );
  color: #ffffff;
  padding: 10px 14px;
  font-size: 0.775rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.35);
  display: inline-block;
  flex-shrink: 0;
}

/* Mobile Form Card (Progressive in-flow or modal) */
.hero-lead-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  position: relative;
}

.lead-card-badge {
  display: inline-block;
  background: var(--color-secondary);
  color: #000000;
  font-size: 0.725rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.lead-card-title {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.lead-card-sub {
  font-size: 0.825rem;
  color: var(--color-muted);
  margin-bottom: 16px;
}

.lead-form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-field-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.field-label {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--color-heading);
}

.field-input {
  width: 100%;
  min-height: var(--touch-target);
  padding: 12px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  background: #ffffff;
  color: var(--color-heading);
  transition: var(--transition);
  -webkit-appearance: none;
}

.field-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(49, 116, 209, 0.15);
}

.form-privacy-tag {
  font-size: 0.75rem;
  color: var(--color-muted);
  text-align: center;
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* ==========================================================================
       TRUST PROOF ACCELERATOR BAR
       ========================================================================== */
.trust-proof-strip {
  background: #ffffff;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border);
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (min-width: 768px) {
  .trust-strip-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

.proof-item-card {
  background: var(--color-light-bg);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.proof-icon {
  font-size: 1.35rem;
  flex-shrink: 0;
}

.proof-title {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--color-heading);
  line-height: 1.2;
}

.proof-sub {
  font-size: 0.725rem;
  color: var(--color-muted);
}

/* ==========================================================================
       SECTION 2: RELEVANCE — SYMPTOMS
       ========================================================================== */
.section-symptoms {
  padding: 48px 0;
  background: #ffffff;
}

.symptoms-mobile-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 30px;
}

@media (min-width: 576px) {
  .symptoms-mobile-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .symptoms-mobile-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.symptom-item {
  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;
}

.symptom-alert-icon {
  color: #dc2626;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.symptom-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-heading);
  line-height: 1.35;
}

/* Decision Callout Card */
.decision-banner {
  background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .decision-banner {
    padding: 36px 32px;
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 24px;
    align-items: center;
  }
}

.decision-banner-title {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.decision-banner-desc {
  font-size: 0.925rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 12px;
}

.decision-banner-reassurance {
  font-size: 0.8rem;
  color: #94a3b8;
  font-style: italic;
  margin-bottom: 18px;
}

@media (min-width: 768px) {
  .decision-banner-reassurance {
    margin-bottom: 0;
  }
}

/* ==========================================================================
       SECTION 3: TREATMENT OPTIONS
       ========================================================================== */
.section-treatments {
  padding: 48px 0;
  background: var(--color-light-bg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.treatment-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .treatment-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .treatment-cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.treat-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 22px 18px;
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.treat-badge {
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  width: fit-content;
  margin-bottom: 10px;
}

.treat-title {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.treat-desc {
  font-size: 0.8875rem;
  color: var(--color-body);
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}

/* Decision Pathway Flowchart */
.pathway-flow-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.pathway-flow-title {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.pathway-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.pathway-tag {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(49, 116, 209, 0.2);
}

.pathway-arrow {
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: bold;
}

/* Treatment Department Banner */
.treatment-banner-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  background: #f0f4f8;
}

.treatment-banner-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .treatment-banner-img {
    height: 220px;
  }
}

/* ==========================================================================
       SECTION 4: CARE JOURNEY & RECOVERY EXPECTATIONS
       ========================================================================== */
.section-journey {
  padding: 48px 0;
  background: #ffffff;
}

.journey-timeline-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 32px;
}

@media (min-width: 576px) {
  .journey-timeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .journey-timeline-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.timeline-step-card {
  background: #ffffff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px 18px;
}

.timeline-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 6px;
  line-height: 1;
}

.timeline-title {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.timeline-desc {
  font-size: 0.85rem;
  color: var(--color-body);
  line-height: 1.5;
}

.recovery-banner-card {
  background: var(--color-secondary-light);
  border: 1.5px solid rgba(235, 185, 21, 0.4);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
}

@media (min-width: 768px) {
  .recovery-banner-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
    padding: 30px;
  }
}

.factors-checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 12px 0 16px 0;
}

@media (min-width: 480px) {
  .factors-checklist {
    grid-template-columns: 1fr 1fr;
  }
}

.factors-item {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--color-heading);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
       SECTION 5: WHY SHREE SAINATH
       ========================================================================== */
.section-why-us {
  padding: 48px 0;
  background: var(--color-light-bg);
  border-top: 1px solid var(--color-border);
}

.pillars-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .pillars-stack {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .pillars-stack {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar-box {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.pillar-ico {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.pillar-name {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.pillar-text {
  font-size: 0.85rem;
  color: var(--color-body);
  line-height: 1.45;
}

/* ==========================================================================
       SECTION 6: DOCTOR PROFILE
       ========================================================================== */
.section-doctor {
  padding: 48px 0;
  background: #ffffff;
}

.doctor-profile-card {
  background: #ffffff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  box-shadow: var(--shadow-md);
  max-width: 820px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .doctor-profile-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 30px;
    align-items: center;
    padding: 36px 30px;
  }
}

.doc-avatar-wrap {
  text-align: center;
  margin-bottom: 18px;
}

@media (min-width: 768px) {
  .doc-avatar-wrap {
    margin-bottom: 0;
  }
}

.doc-avatar-circle {
  width: 200px;
  height: 200px;
  margin: 0 auto 8px auto;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #ffffff;
  box-shadow: var(--shadow-md);
  background: var(--color-primary-light);
}

.doc-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.doc-title {
  font-size: 1.45rem;
  margin-bottom: 4px;
}

.doc-subtitle {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.doc-badges-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.doc-badge-pill {
  background: var(--color-light-bg);
  border: 1px solid var(--color-border);
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--color-heading);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

/* ==========================================================================
       SECTION 7: FACILITIES & PATIENT TESTIMONIAL
       ========================================================================== */
.section-facilities {
  padding: 48px 0;
  background: var(--color-light-bg);
  border-top: 1px solid var(--color-border);
}

/* Real Facility Photo Grid */
.facilities-real-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

@media (min-width: 576px) {
  .facilities-real-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .facilities-real-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.facility-real-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.facility-real-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.facility-card-img-wrap {
  position: relative;
  width: 100%;
  height: 180px;
  background: #0b1e38;
  overflow: hidden;
}

.facility-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.facility-real-card:hover .facility-card-img {
  transform: scale(1.05);
}

.facility-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(11, 30, 56, 0.85);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 0.725rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.facility-card-body {
  padding: 16px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.facility-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 6px;
}

.facility-card-desc {
  font-size: 0.825rem;
  color: var(--color-body);
  line-height: 1.45;
  margin-bottom: 0;
}

.patient-quote-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  max-width: 740px;
  margin: 0 auto;
}

.quote-mark {
  font-size: 2rem;
  color: var(--color-secondary);
  line-height: 1;
  margin-bottom: 8px;
}

.quote-content {
  font-size: 0.95rem;
  line-height: 1.65;
  font-style: italic;
  color: var(--color-heading);
  margin-bottom: 16px;
}

.quote-author-info {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* ==========================================================================
       SECTION 8: COST & INSURANCE
       ========================================================================== */
.section-cost {
  padding: 48px 0;
  background: #ffffff;
}

.cost-pills-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 24px;
}

@media (min-width: 480px) {
  .cost-pills-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .cost-pills-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cost-item-pill {
  background: var(--color-light-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-heading);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cost-cta-cards-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .cost-cta-cards-pair {
    grid-template-columns: 1fr 1fr;
  }
}

.cost-box-cta {
  background: #ffffff;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cost-box-cta.featured {
  border-color: var(--color-primary);
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%);
}

.cost-box-title {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.cost-box-desc {
  font-size: 0.875rem;
  color: var(--color-body);
  line-height: 1.55;
  margin-bottom: 18px;
}

/* ==========================================================================
       SECTION 9: FAQS (ACCORDION)
       ========================================================================== */
.section-faq {
  padding: 48px 0;
  background: var(--color-light-bg);
  border-top: 1px solid var(--color-border);
}

.faq-list-wrap {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-accordion-item {
  background: #ffffff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-accordion-item.active {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.faq-trigger {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--color-heading);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 12px;
  min-height: var(--touch-target);
  -webkit-tap-highlight-color: transparent;
}

.faq-trigger-icon {
  font-size: 1.25rem;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-accordion-item.active .faq-trigger-icon {
  transform: rotate(45deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.25s ease-out,
    padding 0.25s ease;
  padding: 0 18px;
  font-size: 0.9rem;
  color: var(--color-body);
  line-height: 1.6;
}

.faq-accordion-item.active .faq-panel {
  padding: 0 18px 18px 18px;
  max-height: 500px;
}

/* ==========================================================================
       SECTION 10: CONVERSION — FINAL CTA BANNER
       ========================================================================== */
.section-final-banner {
  padding: 50px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  color: #ffffff;
  text-align: center;
}

.final-banner-content {
  max-width: 700px;
  margin: 0 auto;
}

.final-badge-gold {
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.final-banner-title {
  font-size: clamp(1.65rem, 4vw + 0.4rem, 2.35rem);
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.25;
}

.final-banner-desc {
  font-size: clamp(0.925rem, 1.5vw + 0.3rem, 1.05rem);
  color: #e2e8f0;
  margin-bottom: 24px;
  line-height: 1.6;
}

.final-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

@media (min-width: 576px) {
  .final-banner-actions {
    flex-direction: row;
    justify-content: center;
  }

  .final-banner-actions .btn {
    min-width: 170px;
  }
}

.final-hospital-tag {
  font-size: 0.825rem;
  color: #94a3b8;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  line-height: 1.5;
}

/* ==========================================================================
       FOOTER
       ========================================================================== */
.site-footer {
  background: #090e17;
  color: #94a3b8;
  padding: 40px 0 24px 0;
  font-size: 0.825rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-sections-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

@media (min-width: 768px) {
  .footer-sections-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 32px;
  }
}

.footer-heading {
  color: #ffffff;
  font-size: 0.975rem;
  margin-bottom: 12px;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-list-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #cbd5e1;
}

.footer-list-item a {
  color: #cbd5e1;
}

.footer-disclaimer-box {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  text-align: center;
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.55;
}

/* ==========================================================================
       MOBILE PINNED STICKY BOTTOM ACTION BAR (THUMB-FRIENDLY CRO)
       ========================================================================== */
/* ==========================================================================
       MOBILE FLOATING BOOK APPOINTMENT CTA & ACTION DOCK (FOOTER)
       ========================================================================== */
.mobile-sticky-action-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(49, 116, 209, 0.16);
}

@media (min-width: 992px) {
  .mobile-sticky-action-bar {
    display: none;
    /* Hidden on large desktop screens */
  }
}

@media (max-width: 991px) {
  body {
    padding-bottom: 60px;
    /* Prevent footer content from hiding under mobile floating bar */
  }
}

.floating-circle-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;
}

.floating-circle-action:active {
  transform: scale(0.92);
}

.float-call-btn {
  background: var(--color-primary);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.float-wa-btn {
  background: var(--color-whatsapp);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.floating-cta-book-btn {
  flex: 1;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #ee6401 0%, #ff7f24 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  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);
  position: relative;
  overflow: hidden;
  animation: ctaFloatPulse 2.4s infinite ease-in-out;
  -webkit-tap-highlight-color: transparent;
}

.floating-cta-book-btn:active {
  transform: scale(0.97);
}

@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);
  }
}

/* ==========================================================================
       REUSABLE MODERN CAROUSEL & SLIDER SYSTEM (PURE CSS SCROLL-SNAP + TOUCH JS)
       ========================================================================== */
.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 child items snap alignment & peek-ahead width */
.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 Navigation Controls Bar */
.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-arrow-btn:active {
  transform: scale(0.92);
}

.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);
}

/* ==========================================================================
       CONSULTATION 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 {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--color-light-bg);
  border: 1px solid var(--color-border);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--color-muted);
  cursor: pointer;
}

.journey-testimonial-card {
  background: #fff;
  border: 1px solid #e5ebf2;
  border-radius: 14px;
  padding: 25px;
  transition: all 0.3s ease;
}

.journey-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(20, 55, 90, 0.08);
}

/* Patient Top */

.testimonial-top {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 20px;
}

.patient-avatar {
  width: 45px;
  height: 45px;
  min-width: 45px;
  border-radius: 50%;
  background: #eaf4fc;
  color: #0057a4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin-right: 12px;
}

.patient-details h4 {
  margin: 0 0 3px;
  color: #172b4d;
  font-size: 15px;
  font-weight: 700;
}

.patient-details span {
  font-size: 12px;
  color: #7b8797;
}

.patient-details span i {
  color: #0057a4;
  margin-right: 3px;
}

/* Stars */

.testimonial-stars {
  margin-left: auto;
  color: #f4b400;
  font-size: 13px;
  letter-spacing: 1px;
}

/* Content */

.testimonial-content {
  color: #4f5e70;
  font-size: 14px;
  line-height: 1.75;
  margin: 0 0 20px;
}

/* Small Tag */

.testimonial-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: #f5f8fb;
  border-radius: 5px;
  color: #667487;
  font-size: 11px;
  font-weight: 600;
}

.testimonial-tag i {
  color: #0057a4;
}

@media (max-width: 991px) {
  .journey-testimonial-card:last-child {
    grid-column: 1 / -1;
  }
}
@media (max-width: 767px) {
  .journey-testimonial-card {
    min-width: 88%;
    scroll-snap-align: start;
  }
}
