/* ============================================================
   AD Detox - Warm Earth Style #2 + Hub & Spoke Architecture #9
   ============================================================ */

/* --- Google Fonts (loaded via <link> in HTML) --- */
/* Merriweather (headings) + Source Sans Pro (body) */

/* ========================= RESET ========================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Source Sans Pro', 'Segoe UI', sans-serif;
  color: #3D2914;
  background: #FDF8F3;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #8B5A2B; text-decoration: none; transition: color .3s; }
a:hover { color: #E07B53; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  color: #3D2914;
  line-height: 1.3;
  font-weight: 700;
}

/* ======================== UTILITIES ======================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.skip-link {
  position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
  background: #8B5A2B; color: #fff; padding: 10px 20px; z-index: 10000;
  border-radius: 0 0 6px 6px; transition: top .3s;
}
.skip-link:focus { top: 0; color: #fff; }

/* ====================== HEADER / NAV ====================== */
.site-header {
  background: #FFFFFF;
  border-bottom: 3px solid #C4A77D;
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 12px rgba(61,41,20,.08);
}
.header-top {
  background: #8B5A2B;
  color: #FDF8F3;
  padding: 8px 0;
  font-size: .875rem;
}
.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.header-top a { color: #FDF8F3; }
.header-top a:hover { color: #E07B53; }
.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #8B5A2B;
}
.logo span { color: #E07B53; }
.nav-main { display: flex; align-items: center; gap: 8px; }
.nav-main a {
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: .95rem;
  color: #3D2914;
  transition: background .3s, color .3s;
}
.nav-main a:hover,
.nav-main a.active {
  background: #FDF8F3;
  color: #8B5A2B;
}
.nav-cta {
  background: #E07B53 !important;
  color: #fff !important;
  border-radius: 6px;
  padding: 10px 22px !important;
  font-weight: 700;
}
.nav-cta:hover { background: #c96841 !important; }
.mobile-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  font-size: 1.5rem; color: #8B5A2B;
}

/* ========================= HERO ========================= */
.hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(61,41,20,.75) 0%, rgba(139,90,43,.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 680px;
  padding: 60px 0;
}
.hero-content h1 {
  font-size: 2.75rem;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 28px;
  opacity: .95;
  line-height: 1.6;
}
.hero-inner {
  min-height: 360px;
}

/* ======================== BUTTONS ======================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all .3s;
  border: none;
  text-align: center;
}
.btn-primary {
  background: #E07B53;
  color: #fff;
}
.btn-primary:hover {
  background: #c96841;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(224,123,83,.35);
}
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-secondary:hover {
  background: #fff;
  color: #8B5A2B;
}
.btn-outline {
  background: transparent;
  color: #8B5A2B;
  border: 2px solid #8B5A2B;
}
.btn-outline:hover {
  background: #8B5A2B;
  color: #fff;
}
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-small { padding: 10px 20px; font-size: .9rem; }

/* ===================== TRUST BAR ===================== */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid #e8ddd0;
  padding: 20px 0;
}
.trust-bar .container {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #8B5A2B;
}
.trust-item i { font-size: 1.4rem; color: #E07B53; }

/* ==================== SECTION BASE ==================== */
.section {
  padding: 80px 0;
}
.section-alt {
  background: #fff;
}
.section-warm {
  background: #F5EDE3;
}
.section-title {
  font-size: 2.2rem;
  margin-bottom: 12px;
  text-align: center;
}
.section-subtitle {
  font-size: 1.1rem;
  color: #8B7355;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}
.section-header {
  margin-bottom: 48px;
}

/* ================ HUB & SPOKE CARDS ================ */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.hub-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e8ddd0;
  transition: transform .3s, box-shadow .3s;
}
.hub-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(139,90,43,.12);
}
.hub-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hub-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(61,41,20,.3) 0%, transparent 50%);
}
.hub-card-body {
  padding: 24px;
}
.hub-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.hub-card-body p {
  font-size: .95rem;
  color: #6B5B4A;
  margin-bottom: 16px;
  line-height: 1.6;
}
.hub-card-link {
  font-weight: 700;
  color: #E07B53;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hub-card-link:hover { gap: 10px; }
.hub-card-link::after { content: '\2192'; }

/* =============== PROGRAM CARDS =============== */
.program-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.program-card {
  background: #fff;
  border-radius: 8px;
  padding: 32px;
  border: 1px solid #e8ddd0;
  transition: transform .3s, box-shadow .3s;
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(139,90,43,.1);
}
.program-card-icon {
  width: 56px; height: 56px;
  background: #F5EDE3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #E07B53;
  margin-bottom: 16px;
}
.program-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.program-card p {
  color: #6B5B4A;
  font-size: .95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ============ TIMELINE / STEPS ============ */
.steps {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.step {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  padding: 28px 20px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e8ddd0;
  position: relative;
}
.step-number {
  width: 48px; height: 48px;
  background: #E07B53;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 16px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: .9rem; color: #6B5B4A; }

/* ============ FAQ ACCORDION ============ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid #e8ddd0;
  border-radius: 6px;
  margin-bottom: 12px;
  background: #fff;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #3D2914;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  transition: background .2s;
}
.faq-question:hover { background: #FDF8F3; }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: #E07B53;
  transition: transform .3s;
}
.faq-item.active .faq-question::after {
  content: '\2212';
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}
.faq-item.active .faq-answer {
  max-height: 600px;
  padding: 0 24px 20px;
}
.faq-answer p {
  color: #6B5B4A;
  line-height: 1.7;
  font-size: .95rem;
}

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: 8px;
  padding: 32px;
  border: 1px solid #e8ddd0;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 4rem;
  color: #C4A77D;
  position: absolute;
  top: 12px; left: 24px;
  line-height: 1;
  opacity: .5;
}
.testimonial-text {
  font-style: italic;
  color: #6B5B4A;
  line-height: 1.7;
  margin-bottom: 16px;
  padding-top: 24px;
}
.testimonial-author {
  font-weight: 700;
  color: #8B5A2B;
}
.testimonial-program {
  font-size: .875rem;
  color: #C4A77D;
}

/* ============ BLOG CARDS ============ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e8ddd0;
  transition: transform .3s, box-shadow .3s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(139,90,43,.1);
}
.blog-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.blog-card-body {
  padding: 24px;
}
.blog-card-category {
  display: inline-block;
  background: #F5EDE3;
  color: #8B5A2B;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.blog-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card-body p {
  color: #6B5B4A;
  font-size: .9rem;
  line-height: 1.6;
  margin-bottom: 12px;
}
.blog-card-meta {
  font-size: .8rem;
  color: #C4A77D;
}

/* ============ CONTACT INFO ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info-card {
  background: #fff;
  border-radius: 8px;
  padding: 32px;
  border: 1px solid #e8ddd0;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-icon {
  width: 44px; height: 44px;
  background: #F5EDE3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E07B53;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.contact-info-item p,
.contact-info-item a {
  color: #6B5B4A;
  font-size: .95rem;
}
.map-container {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e8ddd0;
}
.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* ============ INSURANCE GRID ============ */
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.insurance-item {
  background: #fff;
  border: 1px solid #e8ddd0;
  border-radius: 6px;
  padding: 16px 20px;
  text-align: center;
  font-weight: 600;
  color: #3D2914;
  transition: border-color .3s;
}
.insurance-item:hover { border-color: #E07B53; }

/* ============ TEAM ============ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: #fff;
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  border: 1px solid #e8ddd0;
}
.team-avatar {
  width: 80px; height: 80px;
  background: #F5EDE3;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #C4A77D;
}
.team-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card .team-title {
  color: #E07B53;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 8px;
}
.team-card .team-creds {
  font-size: .85rem;
  color: #C4A77D;
  margin-bottom: 12px;
}
.team-card p { color: #6B5B4A; font-size: .9rem; line-height: 1.6; }

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform .3s;
}
.gallery-item:hover { transform: scale(1.03); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* ============ AMENITIES LIST ============ */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #e8ddd0;
}
.amenity-item i { color: #E07B53; font-size: 1.2rem; }
.amenity-item span { font-weight: 600; color: #3D2914; }

/* ============ SCHEDULE TABLE ============ */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e8ddd0;
}
.schedule-table th {
  background: #8B5A2B;
  color: #fff;
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
}
.schedule-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #e8ddd0;
  color: #6B5B4A;
}
.schedule-table tr:last-child td { border-bottom: none; }
.schedule-table tr:hover td { background: #FDF8F3; }

/* ============ CTA SECTION ============ */
.cta-section {
  background: linear-gradient(135deg, #8B5A2B, #6B4423);
  padding: 60px 0;
  text-align: center;
  color: #fff;
}
.cta-section h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 12px;
}
.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 28px;
  opacity: .9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section .btn-primary {
  background: #E07B53;
  font-size: 1.1rem;
  padding: 16px 36px;
}
.cta-phone {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.cta-phone a { color: #fff; }
.cta-phone a:hover { color: #E07B53; }

/* ========== RETURN TO HUB BUTTON ========== */
.return-hub {
  position: fixed;
  bottom: 28px; right: 28px;
  background: #8B5A2B;
  color: #fff;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 16px rgba(61,41,20,.25);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s, background .3s;
}
.return-hub.visible { opacity: 1; visibility: visible; }
.return-hub:hover { background: #E07B53; color: #fff; }

/* ============ BREADCRUMBS ============ */
.breadcrumbs {
  padding: 16px 0;
  font-size: .875rem;
}
.breadcrumbs a { color: #8B5A2B; }
.breadcrumbs span { color: #C4A77D; margin: 0 8px; }
.breadcrumbs .current { color: #6B5B4A; }

/* ============ FOOTER ============ */
.site-footer {
  background: #3D2914;
  color: #C4A77D;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-about h3,
.footer-links h4,
.footer-contact h4 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 1.1rem;
}
.footer-about p {
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-links ul li { margin-bottom: 8px; }
.footer-links a { color: #C4A77D; font-size: .95rem; }
.footer-links a:hover { color: #E07B53; }
.footer-contact p,
.footer-contact a {
  color: #C4A77D;
  font-size: .95rem;
  display: block;
  margin-bottom: 8px;
}
.footer-contact a:hover { color: #E07B53; }
.footer-bottom {
  border-top: 1px solid rgba(196,167,125,.2);
  padding: 20px 0;
  text-align: center;
  font-size: .85rem;
}
.footer-bottom a { color: #C4A77D; }

/* ============ PRIVACY PAGE ============ */
.privacy-content {
  max-width: 820px;
  margin: 0 auto;
}
.privacy-content h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 16px;
  text-align: left;
}
.privacy-content h3 {
  font-size: 1.2rem;
  margin-top: 28px;
  margin-bottom: 12px;
  text-align: left;
}
.privacy-content p {
  margin-bottom: 16px;
  color: #6B5B4A;
  line-height: 1.7;
}
.privacy-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}
.privacy-content ul li {
  list-style: disc;
  margin-bottom: 6px;
  color: #6B5B4A;
  line-height: 1.6;
}

/* ============ PROGRAM DETAIL SECTIONS ============ */
.program-detail {
  padding: 60px 0;
  border-bottom: 1px solid #e8ddd0;
}
.program-detail:last-child { border-bottom: none; }
.program-detail-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.program-detail-header h2 {
  font-size: 1.8rem;
  text-align: left;
}
.program-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.program-detail-text p {
  color: #6B5B4A;
  margin-bottom: 16px;
  line-height: 1.7;
}
.program-detail-text ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.program-detail-text ul li {
  list-style: disc;
  margin-bottom: 8px;
  color: #6B5B4A;
  line-height: 1.6;
}
.program-detail-img {
  border-radius: 8px;
  overflow: hidden;
}
.program-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* ============ STATS BAR ============ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 40px 0;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #E07B53;
  display: block;
}
.stat-label {
  font-size: .95rem;
  color: #6B5B4A;
  margin-top: 4px;
}

/* ============ MODALITIES ============ */
.modalities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.modality-card {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  border: 1px solid #e8ddd0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.modality-icon {
  width: 44px; height: 44px;
  background: #F5EDE3;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E07B53;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.modality-card h4 { font-size: 1rem; margin-bottom: 6px; }
.modality-card p { font-size: .9rem; color: #6B5B4A; line-height: 1.5; }

/* ============ COMPARISON TABLE ============ */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e8ddd0;
  margin-bottom: 28px;
}
.comparison-table th {
  background: #8B5A2B;
  color: #fff;
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: .9rem;
}
.comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #e8ddd0;
  color: #6B5B4A;
  font-size: .9rem;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: #FDF8F3; }

/* ============ HIPAA NOTICE ============ */
.hipaa-notice {
  background: #F5EDE3;
  border: 1px solid #e8ddd0;
  border-radius: 8px;
  padding: 20px 24px;
  margin-top: 28px;
  font-size: .9rem;
  color: #6B5B4A;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.hipaa-notice i { color: #E07B53; font-size: 1.2rem; margin-top: 2px; }

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1024px) {
  .hub-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .mobile-toggle { display: block; }
  .nav-main {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px;
    border-bottom: 3px solid #C4A77D;
    box-shadow: 0 8px 24px rgba(61,41,20,.1);
  }
  .nav-main.open { display: flex; }
  .nav-main a { width: 100%; padding: 12px 16px; }
  .hero-content h1 { font-size: 2rem; }
  .hero { min-height: 420px; }
  .section { padding: 50px 0; }
  .section-title { font-size: 1.8rem; }
  .hub-grid,
  .program-cards,
  .blog-grid { grid-template-columns: 1fr; }
  .program-detail-content { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .trust-bar .container { gap: 20px; }
  .steps { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.6rem; }
  .hero { min-height: 360px; }
  .btn { padding: 12px 24px; font-size: .9rem; }
  .btn-group { flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr; }
  .cta-phone { font-size: 1.4rem; }
}

/* ============ ANIMATIONS ============ */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
  }
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; }
}
