/* ==========================================================================
   MNR Helpline - mnrhelpline.website
   Style: Compassionate Care (#10) | Architecture: Progressive Disclosure (#10)
   Generated: 2026-02-11
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Open+Sans:wght@400;500;600&family=Poppins:wght@400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --primary: #7B68A6;
  --primary-dark: #5E4D8A;
  --primary-light: #9A8ABF;
  --secondary: #C9A0C9;
  --secondary-light: #DFC4DF;
  --accent: #F0B5B5;
  --accent-light: #F8D8D8;
  --text: #3D3250;
  --text-light: #5E5272;
  --text-muted: #8A7F9A;
  --bg: #FBF9FC;
  --bg-alt: #FFFFFF;
  --bg-card: #FFFFFF;
  --border: #E8E0F0;
  --border-light: #F0EAF5;
  --shadow: rgba(123, 104, 166, 0.1);
  --shadow-md: rgba(123, 104, 166, 0.15);
  --shadow-lg: rgba(123, 104, 166, 0.2);
  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;
  --max-width: 1200px;
  --header-height: 70px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.5em;
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

/* --- Utility Classes --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--alt {
  background-color: var(--bg-alt);
}

.section--purple {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
}

.section--purple h2,
.section--purple h3,
.section--purple p,
.section--purple li {
  color: #fff;
}

.section--purple p,
.section--purple li {
  opacity: 0.92;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary); }

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section__subtitle {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.section--purple .section__subtitle {
  color: var(--accent-light);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 15px var(--shadow-md);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-lg);
  color: #fff;
}

.btn--secondary {
  background: var(--bg-alt);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn--secondary:hover {
  background: var(--primary);
  color: #fff;
}

.btn--accent {
  background: linear-gradient(135deg, var(--accent) 0%, #E89A9A 100%);
  color: var(--text);
  box-shadow: 0 4px 15px rgba(240, 181, 181, 0.3);
}

.btn--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240, 181, 181, 0.4);
}

.btn--white {
  background: #fff;
  color: var(--primary);
}

.btn--white:hover {
  background: var(--bg);
  transform: translateY(-2px);
  color: var(--primary-dark);
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.btn--sm {
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
}

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(251, 249, 252, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition);
  height: var(--header-height);
}

.header.scrolled {
  box-shadow: 0 2px 20px var(--shadow);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header__logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
}

.header__logo span {
  color: var(--secondary);
}

.header__phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
}

.header__phone svg {
  width: 18px;
  height: 18px;
  fill: var(--primary);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Mobile Navigation Overlay --- */
.nav-overlay {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(251, 249, 252, 0.98);
  backdrop-filter: blur(15px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-overlay__links {
  list-style: none;
  padding: 0;
  text-align: center;
}

.nav-overlay__links li {
  margin-bottom: 1.5rem;
}

.nav-overlay__links a {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}

.nav-overlay__links a:hover,
.nav-overlay__links a.active {
  color: var(--primary);
}

.nav-overlay__cta {
  margin-top: 2rem;
  text-align: center;
}

.nav-overlay__phone {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* --- Progress Bar (Progressive Disclosure) --- */
.progress-bar {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  height: 3px;
  background: var(--border-light);
  z-index: 998;
}

.progress-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
  width: 0%;
  transition: width 0.2s ease;
  border-radius: 0 2px 2px 0;
}

/* --- Skip Navigation --- */
.skip-nav {
  position: fixed;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: #fff;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 10000;
  font-weight: 600;
  transition: top var(--transition);
}

.skip-nav:focus {
  top: 0;
  color: #fff;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 2rem) 1.5rem 4rem;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(123, 104, 166, 0.88) 0%,
    rgba(94, 77, 138, 0.85) 40%,
    rgba(201, 160, 201, 0.75) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

.hero__badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(5px);
}

.hero h1 {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero__subtitle {
  color: rgba(255,255,255,0.92);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.9);
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.hero__phone a {
  color: #fff;
}

.hero__phone svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
}

/* --- Trust Bar --- */
.trust-bar {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border-light);
  padding: 1.5rem 0;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.trust-bar__icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-bar__icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.trust-bar__text {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.trust-bar__subtext {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* --- Progressive Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

.reveal--left {
  opacity: 0;
  transform: translateX(-40px);
}

.reveal--left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal--right {
  opacity: 0;
  transform: translateX(40px);
}

.reveal--right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal--scale {
  opacity: 0;
  transform: scale(0.92);
}

.reveal--scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* --- Cards --- */
.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 20px var(--shadow);
  transition: all var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--shadow-md);
}

.card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.card__icon svg {
  width: 28px;
  height: 28px;
  fill: var(--primary-dark);
}

.card__title {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.card__text {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.card__link {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.card__link:hover {
  gap: 0.6rem;
}

/* --- Programs Grid --- */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* --- Features Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.feature__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature__icon svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-dark);
}

.feature__title {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.feature__text {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* --- Amenities Preview --- */
.amenities-preview__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.amenities-preview__item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.amenities-preview__item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.amenities-preview__item:hover img {
  transform: scale(1.05);
}

.amenities-preview__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(61, 50, 80, 0.8));
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
}

/* --- Testimonials --- */
.testimonials-slider {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.testimonial {
  display: none;
  text-align: center;
  padding: 0 1rem;
}

.testimonial.active {
  display: block;
}

.testimonial__quote {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial__quote::before {
  content: "\201C";
  font-size: 4rem;
  font-family: 'Libre Baskerville', serif;
  color: var(--secondary-light);
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}

.testimonial__author {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.testimonial__program {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.testimonials-nav__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.testimonials-nav__dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

/* --- Testimonials Grid (About Page) --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(123, 104, 166, 0.08);
  border: 1px solid var(--border);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(123, 104, 166, 0.15);
}

.testimonial-card__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-family: 'Libre Baskerville', serif;
  font-size: 1.8rem;
  color: var(--primary);
  line-height: 1;
}

.testimonial-card__quote {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--text);
  margin: 0 0 1.25rem 0;
  border: none;
  padding: 0;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.testimonial-card__author strong {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
}

.testimonial-card__author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 4rem 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(201, 160, 201, 0.15);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(240, 181, 181, 0.1);
  border-radius: 50%;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-section__phone {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 0.5rem;
}

.cta-section__phone a {
  color: #fff;
}

.cta-section__note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.5rem;
}

/* --- Footer --- */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer__brand {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.footer__brand span {
  color: var(--secondary);
}

.footer__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer__heading {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.25rem;
}

.footer__links {
  list-style: none;
  padding: 0;
}

.footer__links li {
  margin-bottom: 0.6rem;
  color: rgba(255,255,255,0.65);
}

.footer__links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--accent);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-item a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.footer__contact-item a:hover {
  color: var(--accent);
}

.footer__contact-item span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copyright {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.footer__legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer__legal-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.footer__legal-links a:hover {
  color: var(--accent);
}

/* --- Inner Page Hero --- */
.page-hero {
  position: relative;
  padding: calc(var(--header-height) + 4rem) 0 4rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, rgba(201,160,201,0.9) 100%);
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(201,160,201,0.15);
  border-radius: 50%;
}

.page-hero h1 {
  color: #fff;
  font-size: 2.3rem;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.page-hero__subtitle {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: 1rem 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border-light);
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
}

.breadcrumbs__list li {
  margin: 0;
}

.breadcrumbs__list a {
  color: var(--text-muted);
}

.breadcrumbs__list a:hover {
  color: var(--primary);
}

.breadcrumbs__separator {
  color: var(--text-muted);
}

.breadcrumbs__current {
  color: var(--primary);
  font-weight: 600;
}

/* --- Continue / Reveal Buttons --- */
.continue-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary) 100%);
  color: var(--text);
  border: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 1.5rem;
}

.continue-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--shadow-md);
}

.continue-btn svg {
  width: 16px;
  height: 16px;
  fill: var(--text);
  transition: transform var(--transition);
}

.continue-btn:hover svg {
  transform: translateY(2px);
}

/* --- Collapsible Sections (Progressive Disclosure) --- */
.disclosure {
  border-bottom: 1px solid var(--border-light);
}

.disclosure__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color var(--transition);
}

.disclosure__trigger:hover {
  color: var(--primary);
}

.disclosure__icon {
  width: 28px;
  height: 28px;
  background: var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}

.disclosure__icon svg {
  width: 14px;
  height: 14px;
  fill: var(--text-muted);
  transition: transform var(--transition);
}

.disclosure.open .disclosure__icon {
  background: var(--primary);
}

.disclosure.open .disclosure__icon svg {
  fill: #fff;
  transform: rotate(180deg);
}

.disclosure__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.disclosure__content-inner {
  padding: 0 0 2rem;
}

/* --- FAQ Accordion --- */
.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: var(--border);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: var(--bg-alt);
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 1rem;
  transition: all var(--transition);
}

.faq-item__question:hover {
  background: var(--bg);
}

.faq-item.open .faq-item__question {
  background: var(--bg);
  color: var(--primary);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--primary);
  transition: transform var(--transition);
}

.faq-item__icon::before {
  top: 50%;
  left: 4px;
  right: 4px;
  height: 2px;
  transform: translateY(-50%);
}

.faq-item__icon::after {
  left: 50%;
  top: 4px;
  bottom: 4px;
  width: 2px;
  transform: translateX(-50%);
}

.faq-item.open .faq-item__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item__answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.92rem;
  line-height: 1.8;
}

/* --- Stats Bar --- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stats-bar__item {
  padding: 1.5rem;
}

.stats-bar__number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.section--purple .stats-bar__number {
  color: #fff;
}

.stats-bar__label {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

.section--purple .stats-bar__label {
  color: rgba(255,255,255,0.8);
}

/* --- Image Gallery Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-grid__item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-grid__item:hover img {
  transform: scale(1.05);
}

/* --- Timeline / Steps --- */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 2.5rem;
}

.steps::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.step {
  position: relative;
  padding: 0 0 2.5rem 2rem;
}

.step:last-child {
  padding-bottom: 0;
}

.step__number {
  position: absolute;
  left: -2.5rem;
  top: 0;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 1;
}

.step__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.step__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* --- Two Column Layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-col--reverse {
  direction: rtl;
}

.two-col--reverse > * {
  direction: ltr;
}

.two-col__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 30px var(--shadow-md);
}

.two-col__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Insurance Grid --- */
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.insurance-grid__item {
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  transition: all var(--transition);
}

.insurance-grid__item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 15px var(--shadow);
}

/* --- Blog Grid --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 20px var(--shadow);
  transition: all var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--shadow-md);
}

.blog-card__image {
  height: 200px;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__body {
  padding: 1.5rem;
}

.blog-card__category {
  display: inline-block;
  font-size: 0.75rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.blog-card__title {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.blog-card__title a {
  color: var(--text);
}

.blog-card__title a:hover {
  color: var(--primary);
}

.blog-card__excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.blog-card__meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Contact Info --- */
.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.contact-info__card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px var(--shadow);
}

.contact-info__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.contact-info__icon svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

.contact-info__label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-info__value {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-info__value a {
  color: var(--primary);
  font-weight: 600;
}

/* --- Map --- */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 30px var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

/* --- Privacy / Legal Text --- */
.legal-text h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal-text h3 {
  font-size: 1.15rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.legal-text p,
.legal-text li {
  font-size: 0.92rem;
  line-height: 1.8;
}

/* --- Daily Schedule Table --- */
.schedule-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.schedule-table th {
  background: var(--primary);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 1rem 1.25rem;
  text-align: left;
}

.schedule-table td {
  padding: 0.85rem 1.25rem;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-light);
}

.schedule-table tr:last-child td {
  border-bottom: none;
}

.schedule-table tr:nth-child(even) td {
  background: var(--bg);
}

/* --- Comparison Table --- */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-light);
  margin: 1.5rem 0;
}

.comparison-table th {
  background: var(--primary);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.85rem 1rem;
  text-align: center;
}

.comparison-table th:first-child {
  text-align: left;
}

.comparison-table td {
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border-light);
  text-align: center;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
}

.comparison-table tr:nth-child(even) td {
  background: var(--bg);
}

/* --- Modality Tags --- */
.modality-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0;
}

.modality-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.15rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}

.modality-tag:hover {
  border-color: var(--primary);
  background: var(--bg-alt);
}

/* --- Team Cards --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px var(--shadow);
}

.team-card__avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary-light) 0%, var(--accent-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.team-card__name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.team-card__title {
  font-size: 0.85rem;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-card__bio {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* --- Responsive --- */
@media (min-width: 768px) {
  .header__phone {
    display: flex;
  }

  h1 { font-size: 3rem; }
  .hero h1 { font-size: 3.2rem; }
}

@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .two-col--reverse {
    direction: ltr;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }

  .section {
    padding: 3.5rem 0;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.25rem; }

  .hero {
    min-height: 85vh;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .programs-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .amenities-preview__grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .insurance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }

  .cta-section__phone {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn--lg {
    width: 100%;
  }

  .insurance-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
