/* ==========================================================================
   MANPRAVAH - Home Page Custom Stylesheet (Complete & Fully Responsive)
   ========================================================================== */

/* --- Color Palette Tokens --- */
:root {
  --mp-orange: #E66E43;
  --mp-orange-hover: #D45B30;
  --mp-slate-teal: #4A6B6C;
  --mp-light-teal: #E8F1F1;
  --mp-mint-bg: #D7E8E7;
  --mp-powder-blue: #C5E5EE;
  --mp-sage-bg: #9DB0AE;
  --mp-cream-bg: #F7EBE1;
  --mp-footer-bg: #FFF5ED;
  --mp-bg-light: #FAF8F5;
  --mp-text-dark: #333333;
  --mp-text-muted: #666666;
  --mp-border-light: #DCDCDC;
  
  --mp-font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --mp-font-serif: 'Playfair Display', Georgia, serif;
}

body {
  font-family: var(--mp-font-main);
  color: var(--mp-text-dark);
  background-color: #FFFFFF;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.container-custom {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Top Header Section --- */
.site-header {
  padding: 15px 0 10px 0;
  background-color: #FFFFFF;
  position: relative;
  z-index: 100;
}

.header-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo-box {
  display: inline-block;
  text-decoration: none;
}

.site-logo-img {
  height: 85px;
  width: auto;
  display: block;
  object-fit: contain;
}

.iso-text {
  font-size: 11px;
  color: #666666;
  text-align: right;
  margin-bottom: 12px;
  font-weight: 500;
}

.nav-pills-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.header-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border: 1px solid #C8C8C8;
  border-radius: 20px;
  background-color: #FFFFFF;
  color: #333333;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  white-space: nowrap;
}

.header-pill-btn.active-pill, .header-pill-btn:hover {
  border-color: var(--mp-orange);
  color: var(--mp-orange);
  background-color: #FFF9F6;
  transform: translateY(-1px);
}

.header-pill-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle {
  display: none;
}

/* --- Hero Banner & Slider Section --- */
.hero-wrapper {
  max-width: 1240px;
  margin: 10px auto 30px auto;
  padding: 0 20px;
}

#heroCarousel {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.hero-banner-item {
  position: relative;
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

.hero-banner-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.15) 40%, rgba(0, 0, 0, 0.45) 100%);
}

.hero-title-overlay {
  position: absolute;
  top: 40px;
  left: 45px;
  max-width: 540px;
  color: #FFFFFF;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  z-index: 2;
}

.metro-station-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(18, 24, 28, 0.85);
  backdrop-filter: blur(6px);
  color: #FFFFFF;
  padding: 10px 14px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  z-index: 5;
  border: 1px solid rgba(255,255,255,0.18);
  width: 90px;
  text-align: center;
}

.metro-text-top {
  font-size: 11px;
  line-height: 1.2;
}

.metro-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.hero-cta-box {
  position: absolute;
  bottom: 25px;
  right: 30px;
  display: flex;
  gap: 14px;
  z-index: 5;
}

.btn-cta-orange {
  background-color: var(--mp-orange);
  color: #FFFFFF;
  border: none;
  border-radius: 30px;
  padding: 12px 28px;
  font-size: 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(230, 110, 67, 0.4);
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-cta-orange:hover {
  background-color: var(--mp-orange-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(230, 110, 67, 0.5);
}

.btn-cta-icon {
  font-size: 20px;
}

#heroCarousel .carousel-indicators {
  z-index: 5;
  margin-bottom: 15px;
  justify-content: flex-start;
  left: 45px;
  right: auto;
}

#heroCarousel .carousel-indicators [data-bs-target] {
  width: 30px;
  height: 4px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.6);
  border: none;
}

#heroCarousel .carousel-indicators .active {
  background-color: var(--mp-orange);
  width: 45px;
}

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
  width: 50px;
  z-index: 4;
  opacity: 0.7;
}

/* --- Intro Section --- */
.intro-section {
  max-width: 900px;
  margin: 40px auto 40px auto;
  text-align: center;
  padding: 0 20px;
}

.intro-heading {
  font-size: 30px;
  font-weight: 600;
  color: var(--mp-slate-teal);
  line-height: 1.35;
  margin-bottom: 20px;
}

.intro-subtext {
  font-size: 15px;
  color: #666666;
  line-height: 1.7;
  max-width: 840px;
  margin: 0 auto;
}

/* --- Statistics Counter Banner --- */
.stats-banner-wrapper {
  max-width: 1240px;
  margin: 30px auto 50px auto;
  padding: 0 20px;
}

.stats-banner-container {
  background-color: var(--mp-orange);
  color: #FFFFFF;
  border-radius: 4px;
  padding: 35px 20px;
}

.stats-col {
  text-align: center;
  padding: 10px 15px;
}

.stats-col-divider {
  border-right: 1px solid rgba(255, 255, 255, 0.35);
}

.stats-num {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}

.stats-tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.95;
}

.stats-center-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  margin: 0 auto 10px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.stats-center-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  max-width: 320px;
  margin: 0 auto;
}

/* --- Life Can Feel Heavy Section --- */
.heavy-section-wrapper {
  max-width: 1240px;
  margin: 40px auto 60px auto;
  padding: 0 20px;
}

.heavy-title {
  font-size: 28px;
  font-weight: 700;
  color: #333333;
  text-align: center;
  margin-bottom: 6px;
}

.heavy-subtitle {
  font-size: 14px;
  color: #666666;
  text-align: center;
  margin-bottom: 30px;
}

.heavy-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 25px;
  border-bottom: 1px solid var(--mp-border-light);
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.heavy-tab-btn {
  background: transparent;
  border: none;
  color: #666666;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 4px 14px 4px;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.heavy-tab-btn.active, .heavy-tab-btn:hover {
  color: var(--mp-orange);
}

.heavy-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--mp-orange);
}

.teal-grid-card {
  background-color: var(--mp-slate-teal);
  color: #FFFFFF;
  border-radius: 6px;
  padding: 35px 25px;
  height: 100%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.condition-grid-item {
  text-align: center;
  padding: 12px 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 6px;
}

.condition-grid-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.condition-icon-box {
  width: 48px;
  height: 48px;
  margin: 0 auto 8px auto;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.condition-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.25;
}

.heavy-image-card {
  height: 100%;
  min-height: 400px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.heavy-image-card img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  max-height: 450px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.heavy-action-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 35px;
}

/* --- SECTION 1: A LIGHTER TOMORROW IS POSSIBLE --- */
.lighter-section {
  background-color: var(--mp-sage-bg);
  padding: 60px 20px;
  width: 100%;
}

.lighter-container {
  max-width: 1240px;
  margin: 0 auto;
}

.lighter-title {
  font-size: 32px;
  font-weight: 700;
  color: #1F2E2E;
  text-align: center;
  margin-bottom: 6px;
}

.lighter-subtitle {
  font-size: 14px;
  color: #2F3E3E;
  text-align: center;
  margin-bottom: 40px;
}

.video-card-item {
  background-color: #353A3A;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
}

.video-card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.video-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 24px;
  padding-left: 4px;
  transition: all 0.3s ease;
}

.video-card-item:hover .video-play-btn {
  background-color: var(--mp-orange);
  border-color: var(--mp-orange);
  transform: scale(1.1);
}

/* --- SECTION 2: PATHWAYS TO SELF-RECLAMATION --- */
.pathways-section {
  background-color: var(--mp-cream-bg);
  padding: 60px 20px;
  width: 100%;
}

.pathways-container {
  max-width: 1240px;
  margin: 0 auto;
}

.pathways-title {
  font-size: 32px;
  font-weight: 700;
  color: #333333;
  text-align: center;
  margin-bottom: 6px;
}

.pathways-subtitle {
  font-size: 14px;
  color: #666666;
  text-align: center;
  margin-bottom: 35px;
}

.pathways-tabs-row {
  display: flex;
  justify-content: center;
  gap: 35px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.pathway-tab-btn {
  background: transparent;
  border: none;
  color: #888888;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  max-width: 160px;
  text-align: center;
}

.pathway-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #CCCCCC;
  transition: all 0.2s ease;
}

.pathway-tab-btn.active .pathway-dot {
  background-color: var(--mp-orange);
  transform: scale(1.2);
}

.pathway-tab-btn.active {
  color: var(--mp-orange);
  font-weight: 700;
}

.pathway-tab-btn:hover {
  color: var(--mp-orange);
}

.pathways-card-wrapper {
  max-width: 1140px;
  margin: 0 auto;
  box-shadow: 0 6px 25px rgba(0,0,0,0.06);
  border-radius: 4px;
  overflow: hidden;
}

.pathway-info-box {
  background-color: var(--mp-powder-blue);
  padding: 45px 40px;
  height: 100%;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.pathway-info-title {
  font-size: 26px;
  font-weight: 700;
  color: #1A3038;
  margin-bottom: 20px;
}

.pathway-info-text {
  font-size: 14px;
  color: #2D444E;
  line-height: 1.75;
  margin-bottom: 16px;
}

.pathway-image-box {
  height: 100%;
  min-height: 420px;
}

.pathway-image-box img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  max-height: 460px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: opacity 0.2s ease;
}

.pathways-swipe-container {
  display: none;
}

/* --- SECTION 3: YOUR SUPPORT SYSTEM TO LEAN ON --- */
.support-banner-section {
  background-color: var(--mp-orange);
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
}

.support-banner-container {
  max-width: 900px;
  margin: 0 auto;
}

.support-banner-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 18px;
}

.support-banner-desc {
  font-size: 15px;
  line-height: 1.75;
  opacity: 0.95;
  margin-bottom: 28px;
}

.btn-read-more-white {
  background-color: #FFFFFF;
  color: var(--mp-orange);
  border: none;
  border-radius: 25px;
  padding: 10px 34px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.btn-read-more-white:hover {
  background-color: #FAF8F5;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* --- SECTION 4: AWARDS & CERTIFICATIONS --- */
.awards-section {
  background-color: #FFFFFF;
  padding: 60px 20px 40px 20px;
}

.awards-container {
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}

.awards-title {
  font-size: 28px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 45px;
}

.awards-grid-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}

.award-item-box {
  width: 125px;
  text-align: center;
}

.award-badge-img-box {
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.award-badge-img-box img, .award-badge-img-box svg {
  max-height: 60px;
  max-width: 100%;
}

.award-item-title {
  font-size: 11px;
  font-weight: 600;
  color: #333333;
  line-height: 1.35;
}

.flourish-line-divider {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: #4A6B6C;
  margin: 50px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flourish-icon-center {
  background-color: #FFFFFF;
  padding: 0 16px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

/* --- SECTION 5: WANT TO UNDERSTAND YOURSELF BETTER --- */
.assessment-section {
  background-color: #FFFFFF;
  padding: 50px 20px 40px 20px;
}

.assessment-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.assessment-title {
  font-size: 28px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 6px;
}

.assessment-subtitle {
  font-size: 14px;
  color: #666666;
  margin-bottom: 45px;
}

.assessment-card-box {
  text-align: center;
  padding: 10px;
}

.assessment-illustration-icon {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.assessment-illustration-icon svg {
  max-height: 80px;
}

.btn-assessment-pill {
  border: 1px solid var(--mp-orange);
  color: var(--mp-orange);
  background-color: #FFFFFF;
  border-radius: 25px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  max-width: 250px;
}

.btn-assessment-pill:hover {
  background-color: #FFF6F2;
  transform: translateY(-2px);
}

.assessment-actions-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 35px;
}

/* ==========================================================================
   PAGE: WHO WE ARE / HOW WE HELP STYLES
   ========================================================================== */
.breadcrumb-wrapper {
  background-color: #FFFFFF;
  padding: 12px 0;
}

.breadcrumb-text {
  font-size: 12px;
  color: #888888;
  text-align: right;
}

.breadcrumb-text a {
  color: #666666;
  text-decoration: none;
}

.breadcrumb-text a:hover {
  color: var(--mp-orange);
}

.breadcrumb-text .active {
  color: var(--mp-orange);
  font-weight: 700;
}

/* Anxiety Hero Section */
.anxiety-hero-section {
  padding: 20px 0 50px 0;
  background-color: #FFFFFF;
}

.anxiety-hero-image-box {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(0,0,0,0.08);
  height: 100%;
  min-height: 380px;
}

.anxiety-hero-image-box img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  max-height: 440px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.anxiety-hero-overlay-text {
  position: absolute;
  top: 30px;
  left: 30px;
  right: 30px;
  color: #FFFFFF;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}

.anxiety-hero-sub-text {
  display: block;
  font-size: 18px;
  font-weight: 400;
  margin-top: 10px;
  font-family: var(--mp-font-main);
  opacity: 0.95;
}

.anxiety-hero-info-box {
  padding: 10px 15px;
}

.anxiety-hero-desc {
  font-size: 15px;
  color: #444444;
  line-height: 1.75;
  margin-bottom: 25px;
}

.anxiety-hero-callout-heading {
  font-size: 20px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 20px;
}

.anxiety-hero-btn-row {
  display: flex;
  gap: 16px;
}

/* Symptoms Banner Section */
.symptoms-banner-section {
  background-color: var(--mp-orange);
  color: #FFFFFF;
  padding: 50px 0;
}

.symptoms-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4px;
}

.symptoms-subtitle {
  font-size: 14px;
  text-align: center;
  margin-bottom: 40px;
  opacity: 0.95;
}

.symptom-item-box {
  text-align: center;
}

.symptom-icon-circle {
  width: 54px;
  height: 54px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  margin: 0 auto 12px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.symptom-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
  line-height: 1.3;
}

/* Written Testimonials Section */
.written-testimonials-section {
  background-color: var(--mp-bg-light);
  padding: 60px 0;
}

.written-title {
  font-size: 32px;
  font-weight: 700;
  color: #333333;
  text-align: center;
  margin-bottom: 4px;
}

.written-subtitle {
  font-size: 14px;
  color: #666666;
  text-align: center;
  margin-bottom: 40px;
}

.written-slider-wrapper {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 45px;
}

.slider-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #CCCCCC;
  background-color: #FFFFFF;
  color: #555555;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
  transition: all 0.2s ease;
}

.slider-arrow-btn.arrow-left {
  left: 0;
}

.slider-arrow-btn.arrow-right {
  right: 0;
}

.slider-arrow-btn:hover {
  background-color: var(--mp-orange);
  border-color: var(--mp-orange);
  color: #FFFFFF;
}

.written-card-box {
  background-color: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 6px;
  padding: 30px 24px;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.testimonial-author-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--mp-slate-teal);
  text-align: center;
  margin-bottom: 15px;
}

.testimonial-quote-text {
  font-size: 13px;
  color: #555555;
  line-height: 1.65;
  text-align: center;
  margin: 0;
}

/* Healing Plan Section (Desktop Layout: Single 4-Card Horizontal Row) */
.healing-plan-section {
  background-color: var(--mp-cream-bg);
  padding: 60px 0 0 0;
}

.healing-plan-title {
  font-size: 32px;
  font-weight: 700;
  color: #333333;
  text-align: center;
  margin-bottom: 4px;
}

.healing-plan-subtitle {
  font-size: 14px;
  color: #666666;
  text-align: center;
  margin-bottom: 45px;
}

.healing-plan-row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: nowrap;
  max-width: 1180px;
  margin: 0 auto;
}

.healing-plan-row .step-col {
  flex: 1;
  min-width: 210px;
  max-width: 255px;
  padding: 0;
}

.step-card-box {
  background-color: #FFFFFF;
  border: 1px solid #E2D6CC;
  border-radius: 6px;
  padding: 26px 18px;
  text-align: center;
  height: 100%;
  box-shadow: 0 4px 14px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.step-icon-box {
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.step-card-title {
  font-size: 14px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 10px;
}

.step-card-desc {
  font-size: 12px;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

.step-arrow-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #888888;
  padding: 0 6px;
  flex: 0 0 auto;
}

.anxiety-test-strip {
  background-color: var(--mp-orange);
  padding: 12px 0;
  margin-top: 50px;
}

.btn-anxiety-test {
  background-color: #FFFFFF;
  color: var(--mp-orange);
  border: none;
  border-radius: 20px;
  padding: 6px 24px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
}

.btn-anxiety-test:hover {
  background-color: #FAF8F5;
  transform: translateY(-1px);
}

/* FAQ Section */
.faq-section {
  background-color: #FFFFFF;
  padding: 60px 0 40px 0;
}

.faq-title {
  font-size: 32px;
  font-weight: 700;
  color: #333333;
  text-align: center;
  margin-bottom: 40px;
}

.faq-accordion-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #E0E0E0;
  border-radius: 6px !important;
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-item .accordion-button {
  background-color: #FAF8F5;
  color: #333333;
  font-size: 15px;
  font-weight: 600;
  padding: 18px 24px;
  box-shadow: none;
}

.faq-item .accordion-button:not(.collapsed) {
  background-color: #FFF5ED;
  color: var(--mp-orange);
}

.faq-item .accordion-body {
  font-size: 14px;
  color: #555555;
  line-height: 1.7;
  padding: 18px 24px;
}

/* Coexist Section */
.coexist-section {
  background-color: var(--mp-powder-blue);
  padding: 60px 0;
}

.coexist-title {
  font-size: 32px;
  font-weight: 700;
  color: #1A3038;
  text-align: center;
  margin-bottom: 6px;
}

.coexist-subtitle {
  font-size: 14px;
  color: #2D444E;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
}

.coexist-slate-box {
  background-color: var(--mp-slate-teal);
  color: #FFFFFF;
  border-radius: 6px;
  padding: 35px 25px;
  height: 100%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.coexist-box-title {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: 0.4px;
}

/* ==========================================================================
   PAGE: OUR STORY STYLES
   ========================================================================== */
.story-hero-section {
  padding: 30px 0 50px 0;
  background-color: #FFFFFF;
}

.story-hero-img-box {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(0,0,0,0.08);
}

.story-hero-img-box img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  max-height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.story-hero-info-box {
  padding: 10px 15px;
}

.story-doctor-tagline {
  font-size: 13px;
  font-weight: 700;
  color: var(--mp-orange);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.story-doctor-name {
  font-size: 34px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 16px;
}

.story-callout-quote {
  font-size: 20px;
  font-weight: 700;
  color: var(--mp-slate-teal);
  line-height: 1.35;
  margin-bottom: 20px;
}

.story-body-text {
  font-size: 14px;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Story Statistics Banner */
.story-stats-banner {
  background-color: var(--mp-orange);
  color: #FFFFFF;
  padding: 35px 0;
}

.story-stats-row {
  max-width: 1140px;
  margin: 0 auto;
}

.story-stat-col {
  text-align: center;
  padding: 10px 15px;
}

.story-stat-divider {
  border-right: 1px solid rgba(255, 255, 255, 0.35);
}

.story-stat-head {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
}

.story-stat-num {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.story-stat-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.95;
}

/* Story Mind Section */
.story-mind-section {
  background-color: var(--mp-bg-light);
  padding: 60px 0;
}

.story-mind-card {
  background-color: var(--mp-cream-bg);
  border-radius: 6px;
  padding: 45px 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.story-mind-title {
  font-size: 30px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 20px;
}

.story-mind-desc {
  font-size: 14px;
  color: #555555;
  line-height: 1.75;
  margin: 0;
}

.story-doctor-photo-box {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  border: 4px solid #FFFFFF;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.story-doctor-photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Story Credentials Section */
.story-credentials-section {
  background-color: #FFFFFF;
  padding: 60px 0 40px 0;
}

.credentials-main-title {
  font-size: 32px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 10px;
}

.credentials-doctor-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--mp-orange);
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.credentials-doctor-sub {
  font-size: 12px;
  color: #666666;
  margin-bottom: 45px;
}

.credentials-grid-row {
  max-width: 1140px;
  margin: 0 auto;
}

.cred-item-box {
  text-align: center;
  padding: 12px 10px;
  height: 100%;
}

.cred-wreath-icon {
  font-size: 32px;
  color: var(--mp-slate-teal);
  margin-bottom: 12px;
}

.cred-text {
  font-size: 11px;
  font-weight: 600;
  color: #333333;
  line-height: 1.4;
}

/* Team Section */
.team-section {
  background-color: var(--mp-powder-blue);
  padding: 60px 0;
}

.team-section-title {
  font-size: 28px;
  font-weight: 700;
  color: #1A3038;
}

.team-logo-badge {
  height: 45px;
  width: auto;
}

.team-carousel-wrapper {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}

.team-card-box {
  background-color: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.team-avatar-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 25px auto 15px auto;
  border: 3px solid var(--mp-powder-blue);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.team-avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.team-info-body {
  padding: 0 20px 20px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.team-member-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--mp-orange);
  margin-bottom: 4px;
}

.team-member-role {
  font-size: 12px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 8px;
}

.team-member-degree {
  font-size: 11px;
  color: #666666;
  line-height: 1.4;
  margin-bottom: 16px;
  flex-grow: 1;
}

.team-exp-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #FFF5ED;
  color: var(--mp-orange);
  border: 1px solid #FAD5C5;
  border-radius: 15px;
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 700;
  margin: 0 auto;
}

/* --- FOOTER & COPYRIGHT BAR --- */
.site-footer {
  background-color: var(--mp-footer-bg);
  padding: 50px 20px 30px 20px;
  border-top: 1px solid #F0DFD5;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--mp-orange);
  margin-bottom: 16px;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li {
  margin-bottom: 8px;
}

.footer-nav-list a {
  color: #555555;
  font-size: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-nav-list a:hover {
  color: var(--mp-orange);
}

.footer-logo-img {
  height: 65px;
  width: auto;
  margin-bottom: 12px;
}

.footer-tagline-text {
  font-size: 12px;
  color: #666666;
  line-height: 1.6;
  max-width: 220px;
}

.social-round-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #CCCCCC;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #555555;
  font-size: 14px;
  margin-right: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-round-btn:hover {
  border-color: var(--mp-orange);
  background-color: var(--mp-orange);
  color: #FFFFFF;
}

.newsletter-box {
  position: relative;
  margin-top: 10px;
  max-width: 240px;
}

.newsletter-box input {
  width: 100%;
  border-radius: 20px;
  border: 1px solid #DDDDDD;
  padding: 8px 45px 8px 16px;
  font-size: 12px;
  background: #FFFFFF;
}

.newsletter-box input:focus {
  outline: none;
  border-color: var(--mp-orange);
}

.newsletter-submit-btn {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--mp-orange);
  color: #FFFFFF;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.bottom-copyright-bar {
  background-color: var(--mp-orange);
  color: #FFFFFF;
  padding: 14px 20px;
  font-size: 12px;
}

.bottom-copyright-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE MEDIA QUERIES (DESKTOP LAYOUT REMAINS UNTOUCHED)
   ========================================================================== */

/* --- Tablet & Mobile Devices (max-width: 991px) --- */
@media (max-width: 991px) {
  /* Header Mobile/Tablet Custom Drawer */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
  }

  .header-right-nav {
    display: none;
    width: 100%;
    margin-top: 15px;
    padding: 20px;
    background-color: #FFF8F5;
    border-radius: 8px;
    border: 1px solid #F0DFD5;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  }

  .header-right-nav.open {
    display: block;
    animation: fadeInDown 0.25s ease-out forwards;
  }

  .iso-text {
    text-align: center;
    margin-bottom: 12px;
  }

  .nav-pills-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .header-pill-btn {
    justify-content: center;
    padding: 10px 18px;
    font-size: 13px;
    width: 100%;
  }

  /* Hero Slider Banner */
  .hero-wrapper {
    margin-top: 5px;
    margin-bottom: 20px;
  }

  .hero-banner-item {
    height: 420px;
  }

  .hero-title-overlay {
    font-size: 28px;
    top: 30px;
    left: 30px;
    max-width: 75%;
  }

  /* Stats Banner */
  .stats-col-divider {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    margin-bottom: 15px;
    padding-bottom: 20px;
  }

  .stats-num {
    font-size: 36px;
  }

  .stats-center-text {
    font-size: 16px;
  }

  /* Heavy Section Tabs & Images */
  .heavy-tabs-nav {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    gap: 18px;
  }

  .teal-grid-card {
    min-height: auto;
    padding: 25px 18px;
  }

  .heavy-image-card {
    min-height: 320px;
  }

  .heavy-image-card img {
    min-height: 320px;
    max-height: 380px;
  }

  /* Lighter Tomorrow Section */
  .lighter-section {
    padding: 45px 15px;
    overflow: hidden;
  }

  .lighter-title {
    font-size: 26px;
  }

  .lighter-video-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 15px;
    padding-left: 5px;
    padding-right: 5px;
    gap: 16px;
  }

  .lighter-video-row .video-col {
    flex: 0 0 85% !important;
    max-width: 85% !important;
    scroll-snap-align: center;
  }

  /* Pathways Section */
  .pathways-section {
    padding: 45px 15px;
    overflow: hidden;
  }

  .pathways-title {
    font-size: 26px;
  }

  .pathways-card-wrapper {
    display: none;
  }

  .pathways-swipe-container {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 15px;
    padding-left: 5px;
    padding-right: 5px;
    gap: 16px;
  }

  .pathway-card-slide {
    flex: 0 0 88% !important;
    max-width: 88% !important;
    scroll-snap-align: center;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  }

  .pathway-info-box {
    padding: 30px 22px;
    min-height: auto;
  }

  .pathway-info-title {
    font-size: 22px;
  }

  .pathway-image-box {
    min-height: 240px;
  }

  .pathway-image-box img {
    min-height: 240px;
    max-height: 280px;
  }

  .pathways-tabs-row {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    gap: 20px;
  }

  /* Support Banner */
  .support-banner-title {
    font-size: 26px;
  }

  .support-banner-desc {
    font-size: 14px;
  }

  /* Awards Section */
  .awards-section {
    padding: 45px 15px 30px 15px;
    overflow: hidden;
  }

  .awards-grid-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 15px;
    padding-left: 5px;
    padding-right: 5px;
    gap: 20px;
    justify-content: flex-start;
  }

  .awards-grid-row .award-item-box {
    flex: 0 0 140px !important;
    width: 140px !important;
    scroll-snap-align: center;
  }

  /* Self Assessment Section */
  .assessment-section {
    padding: 45px 15px 30px 15px;
    overflow: hidden;
  }

  .assessment-cards-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 15px;
    padding-left: 5px;
    padding-right: 5px;
    gap: 16px;
  }

  .assessment-cards-row .assessment-col {
    flex: 0 0 85% !important;
    max-width: 85% !important;
    scroll-snap-align: center;
  }

  /* Who We Are / How We Help Mobile & Tablet Swipe Optimizations */
  .anxiety-hero-overlay-text {
    font-size: 24px;
    top: 20px;
    left: 20px;
    right: 20px;
  }

  .anxiety-hero-sub-text {
    font-size: 15px;
  }

  .anxiety-hero-btn-row {
    flex-direction: column;
  }

  .anxiety-hero-btn-row .btn-cta-orange {
    width: 100%;
    justify-content: center;
  }

  .symptoms-grid-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
    gap: 16px;
  }

  .symptom-col {
    flex: 0 0 110px !important;
    max-width: 110px !important;
    scroll-snap-align: center;
  }

  .written-slider-wrapper {
    padding: 0;
  }

  .slider-arrow-btn {
    display: none;
  }

  .written-testimonials-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 15px;
    gap: 16px;
  }

  .testimonial-card-col {
    flex: 0 0 85% !important;
    max-width: 85% !important;
    scroll-snap-align: center;
  }

  /* Healing Plan Row Mobile/Tablet Horizontal Left-to-Right Swipe Scroll */
  .healing-plan-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 15px;
    gap: 16px;
    justify-content: flex-start;
  }

  .healing-plan-row .step-col {
    flex: 0 0 85% !important;
    max-width: 85% !important;
    min-width: unset !important;
    scroll-snap-align: center;
  }

  .step-arrow-divider {
    display: none !important;
  }

  .coexist-cards-row {
    flex-direction: column;
  }

  /* Our Story Mobile & Tablet Optimizations */
  .story-doctor-name {
    font-size: 26px;
  }

  .story-callout-quote {
    font-size: 17px;
  }

  .story-stat-divider {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    margin-bottom: 12px;
    padding-bottom: 15px;
  }

  .story-mind-card {
    padding: 30px 20px;
  }

  .story-mind-title {
    font-size: 22px;
  }

  .story-doctor-photo-box {
    width: 200px;
    height: 200px;
  }

  .credentials-main-title {
    font-size: 24px;
  }

  .credentials-grid-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 15px;
    gap: 14px;
  }

  .cred-col {
    flex: 0 0 160px !important;
    max-width: 160px !important;
    scroll-snap-align: center;
  }

  .team-cards-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 15px;
    gap: 16px;
  }

  .team-card-col {
    flex: 0 0 85% !important;
    max-width: 85% !important;
    scroll-snap-align: center;
  }
}

/* --- Mobile Devices (max-width: 767px) --- */
@media (max-width: 767px) {
  /* Header Mobile */
  .site-header {
    padding: 10px 0;
  }

  .site-logo-img {
    height: 65px;
  }

  /* Hero Slider Banner Mobile */
  .hero-banner-item {
    height: 380px;
    background-position: center center;
  }

  .hero-title-overlay {
    font-size: 22px;
    top: 20px;
    left: 20px;
    max-width: 70%;
    line-height: 1.3;
  }

  .metro-station-badge {
    top: 12px;
    right: 12px;
    width: 75px;
    padding: 6px 8px;
    font-size: 10px;
  }

  .metro-icon-circle {
    width: 26px;
    height: 26px;
    font-size: 13px;
  }

  .hero-cta-box {
    bottom: 15px;
    right: 15px;
    left: 15px;
    flex-direction: column;
    gap: 8px;
  }

  .btn-cta-orange {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 10px 18px;
  }

  #heroCarousel .carousel-indicators {
    left: 20px;
    bottom: 110px;
  }

  /* Intro Section Mobile */
  .intro-section {
    margin: 30px auto 30px auto;
    padding: 0 15px;
  }

  .intro-heading {
    font-size: 22px;
    line-height: 1.35;
  }

  .intro-subtext {
    font-size: 14px;
  }

  /* Stats Banner Mobile */
  .stats-banner-container {
    padding: 25px 15px;
  }

  .stats-num {
    font-size: 32px;
  }

  .stats-center-text {
    font-size: 15px;
  }

  /* Heavy Section Mobile */
  .heavy-title {
    font-size: 22px;
  }

  .heavy-subtitle {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .condition-icon-box {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .condition-label {
    font-size: 10px;
  }

  .heavy-action-row {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .heavy-action-row .btn-cta-orange {
    width: 100%;
  }

  /* Lighter Tomorrow Video Section Mobile */
  .lighter-video-row .video-col {
    flex: 0 0 88% !important;
    max-width: 88% !important;
  }

  .video-card-item {
    aspect-ratio: 16 / 9;
  }

  .video-play-btn {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }

  /* Pathways Section Mobile */
  .pathway-card-slide {
    flex: 0 0 90% !important;
    max-width: 90% !important;
  }

  .pathway-tab-btn {
    font-size: 12px;
    max-width: 140px;
  }

  .pathway-info-box {
    padding: 22px 18px;
  }

  .pathway-info-title {
    font-size: 19px;
  }

  .pathway-info-text {
    font-size: 13px;
  }

  .pathway-image-box {
    min-height: 220px;
  }

  .pathway-image-box img {
    min-height: 220px;
    max-height: 260px;
  }

  /* Support Banner Mobile */
  .support-banner-section {
    padding: 40px 15px;
  }

  .support-banner-title {
    font-size: 22px;
  }

  .support-banner-desc {
    font-size: 13px;
  }

  /* Awards Section Mobile */
  .awards-section {
    padding: 35px 15px 30px 15px;
  }

  .awards-title {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .awards-grid-row .award-item-box {
    flex: 0 0 135px !important;
    width: 135px !important;
  }

  /* Self Assessment Section Mobile */
  .assessment-section {
    padding: 35px 15px 30px 15px;
  }

  .assessment-title {
    font-size: 22px;
  }

  .assessment-subtitle {
    font-size: 13px;
    margin-bottom: 30px;
  }

  .assessment-cards-row .assessment-col {
    flex: 0 0 88% !important;
    max-width: 88% !important;
  }

  .btn-assessment-pill {
    max-width: 100%;
  }

  .assessment-actions-row {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  /* Footer Mobile */
  .site-footer {
    padding: 40px 15px 20px 15px;
  }

  .footer-col-title {
    margin-bottom: 12px;
  }

  .newsletter-box {
    max-width: 100%;
  }

  .bottom-copyright-container {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
