/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: #3D1F26;
  background: #FFF8F8;
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Nunito', sans-serif; line-height: 1.2; font-weight: 800; }
.section-tag {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7B2430;
  background: rgba(123, 36, 48, 0.08);
  padding: 0.35em 0.9em;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #1A0A0E;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: #5A3040;
  max-width: 560px;
  line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }
.accent-text { color: #7B2430; }
.section { padding: 5rem 1rem; }
.section-alt { background: #FFF5F5; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75em 1.6em;
  border-radius: 50px;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: #7B2430;
  color: #fff;
  box-shadow: 0 4px 14px rgba(123, 36, 48, 0.3);
}
.btn-primary:hover {
  background: #641D28;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 36, 48, 0.4);
}
.btn-outline-light {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.25);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-outline-primary {
  background: transparent;
  color: #7B2430;
  border: 2px solid #7B2430;
}
.btn-outline-primary:hover {
  background: #7B2430;
  color: #fff;
  transform: translateY(-2px);
}
.btn-light {
  background: #fff;
  color: #7B2430;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.btn-light:hover {
  background: #FFF5F5;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.btn-lg { padding: 0.9em 2em; font-size: 1.05rem; }
.btn-sm { padding: 0.5em 1.2em; font-size: 0.85rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 248, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(123, 36, 48, 0.08);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(123, 36, 48, 0.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo-text {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: #1A0A0E;
  line-height: 1.2;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #3D1F26;
  padding: 0.4em 0.8em;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.nav-links a:hover {
  color: #7B2430;
  background: rgba(123, 36, 48, 0.06);
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #3D1F26;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #7B2430 0%, #A0354A 35%, #C4566A 60%, #E8879A 80%, #F4A8B5 100%);
  overflow: hidden;
  padding-top: 80px;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(180, 60, 80, 0.4) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(200, 100, 120, 0.3) 0%, transparent 50%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.6;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-content { color: #fff; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  background: rgba(255,255,255,0.18);
  color: #fff;
  padding: 0.4em 1em;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}
.hero-headline {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: #fff;
}
.hero-headline .accent-text {
  color: #FFD4DC;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat strong {
  font-family: 'Nunito', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}
.stat span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
}
.hero-image-wrapper {
  position: relative;
}
.hero-image-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}
.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-float-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #3D1F26;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.float-card-1 {
  top: 15%;
  left: -20px;
}
.float-card-2 {
  bottom: 20%;
  right: -15px;
}
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(123, 36, 48, 0.15);
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -20px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(123, 36, 48, 0.2);
  border: 4px solid #FFF8F8;
  max-width: 260px;
}
.about-img-secondary img {
  width: 100%;
  height: auto;
  display: block;
}
.about-accent-shape {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #F4A8B5, #E8879A);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.6;
}
.about-content .lead {
  font-size: 1.05rem;
  color: #5A3040;
  margin-bottom: 1rem;
  line-height: 1.75;
}
.about-content > p {
  color: #5A3040;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: #3D1F26;
}

/* ===== PROGRAMS ===== */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.program-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(123, 36, 48, 0.07);
  border: 1.5px solid rgba(123, 36, 48, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(123, 36, 48, 0.14);
  border-color: rgba(123, 36, 48, 0.15);
}
.program-card.featured {
  border-color: #7B2430;
  box-shadow: 0 8px 30px rgba(123, 36, 48, 0.15);
}
.program-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #7B2430;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3em 1em;
  border-radius: 50px;
  white-space: nowrap;
}
.program-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(123, 36, 48, 0.08), rgba(123, 36, 48, 0.04));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7B2430;
  margin-bottom: 1.25rem;
}
.program-title {
  font-size: 1.2rem;
  color: #1A0A0E;
  margin-bottom: 0.6rem;
}
.program-desc {
  font-size: 0.95rem;
  color: #5A3040;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}
.program-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.program-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: #3D1F26;
}
.program-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #7B2430;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.45em;
}

/* ===== WHY US ===== */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-us-content .section-subtitle {
  margin-bottom: 2rem;
}
.reason-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.reason-item {
  display: flex;
  gap: 1.25rem;
}
.reason-number {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: rgba(123, 36, 48, 0.18);
  line-height: 1;
  min-width: 36px;
}
.reason-title {
  font-size: 1.05rem;
  color: #1A0A0E;
  margin-bottom: 0.3rem;
}
.reason-desc {
  font-size: 0.95rem;
  color: #5A3040;
  line-height: 1.65;
}
.why-us-image {
  position: relative;
}
.why-us-img-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(123, 36, 48, 0.15);
}
.why-us-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-us-stats-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #fff;
  border-radius: 18px;
  padding: 1.25rem 1.75rem;
  box-shadow: 0 10px 30px rgba(123, 36, 48, 0.14);
  display: flex;
  gap: 2rem;
}
.wus-stat {
  display: flex;
  flex-direction: column;
}
.wus-stat strong {
  font-family: 'Nunito', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #7B2430;
}
.wus-stat span {
  font-size: 0.78rem;
  color: #5A3040;
  font-weight: 600;
}

/* ===== PROCESS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.process-step {
  text-align: center;
  position: relative;
  padding: 0 0.5rem;
}
.step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7B2430, #A0354A);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 6px 20px rgba(123, 36, 48, 0.25);
}
.step-num {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
}
.step-title {
  font-size: 1.05rem;
  color: #1A0A0E;
  margin-bottom: 0.5rem;
}
.step-desc {
  font-size: 0.9rem;
  color: #5A3040;
  line-height: 1.65;
}
.step-connector {
  display: none;
}

/* ===== FAQ ===== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
.faq-header-col .section-subtitle {
  margin-bottom: 2rem;
}
.faq-header-col .btn {
  margin-top: 1rem;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  border: 1.5px solid rgba(123, 36, 48, 0.07);
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq-item.active {
  border-color: rgba(123, 36, 48, 0.2);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  text-align: left;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  color: #1A0A0E;
  transition: color 0.2s ease;
}
.faq-question:hover { color: #7B2430; }
.faq-chevron {
  flex-shrink: 0;
  color: #7B2430;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.active .faq-answer {
  max-height: 200px;
}
.faq-answer p {
  padding: 0 1.25rem 1.1rem;
  font-size: 0.93rem;
  color: #5A3040;
  line-height: 1.7;
}

/* ===== CTA ===== */
.cta {
  position: relative;
  padding: 5rem 1rem;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #7B2430 0%, #A0354A 50%, #C4566A 100%);
}
.cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(244, 168, 181, 0.3) 0%, transparent 60%);
}
.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.cta-content { max-width: 560px; }
.cta-headline {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: #fff;
  margin-bottom: 1rem;
}
.cta-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  flex-shrink: 0;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-info .section-subtitle {
  margin-bottom: 2rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(123, 36, 48, 0.08), rgba(123, 36, 48, 0.04));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7B2430;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: #1A0A0E;
  margin-bottom: 0.15em;
}
.contact-item span,
.contact-item a {
  font-size: 0.93rem;
  color: #5A3040;
}
.contact-item a:hover { color: #7B2430; }
.contact-form-wrapper {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(123, 36, 48, 0.08);
  border: 1.5px solid rgba(123, 36, 48, 0.06);
}
.form-title {
  font-size: 1.3rem;
  color: #1A0A0E;
  margin-bottom: 1.5rem;
}
.form-group {
  margin-bottom: 1.1rem;
}
.form-group label {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: #3D1F26;
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid rgba(123, 36, 48, 0.15);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: #3D1F26;
  background: #FFF8F8;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #7B2430;
  box-shadow: 0 0 0 3px rgba(123, 36, 48, 0.1);
  background: #fff;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #A07880;
}
.form-success {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(123, 36, 48, 0.06);
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #7B2430;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #1A0A0E;
  color: rgba(255,255,255,0.7);
  padding: 4rem 1rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-logo { margin-bottom: 1rem; }
.footer-logo .logo-text { color: #fff; }
.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
}
.footer-heading {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a,
.footer-contact a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-links a:hover,
.footer-contact a:hover { color: #F4A8B5; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.footer-contact svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}

/* ===== MOBILE NAV OVERLAY ===== */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  top: 60px;
  background: rgba(255, 248, 248, 0.98);
  backdrop-filter: blur(12px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.nav-overlay.open {
  display: flex;
}
.nav-overlay a {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #3D1F26;
  padding: 0.75em 1.5em;
  border-radius: 12px;
  transition: all 0.2s ease;
}
.nav-overlay a:hover {
  color: #7B2430;
  background: rgba(123, 36, 48, 0.06);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image-wrapper { max-width: 420px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { max-width: 480px; margin: 0 auto; }
  .programs-grid { grid-template-columns: 1fr 1fr; }
  .why-us-grid { grid-template-columns: 1fr; }
  .why-us-image { max-width: 480px; margin: 0 auto; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .hero { min-height: auto; padding: 7rem 1rem 4rem; }
  .hero-inner { padding: 1rem 0; }
  .hero-image-wrapper { display: none; }
  .section { padding: 3.5rem 1rem; }
  .programs-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .why-us-stats-card { position: relative; bottom: auto; left: auto; margin-top: 1rem; justify-content: center; }
  .about-img-secondary { right: 0; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 0.75rem; }
  .stat-divider { width: 40px; height: 1px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .contact-form-wrapper { padding: 1.5rem; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Default visible state for reduced-motion safety */
.reveal { opacity: 1; transform: none; }
