/* ============================================================
   EMBRACING RECOVERY LLC — Main Stylesheet
   Design System: Soothing Teal / Sage / Warm Cream
   Compatible: GoDaddy Shared Hosting (pure static)
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Lato:wght@300;400;700&display=swap');

/* --- CSS Variables (Design Tokens) --- */
:root {
  --teal-deep:     #2A7F7F;
  --teal-mid:      #3DA5A5;
  --teal-light:    #7DCFCF;
  --teal-pale:     #D4F0F0;
  --sage-dark:     #5A7A5A;
  --sage-mid:      #7A9E7E;
  --sage-light:    #B2CEB5;
  --sage-pale:     #E8F4E8;
  --cream:         #FAF7F2;
  --cream-dark:    #F0EAE0;
  --warm-white:    #FFFFFF;
  --text-dark:     #2C3E3E;
  --text-mid:      #4A6060;
  --text-light:    #6B8080;
  --text-muted:    #9AAFAF;
  --gold-accent:   #C9A96E;
  --gold-light:    #E8D4A8;
  --shadow-soft:   0 4px 24px rgba(42,127,127,0.10);
  --shadow-card:   0 8px 40px rgba(42,127,127,0.13);
  --shadow-hover:  0 16px 56px rgba(42,127,127,0.20);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     28px;
  --radius-xl:     48px;
  --transition:    all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif:    'Playfair Display', Georgia, serif;
  --font-sans:     'Lato', 'Helvetica Neue', Arial, sans-serif;
  --max-width:     1180px;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--teal-deep); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--teal-mid); }
ul { list-style: none; }

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.25;
  color: var(--text-dark);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 500; }
h4 { font-size: 1.15rem; font-weight: 600; }
p  { font-size: 1.05rem; color: var(--text-mid); line-height: 1.8; }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-mid);
  display: block;
  margin-bottom: 12px;
}

.section-heading {
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 620px;
  line-height: 1.8;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal-deep), var(--teal-mid));
  color: white;
  box-shadow: 0 6px 24px rgba(42,127,127,0.30);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--teal-mid), var(--teal-light));
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(42,127,127,0.40);
  color: white;
}

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

.btn-white {
  background: white;
  color: var(--teal-deep);
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  color: var(--teal-deep);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-accent), #D4A96E);
  color: white;
  box-shadow: 0 6px 24px rgba(201,169,110,0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201,169,110,0.45);
  color: white;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(42,127,127,0.10);
  padding: 12px 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--teal-deep), var(--teal-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(42,127,127,0.30);
}

.logo-mark svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.logo-sub {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-mid);
}

/* When navbar is transparent (top of page), show white text */
.navbar:not(.scrolled) .logo-title,
.navbar:not(.scrolled) .nav-links a {
  color: white;
}

.navbar:not(.scrolled) .logo-sub {
  color: var(--teal-pale);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.nav-links a:hover {
  color: var(--teal-mid);
  background: var(--teal-pale);
}

.nav-links .btn {
  margin-left: 8px;
  padding: 10px 24px;
  font-size: 0.88rem;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar:not(.scrolled) .nav-toggle span {
  background: white;
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(250,247,242,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
}

.nav-mobile a:hover {
  color: var(--teal-mid);
}

.nav-mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
  font-family: var(--font-sans);
  padding: 8px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1800&auto=format&fit=crop&q=80');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20,70,70,0.78) 0%,
    rgba(42,127,127,0.55) 50%,
    rgba(90,122,90,0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 120px 24px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-light);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero h1 {
  color: white;
  margin-bottom: 28px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-text {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  animation: float-scroll 2.5s ease-in-out infinite;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}

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

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--warm-white);
  padding: 28px 0;
  box-shadow: 0 4px 20px rgba(42,127,127,0.08);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.trust-icon {
  width: 36px;
  height: 36px;
  background: var(--teal-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--teal-deep);
  fill: none;
  stroke-width: 2;
}

/* ============================================================
   SECTIONS — Shared
   ============================================================ */
section {
  padding: 96px 0;
}

.section-center {
  text-align: center;
}

.section-center .section-sub {
  margin: 0 auto;
}

.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-mid), var(--sage-mid));
  border-radius: 4px;
  margin: 20px 0 36px;
}

.divider-center {
  margin: 20px auto 36px;
}

/* ============================================================
   ABOUT / MISSION
   ============================================================ */
.about-section {
  background: var(--warm-white);
}

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

.about-image-wrap {
  position: relative;
}

.about-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}

.about-image-accent {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-md);
  object-fit: cover;
  border: 6px solid white;
  box-shadow: var(--shadow-card);
}

.about-stat-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: linear-gradient(135deg, var(--teal-deep), var(--teal-mid));
  color: white;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 8px 32px rgba(42,127,127,0.35);
}

.about-stat-badge .stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.about-stat-badge .stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
  display: block;
  margin-top: 4px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}

.about-value-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.value-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--teal-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.about-value-item:hover .value-icon-wrap {
  background: var(--teal-mid);
}

.about-value-item:hover .value-icon-wrap svg {
  stroke: white;
}

.value-icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: var(--teal-deep);
  fill: none;
  stroke-width: 2;
  transition: var(--transition);
}

.value-text h4 {
  color: var(--text-dark);
  margin-bottom: 4px;
}

.value-text p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ============================================================
   PROGRAMS / SERVICES
   ============================================================ */
.programs-section {
  background: var(--cream);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.program-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.program-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.program-card:hover .program-card-image {
  transform: scale(1.05);
}

.program-card-body {
  padding: 32px;
}

.program-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--teal-pale), var(--sage-pale));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.program-card:hover .program-icon {
  background: linear-gradient(135deg, var(--teal-mid), var(--sage-mid));
}

.program-card:hover .program-icon svg {
  stroke: white;
}

.program-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--teal-deep);
  fill: none;
  stroke-width: 1.8;
  transition: var(--transition);
}

.program-card-body h3 {
  color: var(--text-dark);
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.program-card-body p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 24px;
}

.program-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--teal-mid);
  transition: var(--transition);
}

.program-link::after {
  content: '→';
  transition: var(--transition);
}

.program-link:hover::after {
  transform: translateX(4px);
}

.program-link:hover {
  color: var(--teal-deep);
}

/* ============================================================
   PROMISE / CTA BANNER
   ============================================================ */
.promise-section {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--sage-dark) 100%);
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}

.promise-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><circle cx="40" cy="40" r="35" fill="none" stroke="rgba(255,255,255,0.04)" stroke-width="2"/></svg>') repeat;
  background-size: 80px 80px;
}

.promise-content {
  position: relative;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.promise-content h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 24px;
}

.promise-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  line-height: 1.9;
  margin-bottom: 44px;
}

.promise-pillars {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.promise-pillar {
  text-align: center;
  color: white;
}

.promise-pillar-icon {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  border: 1px solid rgba(255,255,255,0.25);
}

.promise-pillar-icon svg {
  width: 28px;
  height: 28px;
  stroke: white;
  fill: none;
  stroke-width: 1.8;
}

.promise-pillar span {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

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

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 36px;
  position: relative;
  transition: var(--transition);
  border: 1px solid var(--cream-dark);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--teal-pale);
}

.testimonial-quote-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--teal-light);
  line-height: 0.6;
  margin-bottom: 20px;
  display: block;
  opacity: 0.5;
}

.testimonial-text {
  font-size: 0.97rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-light), var(--sage-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal-deep);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  display: block;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testimonial-stars {
  color: var(--gold-accent);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--teal-pale), var(--sage-pale));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--teal-deep);
  fill: none;
  stroke-width: 2;
}

.contact-item-text strong {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dark);
  display: block;
  margin-bottom: 4px;
}

.contact-item-text span,
.contact-item-text a {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.contact-item-text a:hover {
  color: var(--teal-mid);
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 8px;
}

.hours-row {
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-card);
}

.contact-form h3 {
  margin-bottom: 8px;
}

.contact-form p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.97rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal-mid);
  background: white;
  box-shadow: 0 0 0 4px var(--teal-pale);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-privacy {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: -8px;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text-dark);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .logo-title,
.footer-brand .logo-sub {
  color: white;
}

.footer-brand .logo-sub {
  color: var(--teal-light);
}

.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-top: 16px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.12);
}

.footer-social a:hover {
  background: var(--teal-mid);
  border-color: var(--teal-mid);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255,255,255,0.7);
  fill: none;
  stroke-width: 2;
  transition: var(--transition);
}

.footer-social a:hover svg {
  stroke: white;
}

.footer-col h5 {
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: var(--font-sans);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col ul a:hover {
  color: var(--teal-light);
  padding-left: 4px;
}

.footer-col p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.38);
  font-size: 0.82rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.38);
  font-size: 0.82rem;
  margin-left: 20px;
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--teal-light);
}

/* ============================================================
   ANIMATIONS — AOS-style, pure CSS + JS trigger
   ============================================================ */
[data-aos] {
  opacity: 1;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

/* Only hide for animation if JS is loaded (js-loaded class added by main.js) */
.js-loaded [data-aos] {
  opacity: 0;
}

[data-aos="fade-up"] {
  transform: translateY(32px);
}

[data-aos="fade-right"] {
  transform: translateX(-32px);
}

[data-aos="fade-left"] {
  transform: translateX(32px);
}

[data-aos="zoom-in"] {
  transform: scale(0.92);
}

[data-aos].is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
[data-aos-delay="100"] { transition-delay: 0.10s; }
[data-aos-delay="200"] { transition-delay: 0.20s; }
[data-aos-delay="300"] { transition-delay: 0.30s; }
[data-aos-delay="400"] { transition-delay: 0.40s; }
[data-aos-delay="500"] { transition-delay: 0.50s; }

/* Floating animation for decorative elements */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Gradient text */
.text-gradient {
  background: linear-gradient(135deg, var(--teal-mid), var(--sage-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Page hero for inner pages */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--sage-dark) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  top: -200px;
  right: -100px;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: white;
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  max-width: 580px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
}

.breadcrumb a:hover {
  color: white;
}

.breadcrumb-sep { opacity: 0.4; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .programs-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .about-grid    { gap: 48px; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }

  .nav-links       { display: none; }
  .nav-toggle      { display: flex; }

  .hero-content    { padding: 100px 24px 64px; }

  .about-grid      { grid-template-columns: 1fr; }
  .about-image-accent,
  .about-stat-badge { display: none; }

  .programs-grid   { grid-template-columns: 1fr; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .contact-grid    { grid-template-columns: 1fr; }

  .trust-bar-inner { gap: 24px; }

  .footer-grid     { grid-template-columns: 1fr 1fr; }

  .form-row        { grid-template-columns: 1fr; }

  .contact-form    { padding: 32px 24px; }

  .promise-pillars { gap: 20px; }

  .footer-bottom   { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.text-center  { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
