/* =============================================
   123recovery.org - Selma Helpline
   Style: Mountain Serenity (#9)
   Architecture: Hub & Spoke (#9)
   Generated: 2026-02-06
   ============================================= */

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

/* --- CSS Variables --- */
:root {
  --primary: #4A5568;
  --primary-dark: #2D3748;
  --secondary: #48624D;
  --accent: #9DC3C1;
  --accent-light: #C5DEDD;
  --text: #1A202C;
  --text-light: #718096;
  --bg: #F7F8F9;
  --bg-white: #FFFFFF;
  --shadow: 0 2px 8px rgba(74, 85, 104, 0.12);
  --shadow-lg: 0 8px 30px rgba(74, 85, 104, 0.15);
  --radius: 6px;
  --radius-lg: 8px;
  --transition: 0.3s ease;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Source Sans Pro', sans-serif;
  --max-width: 1200px;
}

/* --- 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(--secondary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
ul { list-style: none; }

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

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

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

/* --- Mountain Silhouette Decorative Element --- */
.mountain-divider {
  width: 100%;
  height: 60px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.mountain-divider::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background:
    linear-gradient(135deg, var(--primary) 25%, transparent 25%) -50px 0,
    linear-gradient(225deg, var(--primary) 25%, transparent 25%) -50px 0,
    linear-gradient(315deg, var(--primary-dark) 25%, transparent 25%),
    linear-gradient(45deg, var(--primary-dark) 25%, transparent 25%);
  background-size: 100px 60px;
  opacity: 0.06;
}

/* --- Header / Navigation --- */
.site-header {
  background: var(--bg-white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  background: var(--primary-dark);
  color: #fff;
  padding: 0.4rem 0;
  font-size: 0.85rem;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-top a { color: var(--accent-light); }
.header-top a:hover { color: #fff; }

.header-main {
  padding: 0.8rem 0;
}

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-dark);
}

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

.nav-list {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-list a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 0.3rem 0;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--secondary);
  color: #fff !important;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--primary-dark); color: #fff !important; }

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(45,55,72,0.85) 0%, rgba(72,98,77,0.7) 50%, rgba(157,195,193,0.4) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 700px;
  padding: 2rem 0;
}

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

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

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

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

.btn-outline {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

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

.btn-accent {
  background: var(--accent);
  color: var(--primary-dark);
}

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

/* --- Trust Bar --- */
.trust-bar {
  background: var(--primary-dark);
  padding: 1.2rem 0;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
  color: #fff;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.trust-item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* --- Hub Section (Homepage) --- */
.hub-section {
  padding: 5rem 0;
}

.hub-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.hub-section .section-header h2 {
  margin-bottom: 1rem;
}

.hub-section .section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1.1rem;
}

.section-line {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 1rem auto;
  border-radius: 2px;
}

/* --- Hub Wheel / Spoke Cards --- */
.hub-wheel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.spoke-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.spoke-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.spoke-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.spoke-card:hover::before {
  transform: scaleX(1);
}

.spoke-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.2rem;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spoke-card-icon svg {
  width: 30px;
  height: 30px;
  color: var(--secondary);
}

.spoke-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.25rem;
}

.spoke-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.spoke-card .card-link {
  font-weight: 600;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.spoke-card .card-link:hover { color: var(--primary-dark); }

/* --- About Preview Section --- */
.about-preview {
  background: var(--bg-white);
  padding: 5rem 0;
}

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

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

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

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

/* --- Programs Grid --- */
.programs-section {
  padding: 5rem 0;
}

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

.program-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border-bottom: 3px solid transparent;
}

.program-card:hover {
  border-bottom-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

.program-card-icon svg {
  width: 26px;
  height: 26px;
  color: #fff;
}

.program-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
}

.program-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* --- Why Choose Us --- */
.why-us {
  background: var(--primary-dark);
  padding: 5rem 0;
  color: #fff;
}

.why-us h2 { color: #fff; text-align: center; margin-bottom: 0.5rem; }
.why-us .section-line { background: var(--accent); margin-bottom: 3rem; }

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

.why-item {
  text-align: center;
  padding: 1.5rem;
}

.why-item-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  background: rgba(157, 195, 193, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-item-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.why-item h4 {
  color: #fff;
  margin-bottom: 0.6rem;
}

.why-item p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}

/* --- Amenities Gallery --- */
.amenities-preview {
  background: var(--bg-white);
  padding: 5rem 0;
}

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

.amenity-img {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: 220px;
}

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

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

.amenity-img .amenity-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.8rem;
  background: linear-gradient(transparent, rgba(26,32,44,0.8));
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

/* --- Testimonials --- */
.testimonials-section {
  padding: 5rem 0;
}

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

.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--accent);
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
  opacity: 0.4;
}

.testimonial-card p {
  font-style: italic;
  color: var(--text);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 600;
  color: var(--secondary);
  font-size: 0.9rem;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-dark) 100%);
  padding: 4rem 0;
  text-align: center;
  color: #fff;
}

.cta-banner h2 { color: #fff; margin-bottom: 1rem; }
.cta-banner p { max-width: 600px; margin: 0 auto 2rem; opacity: 0.9; font-size: 1.1rem; }

.cta-phone {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: #fff;
  display: block;
  margin-bottom: 1.5rem;
}

.cta-phone:hover { color: var(--accent-light); }

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

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

.footer-col h4 {
  color: #fff;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.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-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
}

/* --- Return to Hub Button --- */
.return-hub {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--secondary);
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  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: #fff;
  transform: translateY(-3px);
}

.return-hub svg {
  width: 22px;
  height: 22px;
}

/* --- Inner Page Hero --- */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
  padding: 4rem 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,60 L200,20 L400,80 L600,30 L800,70 L1000,25 L1200,60 L1200,120 L0,120Z' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E") bottom/cover no-repeat;
}

.page-hero h1 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  position: relative;
}

.page-hero p {
  opacity: 0.9;
  font-size: 1.1rem;
  position: relative;
}

.breadcrumb {
  position: relative;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.breadcrumb a { color: var(--accent-light); }
.breadcrumb a:hover { color: #fff; }

/* --- Content Sections (Inner Pages) --- */
.content-section {
  padding: 4rem 0;
}

.content-section:nth-child(even) {
  background: var(--bg-white);
}

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

.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }

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

.team-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.team-card-body {
  padding: 1.5rem;
}

.team-card h4 { margin-bottom: 0.3rem; }
.team-card .role { color: var(--secondary); font-weight: 600; font-size: 0.9rem; margin-bottom: 0.8rem; }
.team-card p { font-size: 0.9rem; color: var(--text-light); }

/* --- Amenities List --- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.amenity-card {
  background: var(--bg-white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all var(--transition);
}

.amenity-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.amenity-card svg {
  width: 28px;
  height: 28px;
  color: var(--secondary);
  flex-shrink: 0;
}

.amenity-card span {
  font-weight: 600;
  font-size: 0.95rem;
}

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

.insurance-item {
  background: var(--bg-white);
  padding: 1.2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  border-left: 3px solid var(--accent);
}

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

.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}

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

.faq-question svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition);
  flex-shrink: 0;
  color: var(--secondary);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

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

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
}

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

.blog-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

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

.blog-card-body {
  padding: 1.5rem;
}

.blog-card .category {
  display: inline-block;
  background: var(--bg);
  color: var(--secondary);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.blog-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.blog-card p { font-size: 0.9rem; color: var(--text-light); }

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-item svg {
  width: 24px;
  height: 24px;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.contact-info-item h4 { margin-bottom: 0.3rem; }
.contact-info-item p, .contact-info-item a { font-size: 0.95rem; color: var(--text-light); }

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

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

/* --- Admissions Steps --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.step-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
}

.step-card h4 { margin-bottom: 0.5rem; }
.step-card p { font-size: 0.9rem; color: var(--text-light); }

/* --- Privacy Page --- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--bg);
}

.legal-content h2:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.legal-content p, .legal-content li {
  color: var(--text-light);
  font-size: 0.95rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content ul li { margin-bottom: 0.4rem; }

/* --- Blog Post Full --- */
.blog-post-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.blog-post-content h2 { font-size: 1.6rem; margin: 2rem 0 1rem; }
.blog-post-content h3 { font-size: 1.3rem; margin: 1.5rem 0 0.8rem; }
.blog-post-content p { line-height: 1.8; margin-bottom: 1.2rem; }

.blog-post-content ul, .blog-post-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}

.blog-post-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hub-wheel { 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: 1fr 1fr; gap: 2rem; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
}

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

  .menu-toggle { display: block; }

  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg-white);
    flex-direction: column;
    padding: 1rem;
    gap: 0;
    box-shadow: var(--shadow-lg);
  }

  .nav-list.active { display: flex; }
  .nav-list li { width: 100%; }
  .nav-list a { display: block; padding: 0.8rem 1rem; }

  .hero { min-height: 70vh; }
  .hero h1 { font-size: 2.2rem; }
  .hero-content { padding: 1rem; }

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

  .hub-wheel { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .content-grid.reverse { direction: ltr; }
  .programs-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .amenities-gallery { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .insurance-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }

  .page-hero { padding: 3rem 0; }
  .page-hero h1 { font-size: 2rem; }

  .cta-phone { font-size: 1.4rem; }

  .legal-content { padding: 1.5rem; }
  .blog-post-content { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-ctas { flex-direction: column; }
  .btn { width: 100%; }
  .header-top .container { flex-direction: column; gap: 0.3rem; text-align: center; }
}
