/* ============================================
   SUNSHINE KIDS ACADEMY — Design System
   Palette: Sunshine Yellow · Coral · Sky Blue · Mint · Cream
   Fonts: Fredoka One (display) + Nunito (body)
============================================ */

:root {
  --yellow:     #FFD166;
  --yellow-dark:#F5B800;
  --coral:      #FF6B6B;
  --coral-dark: #E85555;
  --teal:       #4ECDC4;
  --teal-dark:  #3AB5AC;
  --purple:     #A29BFE;
  --cream:      #FFFBF0;
  --cream-alt:  #FFF5D6;
  --white:      #FFFFFF;
  --text-dark:  #2D2D2D;
  --text-mid:   #5A5A5A;
  --text-light: #8A8A8A;
  --section-alt:#FFF8E7;

  --font-display: 'Fredoka One', cursive;
  --font-body:    'Nunito', sans-serif;

  --radius-sm:  12px;
  --radius-md:  20px;
  --radius-lg:  32px;
  --radius-xl:  48px;

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

  --transition: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html { scroll-behavior: smooth; }

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

img { display: block; width: 100%; height: 100%; object-fit: cover; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-alt { background: var(--section-alt); position: relative; }

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.reveal-right {
  transform: translateX(40px);
}
.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ── Typography ── */
.section-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.highlight {
  color: var(--coral);
  position: relative;
  display: inline-block;
}
.highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--yellow);
  border-radius: 4px;
  z-index: -1;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 6px 0 var(--coral-dark);
}
.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-3px);
  box-shadow: 0 9px 0 var(--coral-dark);
}
.btn-primary:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--coral-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--text-dark);
  border: 3px solid var(--text-dark);
}
.btn-ghost:hover {
  background: var(--text-dark);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-nav {
  background: var(--yellow);
  color: var(--text-dark);
  padding: 10px 22px;
  font-size: 0.95rem;
  box-shadow: 0 4px 0 var(--yellow-dark);
}
.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--yellow-dark);
}

.btn-card {
  background: var(--white);
  color: var(--text-dark);
  font-size: 0.9rem;
  padding: 10px 20px;
  margin-top: 16px;
  box-shadow: var(--shadow-sm);
}
.btn-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-large { padding: 18px 40px; font-size: 1.15rem; }
.btn-full  { width: 100%; justify-content: center; }

/* ── NAV ── */
.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 251, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(255, 209, 102, 0.3);
  transition: box-shadow 0.3s;
}
.nav-wrap.scrolled { box-shadow: var(--shadow-sm); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-sun { font-size: 1.8rem; animation: spin-slow 8s linear infinite; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-dark);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-mid);
  transition: color 0.2s;
}
.nav-links a:not(.btn):hover { color: var(--coral); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 4px;
  transition: 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #FFF8DC 0%, #FFE4B5 40%, #FFD6A5 100%);
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.shape { position: absolute; }

.shape-circle {
  border-radius: 50%;
  opacity: 0.25;
}
.shape-1 {
  width: 400px; height: 400px;
  background: var(--yellow);
  top: -100px; right: -80px;
  animation: float 6s ease-in-out infinite;
}
.shape-2 {
  width: 200px; height: 200px;
  background: var(--coral);
  bottom: 80px; left: -60px;
  animation: float 8s ease-in-out infinite reverse;
}
.shape-star {
  font-size: 2.5rem;
  opacity: 0.3;
  animation: float 5s ease-in-out infinite;
}
.shape-3 { top: 15%; left: 8%; color: var(--coral); animation-delay: -2s; }
.shape-4 { top: 60%; right: 12%; color: var(--teal); font-size: 1.8rem; animation-delay: -4s; }
.shape-dot {
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.4;
}
.shape-5 { width: 16px; height: 16px; top: 30%; left: 20%; animation: float 4s ease-in-out infinite; }
.shape-6 { width: 10px; height: 10px; bottom: 30%; right: 25%; background: var(--coral); animation: float 7s ease-in-out infinite; }
.shape-abc {
  font-family: var(--font-display);
  font-size: 1.2rem;
  opacity: 0.15;
  color: var(--text-dark);
  animation: float 9s ease-in-out infinite;
}
.shape-7 { top: 75%; left: 5%; animation-delay: -3s; }
.shape-8 { top: 20%; right: 5%; animation-delay: -1s; }

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-20px) rotate(5deg); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 24px 120px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 2px solid var(--yellow);
  border-radius: 100px;
  padding: 8px 18px;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  animation: bounce-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

@keyframes bounce-in {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-mid);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-dark);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 2px;
  height: 40px;
  background: rgba(0,0,0,0.12);
  border-radius: 2px;
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.hero-img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  animation: hero-img-in 0.8s ease 0.4s both;
}
@keyframes hero-img-in {
  from { opacity: 0; transform: scale(0.9) rotate(-2deg); }
  to   { opacity: 1; transform: scale(1) rotate(0deg); }
}

.hero-badge-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  animation: float 5s ease-in-out infinite;
}
.badge-float-1 { top: -16px; left: -20px; animation-delay: 0s; border-left: 4px solid var(--yellow); }
.badge-float-2 { bottom: 40px; left: -30px; animation-delay: -2s; border-left: 4px solid var(--teal); }
.badge-float-3 { top: 30px; right: -20px; animation-delay: -4s; border-left: 4px solid var(--coral); }

.wave-divider {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
}
.wave-divider svg { width: 100%; height: 100%; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--white);
  padding: 28px 0;
  border-bottom: 2px dashed rgba(255, 209, 102, 0.5);
}
.trust-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 40px;
}
.trust-item {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── ABOUT ── */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-imgs {
  position: relative;
  height: 480px;
}
.about-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: absolute;
}
.about-img-main {
  width: 75%;
  height: 85%;
  top: 0; left: 0;
  object-fit: cover;
}
.about-img-secondary {
  width: 55%;
  height: 55%;
  bottom: 0; right: 0;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about-badge-float {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--yellow);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  animation: float 5s ease-in-out infinite;
  white-space: nowrap;
}

.about-text p {
  color: var(--text-mid);
  margin-bottom: 16px;
}
.about-list {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-list li {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.95rem;
}

/* ── PROGRAMS ── */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border-top: 6px solid var(--card-color, var(--yellow));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.program-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
}
.program-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.program-age {
  display: inline-block;
  background: var(--card-color, var(--yellow));
  color: var(--text-dark);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
  opacity: 0.85;
}
.program-card > p:not(.program-age) {
  color: var(--text-mid);
  font-size: 0.9rem;
  flex: 1;
}
.program-card ul {
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.program-card ul li {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-mid);
  padding-left: 16px;
  position: relative;
}
.program-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--card-color, var(--yellow));
  font-size: 1.2rem;
  line-height: 1;
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item-large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  aspect-ratio: auto;
}
.gallery-item img {
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: var(--white);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 24px 16px 16px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-overlay { transform: translateY(0); }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--yellow);
  line-height: 1;
  opacity: 0.5;
}

.stars {
  color: var(--yellow-dark);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card > p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--yellow);
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
}
.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--coral) 0%, #FF8E53 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-inner {
  position: relative;
  z-index: 1;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner h2 .highlight { color: var(--yellow); }
.cta-banner h2 .highlight::after { background: rgba(255,255,255,0.3); }
.cta-banner p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 36px;
}
.cta-banner .btn-primary {
  background: var(--white);
  color: var(--coral);
  box-shadow: 0 6px 0 rgba(0,0,0,0.15);
}
.cta-banner .btn-primary:hover {
  background: var(--cream);
  box-shadow: 0 9px 0 rgba(0,0,0,0.15);
}

.cta-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-shape {
  position: absolute;
  font-size: 3rem;
  opacity: 0.15;
  animation: float 6s ease-in-out infinite;
}
.cta-shape:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.cta-shape:nth-child(2) { top: 20%; right: 8%; animation-delay: -2s; }
.cta-shape:nth-child(3) { bottom: 15%; left: 12%; animation-delay: -4s; }
.cta-shape:nth-child(4) { bottom: 20%; right: 5%; animation-delay: -1s; }

/* ── CONTACT ── */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  background: var(--yellow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 2px;
}
.contact-item span {
  font-weight: 700;
  color: var(--text-dark);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(255, 209, 102, 0.3);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 28px;
  color: var(--text-dark);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 16px;
  border: 2px solid #E8E0D0;
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 209, 102, 0.2);
}
.form-group textarea { resize: vertical; }

/* ── WAVE DIVIDERS ── */
.wave-top, .wave-bottom {
  position: absolute;
  left: 0; right: 0;
  height: 60px;
  overflow: hidden;
}
.wave-top { top: -2px; }
.wave-bottom { bottom: -2px; }
.wave-top svg, .wave-bottom svg { width: 100%; height: 100%; }

/* ── FOOTER ── */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin: 16px 0 24px;
  max-width: 260px;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  font-size: 1.4rem;
  transition: transform 0.2s;
}
.social-links a:hover { transform: scale(1.2); }

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--yellow);
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 24px;
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

/* ── SUCCESS STATE ── */
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success .success-icon {
  font-size: 4rem;
  margin-bottom: 16px;
  animation: bounce-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--teal-dark);
  margin-bottom: 12px;
}
.form-success p { color: var(--text-mid); }

/* ── MOBILE NAV ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--cream);
  border-bottom: 2px solid rgba(255, 209, 102, 0.3);
  padding: 24px;
  z-index: 99;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-dark);
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 24px 100px;
    gap: 48px;
  }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-sub { margin: 0 auto 36px; }
  .badge-float-1, .badge-float-2, .badge-float-3 { display: none; }

  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-imgs { height: 320px; }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item-large { grid-column: 1 / 3; grid-row: auto; }

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

  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }

  .section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item-large { grid-column: auto; }
  .footer-inner { grid-template-columns: 1fr; }
  .trust-inner { flex-direction: column; align-items: center; text-align: center; }
}