/* ============================================================
   MTN Rehab - Compassionate Care #10 + Mega-Menu Corporate #2
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
  --primary: #7B68A6;
  --primary-dark: #5E4D8A;
  --primary-light: #9A8BBF;
  --secondary: #C9A0C9;
  --accent: #F0B5B5;
  --accent-dark: #D98E8E;
  --text: #3D3250;
  --text-light: #6B5E80;
  --bg: #FBF9FC;
  --bg-alt: #FFFFFF;
  --bg-soft: #F3EFF8;
  --white: #FFFFFF;
  --border: #E6DFF0;
  --shadow: rgba(123, 104, 166, 0.12);
  --shadow-lg: rgba(123, 104, 166, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: 0.3s ease;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --max-width: 1200px;
  --header-height: 90px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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); }
ul, ol { list-style: none; }

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--primary);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 10000;
  font-weight: 600;
}
.skip-link:focus {
  top: 16px;
  color: var(--white);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text);
  line-height: 1.3;
  font-weight: 600;
}

h1 { font-size: 2.75rem; margin-bottom: 1rem; }
h2 { font-size: 2.1rem; margin-bottom: 0.85rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.7rem; }
h4 { font-size: 1.2rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; }

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(123, 104, 166, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(123, 104, 166, 0.45);
  color: var(--white);
}
.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-accent {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: var(--white);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(240, 181, 181, 0.4);
  color: var(--white);
}

/* ============================================================
   HEADER — Mega-Menu Corporate
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  z-index: 1000;
  box-shadow: 0 2px 20px var(--shadow);
  transition: all var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 24px var(--shadow-lg);
}

/* Top Bar */
.top-bar {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 8px 0;
  font-size: 0.875rem;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a { color: var(--white); }
.top-bar a:hover { color: var(--accent); }
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Main Nav */
.main-nav {
  padding: 0;
}
.main-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.site-logo a {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-logo a:hover { color: var(--primary-dark); }
.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
}
.nav-links > li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 18px;
  height: 100%;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
}
.nav-links > li > a:hover,
.nav-links > li.active > a {
  color: var(--primary);
}
.nav-links > li > a .arrow {
  font-size: 0.65rem;
  transition: transform var(--transition);
}
.nav-links > li:hover > a .arrow {
  transform: rotate(180deg);
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 15px 40px var(--shadow-lg);
  padding: 30px;
  min-width: 480px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  pointer-events: none;
  border-top: 3px solid var(--primary);
}
.nav-links > li:hover > .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.mega-menu-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.mega-menu-item:hover {
  background: var(--bg-soft);
}
.mega-menu-item .mm-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--primary);
}
.mega-menu-item:hover .mm-icon {
  background: var(--primary);
  color: var(--white);
}
.mega-menu-item .mm-text h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
  color: var(--text);
}
.mega-menu-item .mm-text p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.4;
}

/* Header CTA */
.header-cta .btn {
  padding: 10px 24px;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  position: relative;
  transition: var(--transition);
}
.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  width: 26px;
  height: 2px;
  background: var(--text);
  left: 0;
  transition: var(--transition);
}
.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: calc(var(--header-height) + 40px);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(123,104,166,0.85) 0%, rgba(201,160,201,0.7) 50%, rgba(240,181,181,0.6) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: var(--white);
}
.hero-content h1 {
  color: var(--white);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Page Hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 80px 0 60px;
  text-align: center;
  margin-top: calc(var(--header-height) + 40px);
}
.page-hero h1 {
  color: var(--white);
  font-size: 2.5rem;
}
.page-hero p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 16px 0;
  background: var(--bg-soft);
  font-size: 0.875rem;
}
.breadcrumbs a { color: var(--primary); }
.breadcrumbs span { color: var(--text-light); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 80px 0;
}
.section-alt {
  background: var(--bg-soft);
}
.section-white {
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.section-header h2 {
  position: relative;
  display: inline-block;
}
.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 2px;
  margin: 12px auto 0;
}
.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-top: 12px;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--white);
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}
.trust-bar .container {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}
.trust-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
}

/* ============================================================
   CARDS
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 35px 30px;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all var(--transition);
  border: 1px solid transparent;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px var(--shadow-lg);
  border-color: var(--secondary);
}
.card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--bg-soft), rgba(201,160,201,0.2));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 20px;
  color: var(--primary);
}
.card h3 { font-size: 1.25rem; }
.card p { color: var(--text-light); font-size: 0.95rem; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 12px;
}
.card-link:hover { gap: 10px; }

/* Image Card */
.img-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 20px var(--shadow);
  transition: all var(--transition);
}
.img-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px var(--shadow-lg);
}
.img-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.img-card-body {
  padding: 24px;
}
.img-card-body h3 { font-size: 1.15rem; }
.img-card-body p { color: var(--text-light); font-size: 0.9rem; }

/* ============================================================
   WHY CHOOSE US / FEATURES
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.feature-item {
  text-align: center;
  padding: 30px 20px;
}
.feature-item .feature-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.6rem;
  color: var(--white);
}
.feature-item h3 { font-size: 1.1rem; }
.feature-item p { color: var(--text-light); font-size: 0.9rem; }

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  text-align: center;
}
.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-top: 6px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 35px;
  box-shadow: 0 4px 20px var(--shadow);
  position: relative;
  border-left: 4px solid var(--secondary);
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--secondary);
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
  opacity: 0.5;
}
.testimonial-text {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
}
.testimonial-program {
  font-size: 0.85rem;
  color: var(--text-light);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* ============================================================
   GALLERY / AMENITIES
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--transition);
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(61,50,80,0.8));
  color: var(--white);
  padding: 20px 16px 12px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  box-shadow: 0 2px 10px var(--shadow);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-question .faq-toggle {
  font-size: 1.3rem;
  color: var(--primary);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.active .faq-question .faq-toggle {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px var(--shadow-lg);
}
.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-card-body {
  padding: 24px;
}
.blog-card-meta {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 8px;
  display: flex;
  gap: 16px;
}
.blog-card-body h3 { font-size: 1.15rem; }
.blog-card-body h3 a { color: var(--text); }
.blog-card-body h3 a:hover { color: var(--primary); }
.blog-card-body p { color: var(--text-light); font-size: 0.9rem; }

/* ============================================================
   CONTACT & FORMS
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 10px var(--shadow);
  margin-bottom: 16px;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-info-card h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-info-card p { font-size: 0.9rem; color: var(--text-light); margin: 0; }
.contact-info-card a { color: var(--primary); font-weight: 600; }

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
}
.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 60px 0;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.cta-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .cta-phone {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 20px;
}
.cta-banner .cta-phone:hover { color: var(--accent); }

/* ============================================================
   INSURANCE GRID
   ============================================================ */
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.insurance-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  transition: all var(--transition);
}
.insurance-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 15px var(--shadow);
}

/* ============================================================
   PROGRAMS TABS / SECTIONS
   ============================================================ */
.program-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.program-section:last-child { border-bottom: none; }
.program-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.program-content.reverse { direction: rtl; }
.program-content.reverse > * { direction: ltr; }
.program-image {
  border-radius: var(--radius);
  overflow: hidden;
}
.program-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.program-text h3 { font-size: 1.6rem; margin-bottom: 12px; }
.program-text p { color: var(--text-light); }
.program-list {
  margin: 16px 0;
}
.program-list li {
  padding: 6px 0 6px 28px;
  position: relative;
  color: var(--text);
  font-size: 0.95rem;
}
.program-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* Step Timeline */
.steps-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  counter-reset: step;
}
.step-item {
  text-align: center;
  position: relative;
  counter-increment: step;
}
.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 16px;
}
.step-item h4 { font-size: 1.05rem; }
.step-item p { color: var(--text-light); font-size: 0.9rem; }

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow);
}
.team-avatar {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
}
.team-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.team-card .team-role { color: var(--primary); font-weight: 600; font-size: 0.9rem; }
.team-card p { color: var(--text-light); font-size: 0.9rem; margin-top: 8px; }

/* ============================================================
   PRIVACY / LEGAL
   ============================================================ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}
.legal-content h2 { font-size: 1.5rem; margin-top: 32px; }
.legal-content h3 { font-size: 1.2rem; margin-top: 24px; }
.legal-content p, .legal-content li { color: var(--text-light); }
.legal-content ul { margin: 12px 0 12px 24px; }
.legal-content ul li { list-style: disc; padding: 4px 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-top: 12px; }
.footer-brand .footer-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}
.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
  font-family: var(--font-heading);
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.footer-contact-item a { color: rgba(255,255,255,0.8); }
.footer-contact-item a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--accent); }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 40px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 40px; }

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .program-content, .program-content.reverse { grid-template-columns: 1fr; direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .two-col-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero { min-height: 60vh; }
  .hero-content h1 { font-size: 2.2rem; }
  .section { padding: 50px 0; }

  /* Mobile Nav */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 24px 24px;
    gap: 0;
    box-shadow: -5px 0 30px var(--shadow-lg);
    transition: right var(--transition);
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-links > li { height: auto; }
  .nav-links > li > a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }
  .mega-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border-top: none;
    min-width: auto;
    padding: 10px 0 10px 16px;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-links > li.mega-open > .mega-menu { display: block; }
  .mega-menu-grid { grid-template-columns: 1fr; }
  .mobile-toggle { display: block; }
  .header-cta { display: none; }
  .top-bar-right { display: none; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.8rem; }
  .hero-buttons { flex-direction: column; }
  .trust-bar .container { flex-direction: column; gap: 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .insurance-grid { grid-template-columns: 1fr 1fr; }
}
