/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow:  #fbbf24;
  --yellow-l:#fef3c7;
  --pink:    #f472b6;
  --pink-l:  #fce7f3;
  --green:   #34d399;
  --green-l: #d1fae5;
  --blue:    #60a5fa;
  --blue-l:  #dbeafe;
  --purple:  #a78bfa;
  --purple-l:#ede9fe;
  --orange:  #fb923c;
  --orange-l:#ffedd5;
  --dark:    #1e1b4b;
  --text:    #374151;
  --muted:   #6b7280;
  --white:   #ffffff;
  --bg-light:#fdf8ff;
  --radius:  20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.bg-light { background: var(--bg-light); }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 52px; }
.section-eyebrow {
  display: inline-block;
  background: linear-gradient(135deg, var(--yellow), var(--pink));
  color: #fff;
  font-size: 0.8rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 5px 16px; border-radius: 30px;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Baloo 2', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800; color: var(--dark);
  line-height: 1.25; margin-bottom: 12px;
}
.section-desc { font-size: 1rem; color: var(--muted); max-width: 560px; margin: 0 auto; line-height: 1.7; }

.accent-yellow { color: var(--yellow); }
.accent-pink   { color: var(--pink); }
.accent-purple { color: var(--purple); }
.accent-green  { color: var(--green); }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid #fef3c7;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
.header-inner {
  display: flex; align-items: center; gap: 24px;
  max-width: 1100px; margin: 0 auto; padding: 0 24px; height: 68px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.brand-icon {
  width: 44px; height: 44px; border-radius: 14px;
  background: linear-gradient(135deg, var(--yellow), var(--pink));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(251,191,36,0.35);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: 'Baloo 2', sans-serif; font-size: 1.15rem; font-weight: 800; color: var(--dark); }
.brand-sub  { font-size: 0.7rem; font-weight: 700; color: var(--pink); text-transform: uppercase; letter-spacing: 0.05em; }

.main-nav { display: flex; gap: 4px; flex: 1; justify-content: center; }
.nav-link {
  padding: 8px 14px; border-radius: 12px;
  font-size: 0.9rem; font-weight: 700;
  color: var(--dark); text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.nav-link:hover { background: var(--yellow-l); color: var(--dark); }

.btn-header {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #fff; font-weight: 800; font-size: 0.88rem;
  padding: 10px 20px; border-radius: 14px;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 4px 14px rgba(251,191,36,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-header:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(251,191,36,0.5); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2.5px; background: var(--dark); border-radius: 3px; transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #fff9e6 0%, #fce7f3 40%, #ede9fe 100%);
  display: flex; align-items: center;
  padding: 100px 24px 80px;
  position: relative; overflow: hidden;
}

/* Floating shapes */
.deco-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.shape {
  position: absolute; font-size: 2rem;
  animation: floatShape linear infinite;
  opacity: 0.6;
}
.s1 { top:10%; left:5%;  animation-duration:14s; animation-delay:0s;   font-size:1.5rem; }
.s2 { top:20%; right:8%; animation-duration:18s; animation-delay:-3s;  font-size:2.2rem; }
.s3 { top:60%; left:3%;  animation-duration:16s; animation-delay:-6s;  font-size:1.8rem; }
.s4 { top:75%; right:5%; animation-duration:20s; animation-delay:-9s;  font-size:1.6rem; }
.s5 { top:40%; left:12%; animation-duration:12s; animation-delay:-2s;  font-size:2rem; }
.s6 { top:5%;  left:50%; animation-duration:22s; animation-delay:-5s;  font-size:1.3rem; }
.s7 { top:85%; left:40%; animation-duration:17s; animation-delay:-8s;  font-size:1.7rem; }
.s8 { top:30%; right:15%;animation-duration:15s; animation-delay:-4s;  font-size:1.9rem; }

@keyframes floatShape {
  0%   { transform: translateY(0)  rotate(0deg); }
  50%  { transform: translateY(-30px) rotate(180deg); }
  100% { transform: translateY(0)  rotate(360deg); }
}

.hero-content {
  position: relative; z-index: 1;
  flex: 1; max-width: 560px;
}
.hero-eyebrow {
  display: inline-block;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #fff; font-size: 0.85rem; font-weight: 800;
  padding: 6px 18px; border-radius: 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(251,191,36,0.3);
}
.hero-title {
  font-family: 'Baloo 2', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800; line-height: 1.15;
  color: var(--dark); margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.05rem; color: var(--muted);
  line-height: 1.75; margin-bottom: 32px;
}

/* Buttons */
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 16px;
  font-family: 'Nunito', sans-serif; font-size: 1rem; font-weight: 800;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #fff;
  box-shadow: 0 6px 20px rgba(251,191,36,0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(251,191,36,0.5); }
.btn-ghost {
  background: rgba(255,255,255,0.8);
  color: var(--dark); border: 2.5px solid var(--yellow);
}
.btn-ghost:hover { background: var(--yellow-l); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

.hero-stats { display: flex; gap: 12px; flex-wrap: wrap; }
.stat-pill {
  background: rgba(255,255,255,0.85);
  border: 2px solid rgba(251,191,36,0.3);
  border-radius: 30px; padding: 8px 16px;
  font-size: 0.88rem; font-weight: 700; color: var(--dark);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.stat-pill strong { color: var(--orange); }

/* Hero illustration */
.hero-illustration {
  position: relative; z-index: 1;
  flex: 1; display: flex; align-items: center; justify-content: center;
  min-height: 380px;
}
.main-circle {
  width: 340px; height: 340px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(251,191,36,0.15), rgba(244,114,182,0.15));
  border: 3px dashed rgba(251,191,36,0.4);
  display: flex; align-items: center; justify-content: center;
  animation: spinSlow 30s linear infinite;
  position: relative;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

.illus-inner {
  position: absolute; inset: 0;
  animation: spinSlow 30s linear infinite reverse;
}
.illus-emoji {
  position: absolute; font-size: 2.2rem;
  background: #fff; border-radius: 50%;
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.e1 { top: -10px;  left: 50%; transform: translateX(-50%); }
.e2 { top: 50%;    right: -10px; transform: translateY(-50%); }
.e3 { bottom: -10px; left: 50%; transform: translateX(-50%); }
.e4 { top: 50%;    left: -10px; transform: translateY(-50%); }
.e5 { top: 15%;    right: 10%; }
.center-emoji {
  font-size: 4.5rem; z-index: 2; position: relative;
  animation: bounce 2.5s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-12px) scale(1.05); }
}

.hero-wave {
  position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; z-index: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ===== ABOUT ===== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-cards-stack {
  position: relative; height: 340px;
}
.about-big-emoji {
  font-size: 7rem; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  z-index: 0; opacity: 0.12;
}
.about-card {
  position: absolute; background: #fff;
  border-radius: 16px; padding: 14px 20px;
  font-size: 0.92rem; font-weight: 800;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  animation: floatCard ease-in-out infinite;
}
.about-card span { color: var(--dark); }
.ac1 { top:  0;   left: 0;   border-left: 5px solid var(--yellow); animation-duration: 4s; animation-delay: 0s; }
.ac2 { top: 25%;  right: 0;  border-left: 5px solid var(--pink);   animation-duration: 5s; animation-delay: -1s; }
.ac3 { bottom:25%;left: 10%; border-left: 5px solid var(--green);  animation-duration: 4.5s; animation-delay: -2s; }
.ac4 { bottom: 0; right: 5%; border-left: 5px solid var(--blue);   animation-duration: 6s; animation-delay: -0.5s; }
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.about-desc { font-size: 1rem; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.about-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.badge {
  padding: 7px 16px; border-radius: 30px;
  font-size: 0.82rem; font-weight: 800;
}
.badge-green  { background: var(--green-l);  color: #059669; }
.badge-blue   { background: var(--blue-l);   color: #2563eb; }
.badge-yellow { background: var(--yellow-l); color: #d97706; }

/* ===== PROGRAMS ===== */
.programs-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.program-card {
  background: #fff; border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border-top: 5px solid transparent;
  transition: transform 0.25s, box-shadow 0.25s;
  animation-delay: var(--d, 0s);
}
.program-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,0.12); }
.pc-orange { border-top-color: var(--orange); }
.pc-pink   { border-top-color: var(--pink); }
.pc-green  { border-top-color: var(--green); }
.pc-blue   { border-top-color: var(--blue); }

.pc-icon { font-size: 2.5rem; margin-bottom: 14px; }
.program-card h3 { font-family: 'Baloo 2', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.program-card p  { font-size: 0.88rem; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.pc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.pc-list li { font-size: 0.85rem; font-weight: 700; color: var(--text); }
.pc-tag {
  display: inline-block;
  background: var(--yellow-l); color: #d97706;
  font-size: 0.75rem; font-weight: 800;
  padding: 5px 12px; border-radius: 20px;
}

/* ===== WHY ===== */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.why-card {
  background: #fff; border-radius: 20px;
  padding: 32px 24px; text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
  animation-delay: var(--d, 0s);
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.why-icon {
  font-size: 3rem; margin-bottom: 16px;
  display: block;
  animation: wiggle 3s ease-in-out infinite;
}
@keyframes wiggle {
  0%,100% { transform: rotate(0deg); }
  25%      { transform: rotate(10deg); }
  75%      { transform: rotate(-10deg); }
}
.why-card h3 { font-family: 'Baloo 2', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.why-card p  { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.g-card {
  border-radius: 20px; padding: 36px 20px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; font-weight: 800;
  transition: transform 0.25s;
  cursor: default;
}
.g-card:hover { transform: scale(1.03); }
.g-card span { font-size: 3rem; margin-bottom: 10px; display: block; }
.g-card p    { font-size: 0.9rem; color: var(--dark); }
.g-big  { grid-row: span 2; padding: 60px 20px; }
.g-wide { grid-column: span 2; }

.gc-yellow { background: var(--yellow-l); }
.gc-blue   { background: var(--blue-l); }
.gc-green  { background: var(--green-l); }
.gc-pink   { background: var(--pink-l); }
.gc-purple { background: var(--purple-l); }
.gc-orange { background: var(--orange-l); }

/* ===== TESTIMONIALS ===== */
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testi-card {
  background: #fff; border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.25s;
  animation-delay: var(--d, 0s);
}
.testi-card:hover { transform: translateY(-4px); }
.testi-stars { font-size: 1.1rem; margin-bottom: 14px; }
.testi-text  { font-size: 0.92rem; color: var(--muted); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.testi-author strong { display: block; font-size: 0.9rem; color: var(--dark); }
.testi-author span   { font-size: 0.78rem; color: var(--muted); }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.contact-sub { font-size: 1rem; color: var(--muted); line-height: 1.75; margin-bottom: 28px; }
.contact-items { display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.ci-icon {
  font-size: 1.5rem; width: 44px; height: 44px;
  background: var(--yellow-l); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.85rem; font-weight: 800; color: var(--dark); margin-bottom: 2px; }
.contact-item span   { font-size: 0.88rem; color: var(--muted); }
.contact-item a { color: var(--orange); text-decoration: none; font-weight: 700; }
.contact-item a:hover { text-decoration: underline; }

.contact-form-wrap {
  background: #fff; border-radius: 24px;
  padding: 36px; box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.contact-form h3 { font-family: 'Baloo 2', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--dark); margin-bottom: 24px; }
.cf-group { margin-bottom: 16px; }
.cf-group label { display: block; font-size: 0.82rem; font-weight: 800; color: var(--muted); margin-bottom: 6px; }
.cf-group input, .cf-group select, .cf-group textarea {
  width: 100%; padding: 12px 14px;
  border: 2px solid #e5e7eb; border-radius: 12px;
  font-family: 'Nunito', sans-serif; font-size: 0.92rem; color: var(--dark);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical; background: #fafafa;
}
.cf-group input:focus, .cf-group select:focus, .cf-group textarea:focus {
  border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(251,191,36,0.15);
}
.cf-success {
  background: var(--green-l); color: #059669;
  border: 2px solid #6ee7b7; border-radius: 12px;
  padding: 12px 16px; font-size: 0.9rem; font-weight: 700;
  margin-bottom: 16px; text-align: center;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark); color: rgba(255,255,255,0.8);
  padding: 32px 0;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.f-icon { font-size: 2rem; }
.f-name { display: block; font-family: 'Baloo 2', sans-serif; font-size: 1.05rem; font-weight: 800; color: #fff; }
.f-sub  { display: block; font-size: 0.72rem; color: var(--yellow); }
.footer-nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-nav a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.88rem; font-weight: 700; transition: color 0.2s; }
.footer-nav a:hover { color: var(--yellow); }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.footer-copy a { color: var(--yellow); text-decoration: none; }
.footer-copy a:hover { text-decoration: underline; }

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--d, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
  .testi-grid    { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .hero { flex-direction: column; text-align: center; padding-top: 90px; }
  .hero-actions { justify-content: center; }
  .hero-stats   { justify-content: center; }
  .hero-illustration { display: none; }
  .about-grid   { grid-template-columns: 1fr; }
  .about-cards-stack { height: 260px; }
  .contact-grid { grid-template-columns: 1fr; }
  .testi-grid   { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .g-big  { grid-row: span 1; }
  .g-wide { grid-column: span 1; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav   { justify-content: center; }
}
@media (max-width: 540px) {
  .main-nav  { display: none; position: absolute; top: 68px; left: 0; right: 0; background: #fff; border-bottom: 2px solid var(--yellow-l); flex-direction: column; padding: 16px 24px; gap: 4px; z-index: 99; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; margin-left: auto; }
  .btn-header { display: none; }
  .programs-grid { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr; }
}
