/* ==========================================================================
   KCA Advisors - Fresh Start Style (#8) + Hub & Spoke Architecture (#9)
   Colors: Mint #3EB489, Soft Yellow #F7DC6F, Sky Blue #85C1E9
   Typography: Quicksand (headings), Nunito (body)
   ========================================================================== */

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

:root {
  --primary: #3EB489;
  --primary-dark: #2E9A72;
  --primary-light: #6DC9A5;
  --secondary: #F7DC6F;
  --secondary-dark: #E8C840;
  --accent: #85C1E9;
  --accent-light: #AED6F1;
  --text: #2E4A3E;
  --text-light: #4A6B5D;
  --text-muted: #6B8F7E;
  --bg: #FEFFFE;
  --bg-alt: #F0FFF4;
  --bg-card: #FFFFFF;
  --white: #FFFFFF;
  --shadow: 0 4px 20px rgba(62, 180, 137, 0.12);
  --shadow-hover: 0 8px 32px rgba(62, 180, 137, 0.2);
  --shadow-soft: 0 2px 12px rgba(62, 180, 137, 0.08);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --header-height: 80px;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', 'Comfortaa', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

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

p { margin-bottom: 1rem; }

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Skip Navigation --- */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--primary);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 600;
}
.skip-nav:focus { top: 16px; color: var(--white); }

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(254, 255, 254, 0.95);
  backdrop-filter: blur(12px);
  z-index: 1000;
  transition: box-shadow var(--transition);
  border-bottom: 1px solid rgba(62, 180, 137, 0.1);
}
.header.scrolled {
  box-shadow: var(--shadow);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.header__logo {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
}

.header__nav { display: flex; align-items: center; gap: 32px; }

.header__nav-list {
  display: flex;
  list-style: none;
  gap: 28px;
}

.header__nav-link {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
}
.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width var(--transition);
}
.header__nav-link:hover::after,
.header__nav-link.active::after { width: 100%; }
.header__nav-link:hover { color: var(--primary); }

.header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 1rem;
}
.header__phone svg { width: 18px; height: 18px; }

.header__cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}
.header__cta:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

/* Mobile menu toggle */
.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.header__toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  margin-top: var(--header-height);
  overflow: hidden;
  background: var(--bg-alt);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(240, 255, 244, 0.92) 0%, rgba(133, 193, 233, 0.75) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  padding: 80px 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(62, 180, 137, 0.1);
  color: var(--primary-dark);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero__title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text);
}
.hero__title span { color: var(--primary); }

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: 'Quicksand', sans-serif;
}

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

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

.btn--accent {
  background: var(--secondary);
  color: var(--text);
}
.btn--accent:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
}

/* --- Trust Bar --- */
.trust-bar {
  background: var(--white);
  border-top: 1px solid rgba(62, 180, 137, 0.1);
  border-bottom: 1px solid rgba(62, 180, 137, 0.1);
  padding: 24px 0;
}
.trust-bar__inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}
.trust-bar__icon {
  width: 44px;
  height: 44px;
  background: var(--bg-alt);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

/* --- Section --- */
.section {
  padding: 80px 0;
}
.section--alt { background: var(--bg-alt); }

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}
.section__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(62, 180, 137, 0.1);
  color: var(--primary-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.section__title {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.section__subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* --- Hub Cards (Hub & Spoke navigation) --- */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hub-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
}
.hub-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  color: var(--text);
}

.hub-card__image {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.hub-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.hub-card:hover .hub-card__image img { transform: scale(1.05); }

.hub-card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(46, 74, 62, 0.3) 0%, transparent 50%);
}

.hub-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hub-card__icon {
  width: 48px;
  height: 48px;
  background: var(--bg-alt);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.hub-card__title {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.hub-card__desc {
  color: var(--text-light);
  font-size: 0.9rem;
  flex: 1;
}

.hub-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 16px;
}
.hub-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}
.hub-card:hover .hub-card__link svg { transform: translateX(4px); }

/* --- Return to Hub Button --- */
.return-hub {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--primary);
  color: var(--white);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-hover);
  z-index: 900;
  transition: all var(--transition);
  opacity: 0;
  pointer-events: none;
}
.return-hub.visible {
  opacity: 1;
  pointer-events: auto;
}
.return-hub:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: scale(1.1);
}
.return-hub svg { width: 22px; height: 22px; }

/* --- About Preview --- */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-preview__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-preview__content { padding: 16px 0; }
.about-preview__text {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.values-list {
  list-style: none;
  display: grid;
  gap: 12px;
}
.values-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.values-list li::before {
  content: '✓';
  width: 28px;
  height: 28px;
  background: var(--bg-alt);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* --- Programs Grid --- */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.program-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
  text-decoration: none;
  color: var(--text);
  border: 1px solid rgba(62, 180, 137, 0.08);
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-light);
  color: var(--text);
}

.program-card__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--bg-alt), rgba(133, 193, 233, 0.15));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
}

.program-card__title {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.program-card__desc {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* --- Why Choose Us --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-card {
  text-align: center;
  padding: 32px 24px;
}

.why-card__icon {
  width: 72px;
  height: 72px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}

.why-card__title {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.why-card__text {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* --- Stats Bar --- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 48px 0;
}

.stat {
  text-align: center;
}

.stat__number {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat__label {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
}

/* --- Amenities Gallery --- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.amenities-grid__item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.amenities-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.amenities-grid__item:hover img { transform: scale(1.05); }
.amenities-grid__item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(46, 74, 62, 0.7), transparent);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
}

/* --- Testimonials --- */
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.testimonial-card__quote {
  font-size: 2rem;
  color: var(--primary-light);
  font-family: serif;
  line-height: 1;
  margin-bottom: 16px;
}
.testimonial-card__text {
  color: var(--text-light);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}
.testimonial-card__author {
  font-weight: 700;
  color: var(--text);
  font-size: 0.9rem;
}
.testimonial-card__program {
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 500;
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  padding: 72px 0;
  text-align: center;
  color: var(--white);
}
.cta-section h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 32px;
}
.cta-section .btn--primary {
  background: var(--white);
  color: var(--primary);
}
.cta-section .btn--primary:hover {
  background: var(--secondary);
  color: var(--text);
}
.cta-section .btn--secondary {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}
.cta-section .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

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

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__brand {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__heading {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer__links {
  list-style: none;
  display: grid;
  gap: 10px;
}
.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--primary-light); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.footer__contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
.footer__bottom a { color: rgba(255, 255, 255, 0.7); }
.footer__bottom a:hover { color: var(--primary-light); }

/* --- Inner Page Hero --- */
.page-hero {
  margin-top: var(--header-height);
  padding: 64px 0;
  background: var(--bg-alt);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(62, 180, 137, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.page-hero__breadcrumb a { color: var(--primary); }
.page-hero__title {
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.page-hero__subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Content Sections for Inner Pages --- */
.content-section {
  padding: 64px 0;
  border-bottom: 1px solid rgba(62, 180, 137, 0.08);
}
.content-section:last-child { border-bottom: none; }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.content-grid--reverse { direction: rtl; }
.content-grid--reverse > * { direction: ltr; }

.content-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.team-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

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

.team-card__name {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

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

.team-card__creds {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.team-card__bio {
  color: var(--text-light);
  font-size: 0.88rem;
}

/* --- Programs Detail --- */
.program-detail {
  padding: 64px 0;
  border-bottom: 1px solid rgba(62, 180, 137, 0.08);
}
.program-detail:nth-child(even) { background: var(--bg-alt); }

.program-detail__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.program-detail__icon {
  width: 56px;
  height: 56px;
  background: var(--bg-alt);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin: 32px 0;
}
.timeline__step {
  text-align: center;
  padding: 24px;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  position: relative;
}
.timeline__step-num {
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0 auto 12px;
}
.timeline__step-title {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.timeline__step-text {
  color: var(--text-light);
  font-size: 0.85rem;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.schedule-table th {
  background: var(--primary);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
}
.schedule-table td {
  padding: 12px 20px;
  border-bottom: 1px solid rgba(62, 180, 137, 0.08);
  font-size: 0.9rem;
}
.schedule-table tr:last-child td { border-bottom: none; }
.schedule-table tr:hover td { background: var(--bg-alt); }

.substances-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  list-style: none;
  margin: 16px 0;
}
.substances-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
}
.substances-list li::before {
  content: '•';
  color: var(--primary);
  font-weight: 700;
  font-size: 1.2rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.comparison-table th {
  background: var(--primary);
  color: var(--white);
  padding: 14px 16px;
  font-weight: 600;
  font-size: 0.85rem;
}
.comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(62, 180, 137, 0.08);
  font-size: 0.88rem;
  text-align: center;
}
.comparison-table td:first-child { text-align: left; font-weight: 600; }
.comparison-table tr:last-child td { border-bottom: none; }

/* --- FAQ Accordion --- */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  margin-bottom: 12px;
  border: 1px solid rgba(62, 180, 137, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
}

.faq-item__question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Quicksand', sans-serif;
}
.faq-item__question:hover { color: var(--primary); }

.faq-item__icon {
  width: 28px;
  height: 28px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.active .faq-item__icon { transform: rotate(45deg); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item__answer-inner {
  padding: 0 24px 20px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Insurance Grid --- */
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.insurance-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  font-weight: 600;
  font-size: 0.9rem;
}
.insurance-item__check {
  color: var(--primary);
  font-weight: 700;
}

/* --- Contact Layout --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-info__icon {
  width: 48px;
  height: 48px;
  background: var(--bg-alt);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info__label {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: var(--text);
}
.contact-info__value {
  color: var(--text-light);
  font-size: 0.9rem;
}

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

/* --- Blog Cards --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.blog-card__image {
  height: 200px;
  overflow: hidden;
}
.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.blog-card:hover .blog-card__image img { transform: scale(1.05); }

.blog-card__body { padding: 24px; }

.blog-card__category {
  display: inline-block;
  background: var(--bg-alt);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.blog-card__title {
  font-size: 1.1rem;
  margin-bottom: 8px;
  line-height: 1.4;
}
.blog-card__title a { color: var(--text); }
.blog-card__title a:hover { color: var(--primary); }

.blog-card__excerpt {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.blog-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Privacy Page --- */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 0;
}
.privacy-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(62, 180, 137, 0.1);
}
.privacy-content h2:first-child { border-top: none; margin-top: 0; }
.privacy-content p {
  color: var(--text-light);
  font-size: 0.95rem;
}
.privacy-content ul {
  margin: 12px 0 20px 24px;
  color: var(--text-light);
}
.privacy-content li { margin-bottom: 8px; font-size: 0.95rem; }

/* --- Admissions Steps --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 32px 0;
}
.step-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  position: relative;
}
.step-card__num {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 16px;
  font-family: 'Quicksand', sans-serif;
}
.step-card__title {
  font-size: 1rem;
  margin-bottom: 8px;
}
.step-card__text {
  color: var(--text-light);
  font-size: 0.85rem;
}

/* --- Packing Lists --- */
.packing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 24px 0;
}
.packing-card {
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.packing-card--bring {
  background: var(--bg-alt);
  border: 1px solid rgba(62, 180, 137, 0.2);
}
.packing-card--avoid {
  background: #FFF5F5;
  border: 1px solid rgba(220, 80, 80, 0.15);
}
.packing-card__title {
  font-size: 1rem;
  margin-bottom: 12px;
}
.packing-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
}
.packing-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* --- Directions --- */
.directions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 24px 0;
}
.direction-card {
  padding: 24px;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.direction-card__title {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--primary-dark);
}
.direction-card__text {
  color: var(--text-light);
  font-size: 0.88rem;
}

/* --- Service Area Tags --- */
.service-area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}
.service-area-tag {
  padding: 6px 16px;
  background: var(--bg-alt);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
}

/* --- Departments --- */
.dept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dept-card {
  padding: 24px;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.dept-card__icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.dept-card__title {
  font-size: 1rem;
  margin-bottom: 8px;
}
.dept-card__info {
  color: var(--text-light);
  font-size: 0.88rem;
}
.dept-card__info a {
  display: block;
  margin-top: 4px;
}

/* --- Blog Featured --- */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 48px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.blog-featured__image {
  height: 100%;
  min-height: 320px;
}
.blog-featured__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-featured__content { padding: 32px; }
.blog-featured__category {
  display: inline-block;
  background: var(--bg-alt);
  color: var(--primary);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.blog-featured__title {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.blog-featured__excerpt {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

/* --- Modalities Grid --- */
.modalities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.modality-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  font-weight: 500;
  font-size: 0.9rem;
}
.modality-item__icon {
  width: 36px;
  height: 36px;
  background: var(--bg-alt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

/* --- Credentials List --- */
.credentials-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
  margin: 16px 0;
}
.credentials-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hub-grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .directions-grid { grid-template-columns: repeat(2, 1fr); }
  .dept-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .section { padding: 56px 0; }

  .header__nav-list,
  .header__phone,
  .header__cta { display: none; }
  .header__toggle { display: flex; }

  .header__nav.active {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 32px 24px;
    overflow-y: auto;
  }
  .header__nav.active .header__nav-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .header__nav.active .header__phone {
    display: flex;
    margin-top: 24px;
  }
  .header__nav.active .header__cta {
    display: inline-flex;
    margin-top: 16px;
    justify-content: center;
  }

  .hero__title { font-size: 2.2rem; }
  .hero__content { padding: 48px 0; }
  .hero__actions { flex-direction: column; }

  .trust-bar__inner { flex-direction: column; gap: 16px; align-items: center; }

  .hub-grid { grid-template-columns: 1fr; }
  .about-preview { grid-template-columns: 1fr; gap: 32px; }
  .programs-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-slider { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-featured { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .insurance-grid { grid-template-columns: repeat(2, 1fr); }
  .substances-list { grid-template-columns: repeat(2, 1fr); }
  .modalities-grid { grid-template-columns: 1fr; }
  .credentials-list { grid-template-columns: 1fr; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat__number { font-size: 2.2rem; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  .page-hero__title { font-size: 2rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .packing-grid { grid-template-columns: 1fr; }
  .directions-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .dept-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 1.8rem; }
  .amenities-grid { grid-template-columns: 1fr; }
  .insurance-grid { grid-template-columns: 1fr; }
  .substances-list { grid-template-columns: 1fr; }
  .comparison-table { font-size: 0.8rem; }
  .comparison-table td, .comparison-table th { padding: 8px 10px; }
}
