/* ==========================================================================
   Harmony Healing Treatment — rehabhousechicago.com
   Style: Warm Earth (#2) | Architecture: Full-Screen Sections (#8)
   Generated: 2026-02-06
   ========================================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;600;700&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --color-primary: #8B5A2B;
  --color-primary-dark: #6D4520;
  --color-primary-light: #A67648;
  --color-secondary: #C4A77D;
  --color-secondary-light: #D9C4A5;
  --color-accent: #E07B53;
  --color-accent-light: #F0A080;
  --color-text: #3D2914;
  --color-text-light: #6B5340;
  --color-bg: #FDF8F3;
  --color-bg-alt: #F5EDE3;
  --color-white: #FFFFFF;
  --color-border: #E0D3C3;
  --color-overlay: rgba(61, 41, 20, 0.55);
  --color-overlay-light: rgba(61, 41, 20, 0.3);

  --font-heading: 'Merriweather', Georgia, serif;
  --font-body: 'Source Sans Pro', 'Segoe UI', sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --shadow-sm: 0 2px 8px rgba(139, 90, 43, 0.08);
  --shadow-md: 0 4px 16px rgba(139, 90, 43, 0.12);
  --shadow-lg: 0 8px 32px rgba(139, 90, 43, 0.16);

  --transition: 0.3s ease;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-snap-type: y proximity;
}

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent); }

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

h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }

/* ---------- Utility ---------- */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.section-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-light);
  max-width: 640px;
  margin: 0 auto 2rem;
  font-weight: 400;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

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

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}
.btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.9rem; }
.btn-lg { padding: 1rem 2.6rem; font-size: 1.1rem; }

/* ---------- Skip Nav ---------- */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 600;
}
.skip-nav:focus { top: 1rem; }

/* ================================================================
   HEADER — Transparent, fixed, minimal for Full-Screen Sections
   ================================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(253, 248, 243, 0.97);
  box-shadow: var(--shadow-sm);
}

.site-header.scrolled .nav-link,
.site-header.scrolled .header-phone a {
  color: var(--color-text);
}

.header-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-white);
  transition: color var(--transition);
}
.site-header.scrolled .header-logo { color: var(--color-primary); }

.header-nav { display: flex; align-items: center; gap: 1.8rem; }

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-white);
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--color-accent); }

.header-phone a {
  font-weight: 700;
  color: var(--color-white);
  font-size: 1rem;
  transition: color var(--transition);
}
.header-phone a:hover { color: var(--color-accent); }

.header-cta .btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--color-white);
  transition: all var(--transition);
}
.site-header.scrolled .hamburger span { background: var(--color-text); }

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: 300px; height: 100vh;
  background: var(--color-bg);
  padding: 6rem 2rem 2rem;
  transition: right var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { right: 0; }
.mobile-nav a {
  display: block;
  padding: 0.9rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}
.mobile-nav a:hover { color: var(--color-accent); }
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998;
}
.mobile-overlay.show { display: block; }

/* ================================================================
   FULL-SCREEN SECTIONS
   ================================================================ */
.fs-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  scroll-snap-align: start;
  overflow: hidden;
}

.fs-section .section-inner {
  width: 90%;
  max-width: 1200px;
  padding: 5rem 0;
  text-align: center;
}

/* ---------- Dot Navigation ---------- */
.dot-nav {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dot-nav__dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--color-secondary-light);
  border: 2px solid var(--color-secondary);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}
.dot-nav__dot:hover,
.dot-nav__dot.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: scale(1.3);
}

.dot-nav__dot .dot-tooltip {
  position: absolute;
  right: 24px; top: 50%;
  transform: translateY(-50%);
  background: var(--color-text);
  color: var(--color-white);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.dot-nav__dot:hover .dot-tooltip { opacity: 1; }

/* ---------- Progress Bar ---------- */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-secondary));
  z-index: 1001;
  transition: width 0.15s linear;
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-white);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero .section-inner {
  position: relative;
  z-index: 1;
}

.hero__title {
  color: var(--color-white);
  margin-bottom: 1.25rem;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

.hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  max-width: 620px;
  margin: 0 auto 2rem;
  font-weight: 300;
  opacity: 0.95;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__phone {
  margin-top: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}
.hero__phone a { color: var(--color-white); }
.hero__phone a:hover { color: var(--color-accent-light); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  animation: scrollBounce 2s infinite;
}
.scroll-indicator svg { width: 24px; height: 24px; }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ================================================================
   TRUST BAR
   ================================================================ */
.trust-bar {
  min-height: auto;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 1.5rem 0;
  scroll-snap-align: none;
}

.trust-bar__grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.trust-bar__icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* ================================================================
   ABOUT PREVIEW
   ================================================================ */
.about-preview {
  background: var(--color-bg);
}

.about-preview__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  text-align: left;
}

.about-preview__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-preview__img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-preview__text .section-label { text-align: left; }
.about-preview__text .section-title { text-align: left; }

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.value-item .icon {
  color: var(--color-accent);
  font-size: 1.2rem;
}

/* ================================================================
   PROGRAMS OVERVIEW
   ================================================================ */
.programs-overview {
  background: var(--color-bg-alt);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.program-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--color-border);
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.program-card__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.6rem;
  color: var(--color-primary);
}

.program-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.program-card p {
  font-size: 0.92rem;
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
}

.program-card a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-accent);
}

/* ================================================================
   WHY CHOOSE US
   ================================================================ */
.why-us {
  background: var(--color-bg);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-primary);
  font-weight: 700;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-top: 0.25rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
  padding: 1.25rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.feature-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--color-accent);
}

.feature-item h4 { margin-bottom: 0.3rem; }
.feature-item p { font-size: 0.9rem; color: var(--color-text-light); margin: 0; }

/* ================================================================
   AMENITIES PREVIEW
   ================================================================ */
.amenities-preview {
  background: var(--color-bg-alt);
}

.amenities-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.amenity-thumb {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}
.amenity-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.amenity-thumb:hover img { transform: scale(1.05); }
.amenity-thumb .caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.75rem;
  background: linear-gradient(transparent, rgba(61,41,20,0.7));
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials-section {
  background: var(--color-primary);
  color: var(--color-white);
}

.testimonials-section .section-label { color: var(--color-secondary-light); }
.testimonials-section .section-title { color: var(--color-white); }
.testimonials-section .section-subtitle { color: rgba(255,255,255,0.8); }

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.15);
}

.testimonial-card__stars {
  color: #F4A261;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-card__quote {
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  opacity: 0.95;
}

.testimonial-card__author {
  font-weight: 600;
  font-size: 0.9rem;
}
.testimonial-card__program {
  font-size: 0.82rem;
  opacity: 0.7;
  margin-top: 0.2rem;
}

/* ================================================================
   CTA SECTION
   ================================================================ */
.cta-section {
  background-size: cover;
  background-position: center;
  color: var(--color-white);
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

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

.cta-section .section-title { color: var(--color-white); }
.cta-section .section-subtitle { color: rgba(255,255,255,0.9); }

.cta-phone {
  font-size: 2rem;
  font-weight: 700;
  margin: 1.5rem 0;
}
.cta-phone a { color: var(--color-white); }
.cta-phone a:hover { color: var(--color-secondary-light); }

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

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

.footer-about p { font-size: 0.92rem; line-height: 1.7; margin-top: 0.75rem; }

.footer-heading {
  font-family: var(--font-heading);
  color: var(--color-white);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--color-accent); }

.footer-contact p {
  font-size: 0.92rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-contact a { color: rgba(255,255,255,0.8); }
.footer-contact a:hover { color: var(--color-accent); }

.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;
  font-size: 0.82rem;
}

.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--color-accent); }

/* ================================================================
   INNER PAGE HERO
   ================================================================ */
.page-hero {
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
  color: var(--color-white);
  padding-top: var(--header-h);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.page-hero .section-inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--color-white); margin-bottom: 0.75rem; }
.page-hero p { font-size: 1.1rem; max-width: 600px; margin: 0 auto; opacity: 0.9; }

/* ================================================================
   BREADCRUMBS
   ================================================================ */
.breadcrumbs {
  background: var(--color-bg-alt);
  padding: 0.75rem 0;
  font-size: 0.85rem;
}
.breadcrumbs a { color: var(--color-primary); }
.breadcrumbs span { color: var(--color-text-light); margin: 0 0.4rem; }

/* ================================================================
   INNER PAGE CONTENT SECTIONS
   ================================================================ */
.content-section {
  padding: 5rem 0;
}
.content-section:nth-child(even) {
  background: var(--color-bg-alt);
}

.content-section .section-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

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

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

.content-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.content-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

/* ================================================================
   CARDS GRID (Programs, services)
   ================================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card__img { height: 200px; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; }

.card__body { padding: 1.5rem; }
.card__body h3 { margin-bottom: 0.5rem; }
.card__body p { font-size: 0.92rem; color: var(--color-text-light); }

/* ================================================================
   TIMELINE
   ================================================================ */
.timeline {
  position: relative;
  padding: 2rem 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0; bottom: 0;
  width: 3px;
  background: var(--color-secondary);
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item:nth-child(odd) { justify-content: flex-start; padding-right: 52%; }
.timeline-item:nth-child(even) { justify-content: flex-end; padding-left: 52%; }

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--color-accent);
  border: 3px solid var(--color-white);
  box-shadow: var(--shadow-sm);
}

.timeline-content {
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.timeline-content h4 { color: var(--color-primary); margin-bottom: 0.5rem; }

/* ================================================================
   ACCORDION (FAQs)
   ================================================================ */
.accordion-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
}

.accordion-trigger .icon-chevron {
  transition: transform var(--transition);
  font-size: 1.2rem;
  color: var(--color-primary);
}

.accordion-item.open .accordion-trigger .icon-chevron {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-content__inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-light);
}

/* ================================================================
   INSURANCE GRID
   ================================================================ */
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.insurance-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
}
.insurance-item:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-sm);
}

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

.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card__img { height: 200px; overflow: hidden; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; }

.blog-card__body { padding: 1.5rem; }
.blog-card__category {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-accent);
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.blog-card__body h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.blog-card__body p { font-size: 0.9rem; color: var(--color-text-light); }
.blog-card__date { font-size: 0.8rem; color: var(--color-secondary); margin-top: 0.75rem; }

/* ================================================================
   GOOGLE MAP
   ================================================================ */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 1.5rem;
}
.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* ================================================================
   TEAM GRID
   ================================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  color: var(--color-primary);
}

.team-card h4 { margin-bottom: 0.25rem; }
.team-card .role {
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.team-card .credentials {
  font-size: 0.82rem;
  color: var(--color-text-light);
}

/* ================================================================
   DAILY SCHEDULE
   ================================================================ */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}
.schedule-table th,
.schedule-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.92rem;
}
.schedule-table th {
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
}
.schedule-table tr:hover { background: var(--color-bg-alt); }

/* ================================================================
   PRIVACY PAGE
   ================================================================ */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 0;
}
.privacy-content h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-border);
}
.privacy-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}
.privacy-content li { margin-bottom: 0.4rem; }

/* ================================================================
   SCROLL ANIMATIONS
   ================================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ================================================================
   REDUCED MOTION
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-snap-type: none; scroll-behavior: auto; }
  .fade-in, .fade-in-left, .fade-in-right {
    opacity: 1; transform: none; transition: none;
  }
  .scroll-indicator { animation: none; }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-slider { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .amenities-gallery { grid-template-columns: repeat(2, 1fr); }
}

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

  .header-nav, .header-phone, .header-cta { display: none; }
  .hamburger { display: flex; }

  .fs-section { min-height: auto; padding: 4rem 0; }
  html { scroll-snap-type: none; }

  .about-preview__content { grid-template-columns: 1fr; text-align: center; }
  .about-preview__text .section-label,
  .about-preview__text .section-title { text-align: center; }

  .programs-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .amenities-gallery { grid-template-columns: 1fr 1fr; }

  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse { direction: ltr; }

  .timeline::before { left: 20px; }
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    padding-left: 50px;
    padding-right: 0;
    justify-content: flex-start;
  }
  .timeline-dot { left: 20px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .dot-nav { display: none; }
  .blog-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }

  .page-hero { min-height: 35vh; }

  .trust-bar__grid { flex-direction: column; align-items: center; gap: 1rem; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; align-items: center; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .insurance-grid { grid-template-columns: 1fr; }
}
