/* =========================================================
   Enfance Pre-School — style.css (shared across all pages)
========================================================= */
:root {
  --primary: #FF6B6B;
  --secondary: #4ECDC4;
  --yellow: #FFE66D;
  --mint: #A8E6CF;
  --orange: #FF8B94;
  --bg: #FFFBF0;
  --dark: #2C3E50;
  --light: #FFFFFF;
  --purple: #B39DDB;
  --shadow-soft: 0 10px 30px rgba(44, 62, 80, 0.12);
  --shadow-color: 0 12px 28px rgba(255, 107, 107, 0.25);
  --radius: 24px;
  --radius-lg: 36px;
  --transition: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background-color: var(--bg);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden; /* prevent horizontal scroll */
  max-width: 100vw; /* enforce viewport width limit */
}
h1, h2, h3, h4, h5 { font-family: 'Baloo 2', cursive; line-height: 1.2; font-weight: 700; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
section { position: relative; padding: 100px 8%; overflow: hidden; max-width: 100vw; }
.img-fallback { object-fit: cover; background: linear-gradient(135deg,var(--mint),var(--secondary)); }

/* ---------- Utility ---------- */
.title-wrap { text-align: center; }
.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--dark);
  margin-bottom: 14px;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 0; bottom: -14px;
  width: 100%; height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='14' viewBox='0 0 200 14'%3E%3Cpath d='M2 8 Q 25 1 50 8 T 100 8 T 150 8 T 198 8' stroke='%23FF6B6B' stroke-width='4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  animation: wiggle 2.5s ease-in-out infinite;
}
.section-subtitle { font-size: 1.1rem; color: #6b7a8d; max-width: 640px; margin: 30px auto 60px; text-align: center; }
.eyebrow { display:inline-block; background: var(--mint); color: var(--dark); padding: 6px 18px; border-radius: 30px; font-family:'Baloo 2'; font-weight: 700; font-size: .95rem; margin-bottom: 14px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 34px; border: none; border-radius: 50px;
  font-family: 'Baloo 2', cursive; font-size: 1.05rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
  box-shadow: var(--shadow-soft); position: relative; overflow: hidden;
}
.btn-primary { background: var(--primary); color: var(--light); }
.btn-secondary { background: var(--secondary); color: var(--light); }
.btn-yellow { background: var(--yellow); color: var(--dark); }
.btn-outline { background: transparent; color: var(--dark); box-shadow: inset 0 0 0 2px var(--dark); }
.btn:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 16px 30px rgba(0,0,0,0.2); }
.btn:active { transform: translateY(-1px) scale(1.0); }

.ripple { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.6); transform: scale(0); animation: rippleEffect 0.6s linear; pointer-events: none; }
@keyframes rippleEffect { to { transform: scale(4); opacity: 0; } }
@keyframes wiggle { 0%,100% { transform: rotate(-1deg);} 50% { transform: rotate(1deg);} }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes floaty { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-15px);} }
@keyframes twinkle { 0%,100% { opacity: 0.2; transform: scale(0.6) rotate(0deg);} 50% { opacity: 1; transform: scale(1.2) rotate(90deg);} }

/* ---------- Preloader ---------- */
#preloader {
  position: fixed; inset: 0;
  background: linear-gradient(135deg, var(--secondary), var(--mint));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 99999; transition: opacity 0.8s ease, visibility 0.8s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.loader-art { display: grid; grid-template-columns: repeat(2,34px); grid-gap: 8px; margin-bottom: 26px; }
.loader-block { width: 34px; height: 34px; border-radius: 10px; animation: blockPop 1.4s ease-in-out infinite; }
.loader-block:nth-child(1){ background:#FF6B6B; } .loader-block:nth-child(2){ background:#FFE66D; animation-delay:.15s;}
.loader-block:nth-child(3){ background:#B39DDB; animation-delay:.45s;} .loader-block:nth-child(4){ background:#FF8B94; animation-delay:.3s;}
@keyframes blockPop { 0%,100%{ transform: scale(.6) rotate(0); opacity:.5;} 50%{ transform: scale(1) rotate(8deg); opacity:1;} }
.loader-logo { font-family: 'Baloo 2', cursive; font-size: clamp(2.2rem, 8vw, 3.6rem); font-weight: 800; color: #fff; text-shadow: 0 6px 0 rgba(0,0,0,0.1); animation: floaty 2s ease-in-out infinite; }
.loader-dots { display: flex; gap: 14px; margin-top: 22px; }
.loader-dots span { width: 16px; height: 16px; border-radius: 50%; background: #fff; animation: bounceDot 1.2s ease-in-out infinite; }
.loader-dots span:nth-child(2) { animation-delay: 0.2s; background: var(--yellow); }
.loader-dots span:nth-child(3) { animation-delay: 0.4s; background: var(--primary); }
@keyframes bounceDot { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-22px);} }

/* ---------- Navbar ---------- */
nav {
  position: fixed; top: 0; left: 0; width: 100%;
  padding: 18px 8%; display: flex; align-items: center; justify-content: space-between;
  z-index: 1000; transition: all 0.4s ease; background: rgba(255,251,240,0.6); backdrop-filter: blur(6px);
  transform: translateZ(0); /* force GPU acceleration for fixed position on mobile */
  will-change: transform; /* hint to browser for performance */
}
nav.scrolled { background: rgba(255, 251, 240, 0.96); box-shadow: 0 6px 24px rgba(44,62,80,0.1); padding: 12px 8%; }
.nav-bubbles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: -1; }
.nav-bubbles span { position: absolute; bottom: -20px; border-radius: 50%; opacity: 0.5; animation: bubbleRise linear infinite; }
@keyframes bubbleRise { 0% { transform: translateY(0) scale(1); opacity: .5;} 100% { transform: translateY(-120px) scale(.5); opacity: 0;} }

.logo { font-family: 'Baloo 2', cursive; font-size: 1.8rem; font-weight: 800; display: flex; align-items: center; gap: 10px; }
.logo-image { height: 70px; width: auto; display: block; transition: transform 0.3s ease; }
.logo:hover .logo-image { transform: scale(1.05); }
.logo-mark { width: 44px; height: 44px; border-radius: 14px; background: linear-gradient(135deg,var(--primary),var(--orange)); color:#fff; display:flex; align-items:center; justify-content:center; font-size:1.3rem; box-shadow: var(--shadow-color); animation: floaty 3.5s ease-in-out infinite; }
.logo .e { color: var(--primary); } .logo .n { color: var(--secondary); } .logo .f { color: var(--orange); }
.logo .a { color: var(--purple); } .logo .n2 { color: #e6c200; } .logo .c { color: var(--primary); } .logo .e2 { color: var(--secondary); }

.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-links a { padding: 8px 16px; font-weight: 700; font-size: 1rem; position: relative; border-radius: 30px; transition: color 0.3s ease; }
.nav-links a::after { content: ""; position: absolute; left: 50%; bottom: 2px; width: 0; height: 4px; background: var(--primary); border-radius: 4px; transition: all 0.3s ease; transform: translateX(-50%); }
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 60%; }
.nav-links a.active { color: var(--primary); }
.nav-cta { background: var(--primary); color: #fff !important; padding: 10px 24px !important; border-radius: 30px; box-shadow: var(--shadow-color); }
.nav-cta::after { display: none; }
.nav-cta:hover { transform: translateY(-3px); color: #fff !important; }

.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; background: none; border: none; z-index: 1100; }
.hamburger span { width: 30px; height: 4px; background: var(--dark); border-radius: 4px; transition: all 0.35s ease; }
.hamburger.active span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* ---------- Hero (home) ---------- */
.hero {
  min-height: 100vh; padding: 120px 8% 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; background: linear-gradient(180deg, #aee9f5 0%, #c8f0e8 55%, #e9fbe7 100%);
  position: relative; /* establish containing block for absolutes */
  overflow: hidden; /* clip clouds/balloons/sparkles that move beyond edges */
}
.cloud { position: absolute; background: #fff; border-radius: 100px; opacity: 0.9; filter: drop-shadow(0 8px 10px rgba(0,0,0,0.05)); }
.cloud::before, .cloud::after { content: ""; position: absolute; background: #fff; border-radius: 50%; }
.cloud1 { width: 120px; height: 40px; top: 15%; animation: drift 28s linear infinite; }
.cloud1::before { width: 50px; height: 50px; top: -22px; left: 18px; }
.cloud1::after { width: 38px; height: 38px; top: -16px; left: 60px; }
.cloud2 { width: 90px; height: 30px; top: 28%; animation: drift 36s linear infinite 6s; }
.cloud2::before { width: 40px; height: 40px; top: -18px; left: 14px; }
.cloud2::after { width: 30px; height: 30px; top: -12px; left: 46px; }
.cloud3 { width: 140px; height: 46px; top: 10%; animation: drift 44s linear infinite 12s; }
.cloud3::before { width: 58px; height: 58px; top: -26px; left: 22px; }
.cloud3::after { width: 44px; height: 44px; top: -18px; left: 70px; }
@keyframes drift { 0% { left: -200px; } 100% { left: 100%; } }

.sun { position: absolute; top: 90px; right: 8%; width: 90px; height: 90px; background: radial-gradient(circle, #FFE66D 60%, #FFD93D 100%); border-radius: 50%; box-shadow: 0 0 50px rgba(255, 217, 61, 0.8); animation: sunBounce 4s ease-in-out infinite; z-index: 2; }
.sun::before { content: ""; position: absolute; inset: -18px; border-radius: 50%; background: conic-gradient(from 0deg, transparent 0 10deg, rgba(255,217,61,0.6) 10deg 20deg, transparent 20deg 30deg); animation: spin 18s linear infinite; }
@keyframes sunBounce { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-18px);} }

.hero-content { position: relative; z-index: 5; max-width: 880px; }
.hero h1 { font-size: clamp(2.2rem, 6vw, 4.5rem); color: var(--dark); margin-bottom: 18px; min-height: 1.2em; }
.hero h1 .cursor { display: inline-block; width: 4px; background: var(--primary); margin-left: 2px; animation: blink 0.7s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }
.hero .subheading { font-size: clamp(1.2rem, 3vw, 1.8rem); font-family: 'Baloo 2', cursive; color: var(--primary); margin-bottom: 38px; }
.hero-btns { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

.balloon { position: absolute; bottom: -120px; width: 50px; height: 64px; border-radius: 50%; z-index: 3; animation: balloonRise linear infinite; }
.balloon::after { content: ""; position: absolute; bottom: -40px; left: 50%; width: 1px; height: 40px; background: rgba(0,0,0,0.2); }
@keyframes balloonRise { 0% { transform: translateY(0) rotate(-5deg); opacity: 0;} 10% { opacity: 1;} 90% { opacity: 1;} 100% { transform: translateY(-110vh) rotate(5deg); opacity: 0;} }

.sparkle { position: absolute; color: #fff; font-size: 1.2rem; animation: twinkle 2s ease-in-out infinite; z-index: 4; text-shadow: 0 0 6px rgba(255,255,255,0.8); }

.hero-bottom { position: absolute; bottom: 0; left: 0; width: 100%; line-height: 0; z-index: 4; }
.hero-bottom svg { width: 100%; height: auto; display: block; }
.grass-wave { animation: sway 6s ease-in-out infinite; transform-origin: bottom; }
@keyframes sway { 0%,100% { transform: skewX(0deg);} 50% { transform: skewX(-1.5deg);} }

/* ---------- Inner page banner ---------- */
.page-banner {
  position: relative; padding: 170px 8% 90px; text-align: center; overflow: hidden;
  background: linear-gradient(135deg, var(--secondary), var(--mint));
  max-width: 100vw; /* prevent expansion */
}
.page-banner::after {
  content: ""; position: absolute; bottom: -1px; left: 0; width: 100%; height: 70px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cpath fill='%23FFFBF0' d='M0,40 C360,100 720,0 1080,40 C1260,60 1380,40 1440,30 L1440,100 L0,100 Z'/%3E%3C/svg%3E") no-repeat bottom; background-size: cover;
}
.page-banner h1 { font-size: clamp(2.2rem, 6vw, 3.8rem); color: #fff; text-shadow: 0 4px 0 rgba(0,0,0,0.08); position: relative; z-index: 2; }
.page-banner p { color: #fff; max-width: 620px; margin: 14px auto 0; position: relative; z-index: 2; font-size: 1.1rem; opacity: .95; }
.breadcrumb { position: relative; z-index: 2; margin-top: 18px; color: #fff; font-weight: 700; }
.breadcrumb a { opacity: .85; } .breadcrumb a:hover { opacity: 1; }
.breadcrumb i { margin: 0 8px; font-size: .8rem; }
.banner-shape { position: absolute; border-radius: 50%; opacity: .25; }
.banner-shape.s1 { width: 160px; height: 160px; background:#fff; top: -40px; left: 6%; animation: floaty 6s ease-in-out infinite; }
.banner-shape.s2 { width: 90px; height: 90px; background: var(--yellow); top: 60px; right: 10%; animation: floaty 5s ease-in-out infinite 1s; }
.banner-shape.s3 { width: 50px; height: 50px; background: var(--primary); bottom: 80px; left: 20%; animation: floaty 4s ease-in-out infinite .5s; }

/* ---------- About ---------- */
.about { background: var(--bg); }
.blob { position: absolute; border-radius: 50%; filter: blur(40px); opacity: 0.4; z-index: 0; animation: blobFloat 12s ease-in-out infinite; }
.blob1 { width: 300px; height: 300px; background: var(--mint); top: -60px; left: -80px; }
.blob2 { width: 260px; height: 260px; background: var(--yellow); bottom: -60px; right: -60px; animation-delay: 3s; }
@keyframes blobFloat { 0%,100% { transform: translate(0,0) scale(1);} 50% { transform: translate(30px,-30px) scale(1.1);} }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: var(--radius-lg); width: 100%; height: 460px; object-fit: cover; box-shadow: var(--shadow-soft); position: relative; z-index: 2; }
.about-frame { position: absolute; inset: -16px; border: 6px dashed var(--secondary); border-radius: calc(var(--radius-lg) + 16px); z-index: 1; animation: frameSpin 20s linear infinite; }
@keyframes frameSpin { 0% { transform: rotate(0deg);} 100% { transform: rotate(360deg);} }
.about-badge { position: absolute; bottom: -20px; right: -20px; background: var(--yellow); color: var(--dark); font-family: 'Baloo 2'; font-weight: 700; padding: 18px 24px; border-radius: 24px; box-shadow: var(--shadow-soft); z-index: 3; text-align: center; line-height: 1.1; animation: floaty 3s ease-in-out infinite; }
.about-badge span { font-size: 1.8rem; display: block; color: var(--primary); }
.about-text h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 18px; color: var(--dark); }
.about-text .since { display: inline-block; background: var(--mint); color: var(--dark); padding: 4px 16px; border-radius: 20px; font-weight: 700; margin-bottom: 18px; }
.about-text p { color: #5a6b7d; margin-bottom: 22px; font-size: 1.05rem; }
.about-list { display:grid; grid-template-columns:1fr 1fr; gap:12px 20px; margin-bottom: 26px; }
.about-list li { font-weight:700; color: var(--dark); display:flex; align-items:center; gap:10px; }
.about-list li i { color: var(--secondary); }

.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.stat-card { background: #fff; border-radius: var(--radius); padding: 22px; text-align: center; box-shadow: var(--shadow-soft); transition: var(--transition); }
.stat-card:hover { transform: translateY(-8px); }
.stat-icon { font-size: 2rem; color: var(--secondary); }
.stat-num { font-family: 'Baloo 2'; font-size: 2.2rem; font-weight: 800; color: var(--primary); }
.stat-label { font-weight: 700; color: var(--dark); font-size: 0.95rem; }
.stats-band { background: linear-gradient(135deg,#fff7f7,#f0fbf9); }
.stats-band .stats { grid-template-columns: repeat(4,1fr); max-width: 1000px; margin: 0 auto; }

/* mission / values cards */
.values-grid { display:grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 28px; }
.value-card { background:#fff; border-radius: var(--radius); padding: 34px 26px; box-shadow: var(--shadow-soft); transition: var(--transition); text-align:center; border-top: 6px solid var(--secondary); }
.value-card:hover { transform: translateY(-10px); }
.value-card .v-icon { width:74px; height:74px; border-radius: 20px; margin:0 auto 18px; display:flex; align-items:center; justify-content:center; font-size:1.9rem; color:#fff; background: linear-gradient(135deg,var(--primary),var(--orange)); }
.value-card h3 { font-size:1.25rem; margin-bottom:10px; }
.value-card p { color:#6b7a8d; font-size:.97rem; }

/* team */
.team-grid { display:grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 28px; }
.team-card { background:#fff; border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow-soft); transition: var(--transition); text-align:center; }
.team-card:hover { transform: translateY(-10px); }
.team-card img { width:100%; height: 240px; object-fit: cover; }
.team-body { padding: 20px 18px; }
.team-body h4 { font-size:1.2rem; color:var(--dark); }
.team-body span { color: var(--primary); font-weight:700; font-size:.95rem; }
.team-social { display:flex; justify-content:center; gap:10px; margin-top:12px; }
.team-social a { width:38px; height:38px; border-radius:50%; display:flex; align-items:center; justify-content:center; background:var(--bg); color:var(--dark); transition: var(--transition); }
.team-social a:hover { background: var(--primary); color:#fff; transform: translateY(-4px); }

/* ---------- Programs section ---------- */
.programs { background: linear-gradient(180deg, #fff7f7, #f0fbf9); }
@keyframes bounceIcon { 0%,100% { transform: translateY(0);} 30% { transform: translateY(-18px) scale(1.1);} 60% { transform: translateY(-6px);} }

/* ---------- Why choose us ---------- */
.why { background: var(--bg); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.feature-box { background: #fff; border-radius: var(--radius); padding: 36px 28px; box-shadow: var(--shadow-soft); transition: var(--transition); text-align: center; }
.feature-box:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.feature-icon { width: 80px; height: 80px; border-radius: 24px; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; margin: 0 auto 20px; color: #fff; box-shadow: var(--shadow-soft); }
.feature-box h3 { font-size: 1.3rem; margin-bottom: 10px; }
.feature-box p { color: #6b7a8d; font-size: 0.98rem; }

/* ---------- Gallery ---------- */
.gallery { background: linear-gradient(180deg, #f0fbf9, #fff7f7); }
.gallery-filters { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 40px; }
.filter-btn { background: #fff; border: 2px solid transparent; padding: 10px 24px; border-radius: 30px; font-family: 'Baloo 2'; font-weight: 600; cursor: pointer; transition: var(--transition); box-shadow: var(--shadow-soft); color: var(--dark); }
.filter-btn.active, .filter-btn:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; box-shadow: var(--shadow-soft); height: 260px; transition: opacity 0.4s ease, transform 0.4s ease; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.15); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(255,107,107,0.85), transparent); opacity: 0; display: flex; align-items: flex-end; padding: 20px; color: #fff; font-weight: 700; transition: opacity 0.4s ease; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { margin-right: 8px; }
.gallery-item.hide { display: none; }

.lightbox { position: fixed; inset: 0; background: rgba(20,20,30,0.92); display: none; align-items: center; justify-content: center; z-index: 99998; flex-direction: column; }
.lightbox.open { display: flex; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0;} to { opacity: 1;} }
.lightbox img { max-width: 85%; max-height: 80%; border-radius: var(--radius); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox-close { position: absolute; top: 24px; right: 34px; font-size: 2.4rem; color: #fff; cursor: pointer; background: none; border: none; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); font-size: 2rem; color: #fff; background: rgba(255,255,255,0.15); border: none; width: 56px; height: 56px; border-radius: 50%; cursor: pointer; transition: background 0.3s; }
.lightbox-nav:hover { background: var(--primary); }
.lb-prev { left: 24px; } .lb-next { right: 24px; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--bg); }
.slider { max-width: 760px; margin: 0 auto; position: relative; }
.slides { overflow: hidden; }
.slides-track { display: flex; transition: transform 0.6s cubic-bezier(0.4,0.2,0.2,1); }
.slide { min-width: 100%; padding: 16px; }
.t-card { background: #fff; border-radius: var(--radius-lg); padding: 44px 40px; box-shadow: var(--shadow-soft); text-align: center; }
.t-card img { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; margin: 0 auto 18px; border: 4px solid var(--mint); }
.t-stars { color: var(--yellow); font-size: 1.2rem; margin-bottom: 16px; }
.t-stars i { animation: starPop 0.4s ease backwards; }
@keyframes starPop { from { transform: scale(0);} to { transform: scale(1);} }
.t-quote { font-size: 1.1rem; font-style: italic; color: #4a5a6b; margin-bottom: 20px; }
.t-name { font-family: 'Baloo 2'; font-weight: 700; font-size: 1.2rem; color: var(--primary); }
.t-child { color: #8a97a5; font-size: 0.95rem; }
.slider-arrows { display: flex; justify-content: center; gap: 16px; margin-top: 24px; }
.slider-arrows button { width: 50px; height: 50px; border-radius: 50%; border: none; background: var(--secondary); color: #fff; font-size: 1.2rem; cursor: pointer; transition: var(--transition); box-shadow: var(--shadow-soft); }
.slider-arrows button:hover { background: var(--primary); transform: scale(1.1); }
.slider-dots { display: flex; justify-content: center; gap: 10px; margin-top: 18px; }
.slider-dots span { width: 12px; height: 12px; border-radius: 50%; background: #d3dce5; cursor: pointer; transition: all 0.3s ease; }
.slider-dots span.active { background: var(--primary); width: 32px; border-radius: 6px; }

/* testimonial grid (full page) */
.t-grid { display:grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 28px; }
.t-grid .t-card { text-align:left; padding: 34px 30px; position:relative; }
.t-grid .t-card .quote-mark { font-size:3rem; color:var(--mint); font-family:Georgia,serif; line-height:.6; }
.t-grid .t-card .t-head { display:flex; align-items:center; gap:14px; margin-top:18px; }
.t-grid .t-card .t-head img { width:60px; height:60px; margin:0; border-width:3px; }

/* ---------- Enrollment CTA ---------- */
.enroll-cta { background: linear-gradient(135deg, var(--primary), var(--orange)); text-align: center; color: #fff; }
.enroll-cta h2 { font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 16px; }
.enroll-cta p { font-size: 1.2rem; margin-bottom: 34px; opacity: 0.95; }
.pulse-btn { background: #fff; color: var(--primary); font-size: 1.2rem; padding: 18px 44px; animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.6);} 70% { box-shadow: 0 0 0 24px rgba(255,255,255,0);} 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0);} }
.confetti { position: absolute; top: -10px; width: 10px; height: 14px; opacity: 0.9; animation: confettiFall linear infinite; z-index: 1; }
@keyframes confettiFall { 0% { transform: translateY(-20px) rotate(0deg); opacity: 1;} 100% { transform: translateY(110vh) rotate(720deg); opacity: 0.4;} }

/* ---------- Steps / how it works ---------- */
.steps-grid { display:grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 28px; }
.step-card { background:#fff; border-radius: var(--radius); padding: 34px 26px; box-shadow: var(--shadow-soft); text-align:center; position:relative; transition: var(--transition); }
.step-card:hover { transform: translateY(-8px); }
.step-num { position:absolute; top:-18px; left:50%; transform:translateX(-50%); width:42px; height:42px; border-radius:50%; background:var(--primary); color:#fff; display:flex; align-items:center; justify-content:center; font-family:'Baloo 2'; font-weight:800; box-shadow: var(--shadow-color); }
.step-card .s-icon { font-size:2.2rem; color:var(--secondary); margin:14px 0 14px; }
.step-card h4 { font-size:1.15rem; margin-bottom:8px; }
.step-card p { color:#6b7a8d; font-size:.95rem; }

/* ---------- Contact ---------- */
.contact { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; }
.contact-form { background: #fff; padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; margin-bottom: 8px; font-size: 0.95rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 18px; border: 2px solid #e8edf2; border-radius: 16px; font-family: 'Nunito'; font-size: 1rem; transition: all 0.3s ease; background: #fbfcfd; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--secondary); box-shadow: 0 0 0 4px rgba(78,205,196,0.2); background: #fff; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-success { display: none; background: var(--mint); color: var(--dark); padding: 14px; border-radius: 14px; margin-top: 16px; font-weight: 700; text-align: center; }
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.info-card { background: #fff; padding: 20px 24px; border-radius: var(--radius); box-shadow: var(--shadow-soft); display: flex; gap: 16px; align-items: center; transition: var(--transition); }
.info-card:hover { transform: translateX(8px); }
.info-card .ic { font-size: 1.4rem; width: 54px; height: 54px; min-width: 54px; border-radius: 16px; display: flex; align-items: center; justify-content: center; background: var(--mint); color: var(--dark); }
.info-card h4 { font-size: 1.05rem; margin-bottom: 2px; }
.info-card p { color: #6b7a8d; font-size: 0.95rem; }
.map-embed { border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow-soft); height: 320px; }
.map-embed iframe { width:100%; height:100%; border:0; }
.socials { display: flex; gap: 14px; }
.socials a { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #fff; color: var(--dark); font-size: 1.2rem; box-shadow: var(--shadow-soft); transition: var(--transition); }
.socials a:hover { transform: translateY(-6px) scale(1.1); color: #fff; }
.socials a.fb:hover { background: #1877f2; } .socials a.ig:hover { background: #e4405f; } .socials a.tw:hover { background: #1da1f2; } .socials a.yt:hover { background: #ff0000; }

/* faq */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { background:#fff; border-radius: var(--radius); box-shadow: var(--shadow-soft); margin-bottom: 16px; overflow:hidden; }
.faq-q { width:100%; text-align:left; background:none; border:none; padding: 22px 26px; font-family:'Baloo 2'; font-weight:700; font-size:1.1rem; color:var(--dark); cursor:pointer; display:flex; justify-content:space-between; align-items:center; gap:14px; }
.faq-q i { transition: transform .35s ease; color: var(--primary); }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height:0; overflow:hidden; transition: max-height .4s ease; color:#6b7a8d; padding: 0 26px; }
.faq-item.open .faq-a { max-height: 320px; padding: 0 26px 22px; }

/* ---------- Footer ---------- */
footer { background: var(--dark); color: #cfd8e3; position: relative; padding: 120px 8% 30px; overflow: hidden; }
.footer-wave { position: absolute; top: -1px; left: 0; width: 100%; line-height: 0; }
.footer-star { position: absolute; color: rgba(255,255,255,0.25); animation: twinkle 3s ease-in-out infinite; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 40px; position: relative; z-index: 2; }
.footer-col h4 { color: #fff; font-size: 1.2rem; margin-bottom: 18px; }
.footer-logo { font-family: 'Baloo 2'; font-size: 1.8rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.footer-logo-image { height: 80px; width: auto; display: block; margin-bottom: 12px; }
.footer-logo i { color: var(--yellow); }
.footer-col p { font-size: 0.95rem; margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { transition: all 0.3s ease; }
.footer-col ul li a i { color: var(--secondary); margin-right: 6px; font-size:.85rem; }
.footer-col ul li a:hover { color: var(--yellow); padding-left: 6px; }
.newsletter { display: flex; gap: 8px; margin-top: 12px; }
.newsletter input { flex: 1; padding: 12px 16px; border: none; border-radius: 30px; font-family: 'Nunito'; }
.newsletter button { border: none; background: var(--primary); color: #fff; border-radius: 50%; width: 46px; height: 46px; min-width: 46px; cursor: pointer; transition: var(--transition); }
.newsletter button:hover { background: var(--secondary); transform: rotate(15deg) scale(1.1); }
.footer-contact { margin-top: 16px; font-size:.9rem; }
.footer-contact p { margin-bottom: 8px; } .footer-contact i { color: var(--yellow); margin-right:8px; }
.footer-socials { display: flex; gap: 12px; margin-top: 16px; }
.footer-socials a { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: #fff; transition: var(--transition); }
.footer-socials a:hover { background: var(--primary); transform: translateY(-5px); }
.footer-bottom { text-align: center; margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.95rem; position: relative; z-index: 2; }

/* ---------- Scroll to top ---------- */
.scroll-top { position: fixed; bottom: 30px; right: 30px; width: 56px; height: 56px; border-radius: 50%; background: var(--primary); color: #fff; border: none; font-size: 1.3rem; cursor: pointer; box-shadow: var(--shadow-color); opacity: 0; visibility: hidden; transform: translateY(20px); transition: var(--transition); z-index: 900; }
.scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--secondary); transform: translateY(-5px) scale(1.1); }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band .stats { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  section { padding: 70px 6%; }
  nav {
    position: fixed !important; /* force fixed even if JS tries to change it */
    top: 0 !important; /* always at the top */
    transform: translate3d(0, 0, 0) !important; /* lock position on mobile, prevent scroll issues */
    -webkit-transform: translate3d(0, 0, 0) !important;
    -webkit-backface-visibility: hidden; /* iOS Safari fix */
    backface-visibility: hidden;
  }
  .hamburger { display: flex; }
  .nav-links { position: fixed; top: 0; right: -100%; height: 100vh; width: 75%; max-width: 320px; background: var(--bg); flex-direction: column; justify-content: center; gap: 18px; box-shadow: -10px 0 40px rgba(0,0,0,0.15); transition: right 0.45s cubic-bezier(0.4,0.2,0.2,1); padding: 40px; overflow-y: auto; overflow-x: hidden; }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.3rem; }
  .stats { grid-template-columns: 1fr 1fr; }
  .form-row, .about-list { grid-template-columns: 1fr; }
  .sun { width: 64px; height: 64px; top: 80px; }
  .page-banner { padding: 140px 6% 80px; }
}
@media (max-width: 540px) {
  .gallery-grid, .footer-grid, .stats, .stats-band .stats { grid-template-columns: 1fr; }
}

/* ---------- Program cards (curriculum) ---------- */
.programs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; align-items: stretch; }
.prog-card { background:#fff; border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-soft); transition: transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow .4s ease; display:flex; flex-direction:column; }
.prog-card:hover { transform: translateY(-12px); box-shadow: 0 26px 48px rgba(44,62,80,0.18); }
.prog-card-media { position:relative; height: 180px; overflow:hidden; }
.prog-card-media img { width:100%; height:100%; object-fit:cover; transition: transform .6s ease; }
.prog-card:hover .prog-card-media img { transform: scale(1.1); }
.prog-card-tint { position:absolute; inset:0; opacity:.55; mix-blend-mode: multiply; }
.prog-card-media::after { content:""; position:absolute; left:0; right:0; bottom:-1px; height:36px; background:#fff; border-radius:50% 50% 0 0 / 100% 100% 0 0; }
.prog-card-age { position:absolute; top:14px; left:14px; z-index:2; background: rgba(255,255,255,.92); color: var(--dark); padding:5px 14px; border-radius:20px; font-family:'Baloo 2'; font-weight:700; font-size:.8rem; box-shadow: var(--shadow-soft); }
.prog-card-icon { position:absolute; bottom:-2px; left:50%; transform:translateX(-50%); z-index:3; width:62px; height:62px; border-radius:18px; display:flex; align-items:center; justify-content:center; color:#fff; font-size:1.7rem; box-shadow: var(--shadow-soft); border:3px solid #fff; transition: transform .4s ease; }
.prog-card:hover .prog-card-icon { transform: translateX(-50%) translateY(-4px) rotate(-6deg); }
.prog-card-body { padding: 26px 26px 30px; text-align:center; display:flex; flex-direction:column; flex:1; }
.prog-card-body h3 { font-size:1.5rem; color:var(--dark); margin-top:6px; }
.prog-card-body .prog-sub { color: var(--accent); font-weight:800; font-family:'Baloo 2'; font-size:.92rem; margin-bottom:12px; display:block; }
.prog-card-body p { color:#6b7a8d; font-size:.96rem; margin-bottom:18px; }
.prog-tags { display:flex; flex-wrap:wrap; justify-content:center; gap:8px; margin-bottom:22px; margin-top:auto; }
.prog-tags span { background:#f4f7fa; color:#5a6b7d; font-weight:700; font-size:.74rem; padding:5px 11px; border-radius:20px; }
.prog-tags span i { color: var(--accent); margin-right:4px; }
.prog-card-body .btn { align-self:center; background: var(--accent); color:#fff; }
.prog-card-body .btn:hover { box-shadow: 0 14px 26px color-mix(in srgb, var(--accent) 40%, transparent); }

/* ---------- Curriculum modal ---------- */
.prog-modal { position: fixed; inset: 0; z-index: 99997; display:none; align-items:flex-start; justify-content:center; padding: 40px 16px; background: rgba(20,20,30,.6); backdrop-filter: blur(4px); overflow-y:auto; overflow-x: hidden; /* prevent horizontal scroll */ }
.prog-modal.open { display:flex; animation: fadeIn .3s ease; }
body.modal-lock { overflow:hidden; }
.prog-modal-box { background:#fff; width:100%; max-width: 760px; border-radius: var(--radius-lg); overflow:hidden; box-shadow: 0 30px 70px rgba(0,0,0,.4); transform: translateY(30px) scale(.96); opacity:0; transition: transform .45s cubic-bezier(.34,1.56,.64,1), opacity .35s ease; margin:auto; }
.prog-modal.open .prog-modal-box { transform: translateY(0) scale(1); opacity:1; }
.prog-modal-head { position:relative; padding: 28px 64px 28px 28px; color:#fff; display:flex; align-items:center; gap:18px; }
.prog-modal-head .pm-icon { width:60px; height:60px; min-width:60px; border-radius:18px; background: rgba(255,255,255,.25); display:flex; align-items:center; justify-content:center; font-size:1.7rem; }
.prog-modal-head h3 { font-size:1.5rem; line-height:1.2; }
.prog-modal-head h3 span { font-weight:500; font-size:1.05rem; opacity:.95; display:inline-block; }
.prog-modal-head .pm-age { font-weight:700; font-size:.9rem; opacity:.95; }
.prog-modal-close { position:absolute; top:18px; right:20px; background:rgba(255,255,255,.25); border:none; color:#fff; width:40px; height:40px; border-radius:50%; font-size:1.6rem; line-height:1; cursor:pointer; transition: var(--transition); }
.prog-modal-close:hover { background:rgba(255,255,255,.45); transform: rotate(90deg); }
.prog-modal-body { padding: 26px 28px 32px; }
.pm-skills-label { display:inline-block; background: var(--accent); color:#fff; padding:5px 18px; border-radius:30px; font-family:'Baloo 2'; font-weight:700; font-size:.9rem; margin-bottom:18px; }

/* accordion */
.accordion { border:2px solid #eef2f6; border-radius: var(--radius); margin-bottom:14px; overflow:hidden; transition: border-color .3s ease; }
.accordion.open { border-color: var(--accent); }
.acc-head { width:100%; background:#fbfcfd; border:none; padding:16px 20px; display:flex; align-items:center; justify-content:space-between; gap:12px; cursor:pointer; font-family:'Baloo 2'; font-weight:700; font-size:1.08rem; color:var(--dark); transition: background .3s ease; }
.acc-head:hover { background:#f4f7fa; }
.acc-head > span:first-child i { color: var(--accent); margin-right:10px; }
.acc-meta { font-family:'Nunito'; font-weight:700; font-size:.82rem; color:#9aa7b4; display:flex; align-items:center; gap:10px; }
.acc-arrow { transition: transform .35s ease; color: var(--accent); }
.accordion.open .acc-arrow { transform: rotate(180deg); }
.acc-body { max-height:0; overflow:hidden; transition: max-height .45s ease; }
.accordion.open .acc-body { max-height: 900px; }
.acc-body ul { padding: 8px 22px 20px; columns: 2; column-gap: 26px; }
.acc-body ul li { break-inside: avoid; margin-bottom:9px; font-size:.95rem; color:#4a5a6b; display:flex; gap:9px; align-items:flex-start; }
.acc-body ul li i { color: var(--accent); margin-top:5px; font-size:.8rem; }

/* kit box */
.kit-box { background: linear-gradient(135deg,#fff7f7,#f0fbf9); border:2px dashed var(--accent); border-radius: var(--radius); padding: 22px 24px; margin: 22px 0; }
.kit-box h4 { color:var(--dark); font-size:1.15rem; margin-bottom:14px; }
.kit-box h4 i { color: var(--accent); margin-right:8px; }
.kit-item { font-size:.96rem; color:#4a5a6b; margin-bottom:10px; }
.kit-item:last-child { margin-bottom:0; }
.kit-item strong { color: var(--dark); font-family:'Baloo 2'; }

@media (max-width: 560px) {
  .acc-body ul { columns: 1; }
  .prog-modal-head { padding: 24px 56px 24px 20px; }
  .prog-modal-head h3 { font-size:1.25rem; }
  .prog-modal-head h3 span { display:block; font-size:.95rem; }
}

/* ---------- Floating WhatsApp button ---------- */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px; z-index: 950;
  display: flex; align-items: center; gap: 0;
  height: 60px; padding: 0; min-width: 60px;
  background: #25D366; color: #fff; border-radius: 50px;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.5);
  overflow: hidden; transition: var(--transition);
  animation: waPulse 2.4s ease-in-out infinite;
}
.whatsapp-float i { font-size: 1.9rem; width: 60px; min-width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; }
.whatsapp-float-label { white-space: nowrap; font-family: 'Baloo 2', cursive; font-weight: 700; font-size: 1rem; max-width: 0; opacity: 0; transition: max-width .4s ease, opacity .3s ease, padding .4s ease; }
.whatsapp-float:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(37, 211, 102, 0.6); animation-play-state: paused; }
.whatsapp-float:hover .whatsapp-float-label { max-width: 160px; opacity: 1; padding-right: 22px; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 26px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.5); }
  50% { box-shadow: 0 10px 26px rgba(37,211,102,0.5), 0 0 0 16px rgba(37,211,102,0); }
}
/* stack scroll-top above the WhatsApp button so they never overlap */
.scroll-top { bottom: 104px; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 30px; left: 50%; transform: translate(-50%, 120%);
  background: var(--dark); color: #fff; padding: 14px 24px; border-radius: 50px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.3); z-index: 99999;
  font-weight: 700; display: flex; align-items: center; gap: 10px;
  opacity: 0; visibility: hidden; transition: transform .5s cubic-bezier(.34,1.56,.64,1), opacity .4s ease, visibility .4s;
  max-width: 90vw;
}
.toast i { color: #25D366; font-size: 1.3rem; }
.toast.show { transform: translate(-50%, 0); opacity: 1; visibility: visible; }

/* ---------- Form validation states ---------- */
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 4px rgba(255,107,107,0.18) !important;
  background: #fff5f5;
}
.field-error { display: block; color: var(--primary); font-size: .85rem; font-weight: 700; margin-top: 6px; animation: shakeX .4s ease; }
.field-error:empty { display: none; }
@keyframes shakeX { 0%,100%{ transform: translateX(0);} 25%{ transform: translateX(-5px);} 75%{ transform: translateX(5px);} }

/* ---------- Extra mobile polish ---------- */
@media (max-width: 768px) {
  .whatsapp-float { bottom: 20px; right: 20px; height: 54px; min-width: 54px; }
  .whatsapp-float i { width: 54px; min-width: 54px; height: 54px; font-size: 1.7rem; }
  .whatsapp-float:hover .whatsapp-float-label { max-width: 0; opacity: 0; padding-right: 0; } /* icon-only on mobile */
  .scroll-top { bottom: 86px; right: 22px; width: 48px; height: 48px; }
  .toast { bottom: 86px; font-size: .92rem; padding: 12px 18px; }
  .btn { padding: 14px 26px; }
  .nav-links a, .filter-btn, .acc-head, .faq-q { min-height: 44px; }
}
@media (max-width: 400px) {
  .section-title { font-size: 1.7rem; }
  .prog-card-body { padding: 22px 18px 26px; }
  .contact-form { padding: 26px 20px; }
}

/* =========================================================
   NEW HOME PAGE DESIGN - Figma Redesign
========================================================= */

/* ---------- New Hero Section ---------- */
.hero-new {
  min-height: 100vh;
  padding: 140px 8% 80px;
  background: linear-gradient(180deg, #FFF9F5 0%, #FFFFFF 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-new-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-new-left h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: #5A4A42;
  line-height: 1.2;
  margin-bottom: 24px;
  font-weight: 600;
}

.hero-new-left h1 .site-name {
  display: block;
  font-weight: 800;
  color: #5A4A42;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #8B7E77;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-new-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-new {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  text-decoration: none;
}

.btn-new-primary {
  background: #F4C4A7;
  color: #5A4A42;
  box-shadow: 0 4px 14px rgba(244, 196, 167, 0.4);
}

.btn-new-primary:hover {
  background: #F0B897;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 196, 167, 0.5);
}

.btn-new-secondary {
  background: #C8E4F0;
  color: #4A5A6A;
  box-shadow: 0 4px 14px rgba(200, 228, 240, 0.4);
}

.btn-new-secondary:hover {
  background: #B5D8E8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 228, 240, 0.5);
}

.hero-new-right {
  position: relative;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.hero-image-wrap img {
  width: 100%;
  height: auto;
  border-radius: 40px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(90, 74, 66, 0.15);
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.hero-bg-shape.shape-1 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #FFE8D6 0%, #F4C4A7 100%);
  top: -60px;
  right: -80px;
  opacity: 0.6;
}

.hero-bg-shape.shape-2 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #FFFACD 0%, #FFE8B8 100%);
  bottom: -40px;
  left: -60px;
  opacity: 0.5;
}

/* ---------- Why Choose Section ---------- */
.why-new {
  padding: 100px 8%;
  background: #FFFFFF;
}

.section-header-new {
  text-align: center;
  margin-bottom: 60px;
}

.section-header-new h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #2D2D2D;
  margin-bottom: 12px;
  font-weight: 700;
}

.title-underline {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, #F4C4A7 50%, transparent 100%);
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #A08B82;
  margin-bottom: 12px;
  font-weight: 700;
}

.features-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card-new {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid #F5F5F5;
}

.feature-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon-new {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  color: #5A4A42;
}

.feature-card-new h3 {
  font-size: 1.3rem;
  color: #2D2D2D;
  margin-bottom: 12px;
  font-weight: 700;
}

.feature-card-new p {
  font-size: 0.98rem;
  color: #6B6B6B;
  line-height: 1.6;
}

/* ---------- About Section ---------- */
.about-new {
  padding: 100px 8%;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF9F5 100%);
}

.about-new-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.about-image-container {
  position: relative;
  max-width: 500px;
}

.about-bg-circle {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFE8D6 0%, #F4C4A7 50%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.4;
}

.about-image-container img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 20px 60px rgba(90, 74, 66, 0.2);
}

.about-new-right h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #2D2D2D;
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.about-new-right p {
  font-size: 1.05rem;
  color: #6B6B6B;
  line-height: 1.8;
  margin-bottom: 28px;
}

.about-new-list {
  list-style: none;
  margin-bottom: 32px;
}

.about-new-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: #5A4A42;
  margin-bottom: 16px;
  font-weight: 600;
}

.about-new-list li i {
  color: #8FBC8F;
  font-size: 1.1rem;
  margin-top: 2px;
}

.btn-new-brown {
  background: #7A5C52;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(122, 92, 82, 0.3);
}

.btn-new-brown:hover {
  background: #6A4C42;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(122, 92, 82, 0.4);
}

/* ---------- Programs Section ---------- */
.programs-new {
  padding: 100px 8%;
  background: #FFFFFF;
}

.programs-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
}

.program-card-new {
  background: #FFFFFF;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.program-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}

.program-card-image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.program-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.program-card-new:hover .program-card-image img {
  transform: scale(1.08);
}

.program-age-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  color: #5A4A42;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.program-card-content {
  padding: 32px 28px;
}

.program-card-content h3 {
  font-size: 1.5rem;
  color: #2D2D2D;
  margin-bottom: 14px;
  font-weight: 700;
}

.program-card-content p {
  font-size: 0.98rem;
  color: #6B6B6B;
  line-height: 1.7;
  margin-bottom: 24px;
}

.learn-more-btn {
  background: transparent;
  border: none;
  color: #7A5C52;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  transition: all 0.3s ease;
}

.learn-more-btn:hover {
  color: #5A4A42;
  gap: 12px;
}

.learn-more-btn i {
  font-size: 0.9rem;
}

/* ---------- Testimonials Section ---------- */
.testimonials-new {
  padding: 100px 8%;
  background: linear-gradient(180deg, #FFF9F5 0%, #FFFFFF 100%);
}

.testimonials-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card-new {
  background: #FFFFFF;
  border-radius: 32px;
  padding: 40px 36px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card-new:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}

.quote-mark {
  font-size: 5rem;
  color: #F4C4A7;
  font-family: Georgia, serif;
  line-height: 0.8;
  margin-bottom: 16px;
  opacity: 0.5;
}

.testimonial-text {
  font-size: 1.05rem;
  color: #4A4A4A;
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #F4C4A7;
}

.testimonial-author h4 {
  font-size: 1.1rem;
  color: #2D2D2D;
  margin-bottom: 4px;
  font-weight: 700;
}

.testimonial-author p {
  font-size: 0.9rem;
  color: #8B7E77;
}

/* ---------- CTA Section ---------- */
.cta-new {
  padding: 80px 8%;
  background: #FFFFFF;
}

.cta-new-container {
  background: linear-gradient(135deg, #F4C4A7 0%, #E8B59A 100%);
  border-radius: 48px;
  padding: 80px 60px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.cta-new-container::before,
.cta-new-container::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.cta-new-container::before {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
}

.cta-new-container::after {
  width: 200px;
  height: 200px;
  bottom: -80px;
  right: -80px;
}

.cta-new-container h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #5A4A42;
  margin-bottom: 18px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.cta-new-container p {
  font-size: 1.1rem;
  color: #5A4A42;
  margin-bottom: 36px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

.cta-new-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.btn-new-brown-solid {
  background: #7A5C52;
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(122, 92, 82, 0.4);
}

.btn-new-brown-solid:hover {
  background: #6A4C42;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(122, 92, 82, 0.5);
}

.btn-new-white {
  background: #FFFFFF;
  color: #7A5C52;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.btn-new-white:hover {
  background: #F8F8F8;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.5);
}

/* ---------- Responsive Design ---------- */
@media (max-width: 1024px) {
  .hero-new-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .hero-new-left h1,
  .hero-desc {
    max-width: 100%;
  }
  
  .hero-new-btns {
    justify-content: center;
  }
  
  .hero-image-wrap {
    max-width: 500px;
  }
  
  .about-new-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .about-new-left {
    display: flex;
    justify-content: center;
  }
  
  .about-new-list {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .about-new-list li {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-new {
    padding: 120px 6% 60px;
  }
  
  .why-new,
  .about-new,
  .programs-new,
  .testimonials-new {
    padding: 70px 6%;
  }
  
  .features-grid-new {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .programs-grid-new {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .testimonials-grid-new {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .cta-new-container {
    padding: 50px 32px;
    border-radius: 32px;
  }
  
  .cta-new-btns {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-new {
    width: 100%;
    justify-content: center;
  }
  
  .hero-bg-shape.shape-1 {
    width: 250px;
    height: 250px;
    top: -40px;
    right: -60px;
  }
  
  .hero-bg-shape.shape-2 {
    width: 180px;
    height: 180px;
    bottom: -30px;
    left: -40px;
  }
}

@media (max-width: 480px) {
  .hero-new {
    padding: 100px 5% 50px;
  }
  
  .section-header-new h2 {
    font-size: 1.8rem;
  }
  
  .feature-card-new {
    padding: 32px 20px;
  }
  
  .program-card-content {
    padding: 24px 20px;
  }
  
  .testimonial-card-new {
    padding: 32px 24px;
  }
  
  .cta-new-container {
    padding: 40px 24px;
  }
  
  .about-bg-circle {
    width: 320px;
    height: 320px;
  }
}

/* =========================================================
   PROGRAMS PAGE - Figma Redesign
========================================================= */

/* ---------- Programs Hero Section ---------- */
.programs-hero {
  padding: 180px 8% 100px;
  background: linear-gradient(180deg, #FFF4E6 0%, #FFFFFF 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.programs-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #F4C4A7 0%, #E8B59A 100%);
  color: #5A4A42;
  padding: 10px 28px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  box-shadow: 0 4px 14px rgba(244, 196, 167, 0.3);
}

.programs-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: #2D2D2D;
  line-height: 1.3;
  margin-bottom: 24px;
  font-weight: 700;
}

.highlight-text {
  color: #D84A4A;
  position: relative;
  font-weight: 800;
}

.hero-underline {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, #F4C4A7 50%, transparent 100%);
  margin: 0 auto 32px;
}

.programs-hero p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #6B6B6B;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* ---------- Program Detail Sections (Alternating Layout) ---------- */
.program-detail-section {
  padding: 80px 8%;
  background: #FFFFFF;
}

.program-detail-section:nth-child(even) {
  background: linear-gradient(180deg, #FFF9F5 0%, #FFFFFF 100%);
}

.program-detail-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.program-detail-section.layout-right .program-detail-container {
  direction: rtl;
}

.program-detail-section.layout-right .program-detail-container > * {
  direction: ltr;
}

.program-image-wrap {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border: 6px solid #F4C4A7;
  transition: all 0.4s ease;
}

.program-image-wrap:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.program-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.program-image-wrap:hover img {
  transform: scale(1.08);
}

.program-age-badge-detail {
  position: absolute;
  top: 24px;
  left: 24px;
  background: linear-gradient(135deg, #D84A4A 0%, #C43838 100%);
  color: #FFFFFF;
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(216, 74, 74, 0.4);
  z-index: 2;
}

/* Alternate badge colors for variety */
.program-detail-section:nth-child(3) .program-age-badge-detail {
  background: linear-gradient(135deg, #4A8B7A 0%, #3A7A6A 100%);
  box-shadow: 0 4px 16px rgba(74, 139, 122, 0.4);
}

.program-detail-section:nth-child(4) .program-age-badge-detail {
  background: linear-gradient(135deg, #7A5C52 0%, #6A4C42 100%);
  box-shadow: 0 4px 16px rgba(122, 92, 82, 0.4);
}

.program-detail-section:nth-child(5) .program-age-badge-detail {
  background: linear-gradient(135deg, #D84A4A 0%, #C43838 100%);
  box-shadow: 0 4px 16px rgba(216, 74, 74, 0.4);
}

.program-detail-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #2D2D2D;
  margin-bottom: 20px;
  font-weight: 700;
}

/* Alternate title colors */
.program-detail-section:nth-child(3) .program-detail-content h2 {
  color: #4A8B7A;
}

.program-detail-section:nth-child(4) .program-detail-content h2 {
  color: #7A5C52;
}

.program-detail-section:nth-child(5) .program-detail-content h2 {
  color: #D84A4A;
}

.program-summary {
  font-size: 1.05rem;
  color: #6B6B6B;
  line-height: 1.8;
  margin-bottom: 32px;
}

.program-features-list {
  list-style: none;
  margin-bottom: 36px;
}

.program-features-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: #4A4A4A;
  margin-bottom: 16px;
  font-weight: 600;
  padding: 12px;
  background: #F9F9F9;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.program-features-list li:hover {
  background: #F4F4F4;
  transform: translateX(8px);
}

.program-features-list li i {
  color: #4A8B7A;
  font-size: 1.1rem;
  min-width: 20px;
}

/* Alternate check colors */
.program-detail-section:nth-child(3) .program-features-list li i {
  color: #4A8B7A;
}

.program-detail-section:nth-child(4) .program-features-list li i {
  color: #7A5C52;
}

.program-detail-section:nth-child(5) .program-features-list li i {
  color: #D84A4A;
}

.program-detail-section:nth-child(6) .program-features-list li i {
  color: #4A8B7A;
}

/* ---------- Enrollment Steps Section ---------- */
.enrollment-steps-new {
  padding: 100px 8%;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF9F5 100%);
}

.section-subtitle-new {
  text-align: center;
  font-size: 1.05rem;
  color: #6B6B6B;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.steps-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.step-card-new {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 48px 28px 36px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.step-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: #F4C4A7;
}

.step-num-new {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F4C4A7 0%, #E8B59A 100%);
  color: #5A4A42;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 1.4rem;
  box-shadow: 0 4px 16px rgba(244, 196, 167, 0.4);
}

.step-icon-new {
  font-size: 2.5rem;
  color: #7A5C52;
  margin-bottom: 20px;
}

.step-card-new h4 {
  font-size: 1.3rem;
  color: #2D2D2D;
  margin-bottom: 12px;
  font-weight: 700;
}

.step-card-new p {
  font-size: 0.98rem;
  color: #6B6B6B;
  line-height: 1.7;
}

/* ---------- CTA Section for Programs Page ---------- */
.cta-programs {
  padding: 80px 8% 100px;
  background: #FFFFFF;
}

/* ---------- Responsive Design for Programs Page ---------- */
@media (max-width: 1024px) {
  .program-detail-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .program-detail-section.layout-right .program-detail-container {
    direction: ltr;
  }
  
  .program-detail-image {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .programs-hero {
    padding: 140px 6% 70px;
  }
  
  .hero-badge {
    font-size: 0.75rem;
    padding: 8px 20px;
  }
  
  .program-detail-section {
    padding: 60px 6%;
  }
  
  .program-detail-container {
    gap: 40px;
  }
  
  .program-image-wrap {
    border-width: 4px;
  }
  
  .program-age-badge-detail {
    top: 16px;
    left: 16px;
    padding: 8px 18px;
    font-size: 0.85rem;
  }
  
  .program-features-list li {
    padding: 10px;
    font-size: 0.95rem;
  }
  
  .enrollment-steps-new {
    padding: 70px 6%;
  }
  
  .steps-grid-new {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .cta-programs {
    padding: 60px 6% 80px;
  }
}

@media (max-width: 480px) {
  .programs-hero {
    padding: 120px 5% 60px;
  }
  
  .programs-hero h1 {
    font-size: 1.8rem;
  }
  
  .program-detail-section {
    padding: 50px 5%;
  }
  
  .program-detail-content h2 {
    font-size: 1.8rem;
  }
  
  .program-summary {
    font-size: 1rem;
  }
  
  .program-features-list li {
    font-size: 0.9rem;
    padding: 8px;
  }
  
  .step-card-new {
    padding: 40px 20px 28px;
  }
  
  .step-num-new {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
  
  .step-icon-new {
    font-size: 2rem;
  }
}

/* =========================================================
   ABOUT US PAGE - Figma Redesign
========================================================= */

/* ---------- About Hero Section ---------- */
.about-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('<?= img("about2", 1600, 900) ?>') center/cover no-repeat;
  background-image: linear-gradient(135deg, rgba(78, 205, 196, 0.85), rgba(168, 230, 207, 0.85)), url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Crect fill="%234ECDC4" width="100" height="100"/%3E%3C/svg%3E');
  overflow: hidden;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(78, 205, 196, 0.85) 0%, rgba(122, 92, 82, 0.75) 100%);
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 8%;
  color: #FFFFFF;
}

.about-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 24px;
  font-weight: 700;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.about-hero p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.8;
  max-width: 750px;
  margin: 0 auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* ---------- Our Story Section ---------- */
.our-story-section {
  padding: 100px 8%;
  background: #FFFFFF;
}

.our-story-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.story-image-wrap {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border: 8px solid #4ECDC4;
  transition: all 0.4s ease;
}

.story-image-wrap:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.story-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.story-image-wrap:hover img {
  transform: scale(1.08);
}

.story-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #FFE66D 0%, #FFD93D 100%);
  color: #5A4A42;
  padding: 12px 28px;
  border-radius: 30px;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(255, 230, 109, 0.5);
  z-index: 2;
}

.story-content {
  padding: 0 20px;
}

.story-label {
  display: inline-block;
  color: #D84A4A;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.story-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #4ECDC4 0%, transparent 100%);
  margin-bottom: 20px;
}

.story-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #2D2D2D;
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.story-content p {
  font-size: 1.05rem;
  color: #6B6B6B;
  line-height: 1.8;
  margin-bottom: 20px;
}

.story-quote {
  background: linear-gradient(135deg, #FFF9F5 0%, #FFF4E6 100%);
  border-left: 4px solid #F4C4A7;
  padding: 20px 24px;
  border-radius: 12px;
  margin: 28px 0;
  position: relative;
}

.story-quote i {
  color: #F4C4A7;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.story-quote p {
  font-size: 1.05rem;
  font-style: italic;
  color: #5A4A42;
  margin: 0;
  line-height: 1.7;
}

.story-icons {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.story-icons i {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: linear-gradient(135deg, #4ECDC4 0%, #A8E6CF 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(78, 205, 196, 0.3);
  transition: all 0.3s ease;
}

.story-icons i:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 6px 20px rgba(78, 205, 196, 0.5);
}

/* ---------- Mission & Vision Section ---------- */
.mission-vision-section {
  padding: 100px 8%;
  background: linear-gradient(180deg, #FFF9F5 0%, #FFFFFF 100%);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-card,
.vision-card {
  background: #FFFFFF;
  border-radius: 32px;
  padding: 50px 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.mission-card::before,
.vision-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F4C4A7 0%, #FFE8D6 100%);
  opacity: 0.15;
  z-index: 0;
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.mv-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7A5C52 0%, #6A4C42 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  box-shadow: 0 6px 20px rgba(122, 92, 82, 0.3);
  position: relative;
  z-index: 1;
}

.mission-card h3,
.vision-card h3 {
  color: #F4C4A7;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.mission-card h2,
.vision-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #2D2D2D;
  margin-bottom: 18px;
  font-weight: 700;
}

.mission-card p,
.vision-card p {
  font-size: 1.05rem;
  color: #6B6B6B;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* ---------- Core Values Section ---------- */
.core-values-section {
  padding: 100px 8%;
  background: #FFFFFF;
}

.section-subtitle-about {
  text-align: center;
  font-size: 1.05rem;
  color: #6B6B6B;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.values-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card-new {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.value-card-new::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FFE8D6 0%, #FFFFFF 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.value-card-new:hover::before {
  opacity: 1;
}

.value-card-new:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
  border-color: #F4C4A7;
}

.value-icon-new {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.value-card-new:nth-child(1) .value-icon-new {
  background: linear-gradient(135deg, #FFD8B8 0%, #FFC89E 100%);
}

.value-card-new:nth-child(2) .value-icon-new {
  background: linear-gradient(135deg, #E8D5F0 0%, #D0B8E8 100%);
}

.value-card-new:nth-child(3) .value-icon-new {
  background: linear-gradient(135deg, #C8E6F5 0%, #A8D5E2 100%);
}

.value-card-new:nth-child(4) .value-icon-new {
  background: linear-gradient(135deg, #FFD8D8 0%, #FFC8C8 100%);
}

.value-card-new:hover .value-icon-new {
  transform: scale(1.15) rotate(10deg);
}

.value-card-new h3 {
  font-size: 1.35rem;
  color: #2D2D2D;
  margin-bottom: 14px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.value-card-new p {
  font-size: 0.98rem;
  color: #6B6B6B;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ---------- Stats Section ---------- */
.stats-section-new {
  padding: 80px 8%;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF9F5 100%);
}

.stats-container-new {
  background: linear-gradient(135deg, #D84A4A 0%, #C43838 100%);
  border-radius: 40px;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 12px 48px rgba(216, 74, 74, 0.3);
  position: relative;
  overflow: hidden;
}

.stats-container-new::before,
.stats-container-new::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.stats-container-new::before {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
}

.stats-container-new::after {
  width: 200px;
  height: 200px;
  bottom: -80px;
  right: -80px;
}

.stat-item-new {
  text-align: center;
  position: relative;
  z-index: 2;
}

.stat-number-new {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.stat-label-new {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- Team Section ---------- */
.team-section-new {
  padding: 100px 8%;
  background: #FFFFFF;
}

.team-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card-new {
  background: #FFFFFF;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease;
  border: 4px solid #2D2D2D;
}

.team-card-new:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.team-image-wrap {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: #F0F0F0;
}

.team-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: grayscale(0%);
}

.team-card-new:hover .team-image-wrap img {
  transform: scale(1.1);
}

.team-info-new {
  background: linear-gradient(135deg, #F4C4A7 0%, #E8B59A 100%);
  padding: 24px 28px;
  text-align: center;
}

.team-info-new h4 {
  font-size: 1.25rem;
  color: #2D2D2D;
  margin-bottom: 6px;
  font-weight: 700;
}

.team-info-new p {
  font-size: 0.95rem;
  color: #5A4A42;
  font-weight: 600;
}

/* ---------- CTA Section for About Page ---------- */
.cta-about {
  padding: 80px 8% 100px;
  background: linear-gradient(180deg, #FFF9F5 0%, #FFFFFF 100%);
}

/* ---------- Responsive Design for About Page ---------- */
@media (max-width: 1024px) {
  .our-story-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .story-image-wrap {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .mission-card,
  .vision-card {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 60vh;
  }
  
  .about-hero h1 {
    font-size: 2.2rem;
  }
  
  .our-story-section {
    padding: 70px 6%;
  }
  
  .story-image-wrap {
    border-width: 5px;
  }
  
  .story-content {
    padding: 0;
  }
  
  .mission-vision-section {
    padding: 70px 6%;
  }
  
  .mission-card,
  .vision-card {
    padding: 40px 28px;
  }
  
  .core-values-section {
    padding: 70px 6%;
  }
  
  .values-grid-new {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .stats-section-new {
    padding: 60px 6%;
  }
  
  .stats-container-new {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px 24px;
    gap: 32px;
  }
  
  .team-section-new {
    padding: 70px 6%;
  }
  
  .team-grid-new {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .cta-about {
    padding: 60px 6% 80px;
  }
}

@media (max-width: 480px) {
  .about-hero {
    min-height: 50vh;
  }
  
  .about-hero h1 {
    font-size: 1.8rem;
  }
  
  .about-hero p {
    font-size: 1rem;
  }
  
  .our-story-section {
    padding: 50px 5%;
  }
  
  .story-badge {
    bottom: 12px;
    right: 12px;
    padding: 10px 20px;
    font-size: 0.95rem;
  }
  
  .story-content h2 {
    font-size: 1.8rem;
  }
  
  .mission-vision-section {
    padding: 50px 5%;
  }
  
  .mission-card,
  .vision-card {
    padding: 32px 24px;
  }
  
  .core-values-section {
    padding: 50px 5%;
  }
  
  .value-card-new {
    padding: 32px 24px;
  }
  
  .stats-container-new {
    grid-template-columns: 1fr;
    padding: 32px 20px;
    gap: 28px;
  }
  
  .stat-number-new {
    font-size: 2.5rem;
  }
  
  .team-section-new {
    padding: 50px 5%;
  }
  
  .team-image-wrap {
    height: 280px;
  }
  
  .team-info-new {
    padding: 20px 20px;
  }
}

/* =========================================================
   GALLERY PAGE - Figma Redesign
========================================================= */

/* ---------- Gallery Hero Section ---------- */
.gallery-hero {
  padding: 180px 8% 100px;
  background: linear-gradient(180deg, #FFF9F5 0%, #FFFFFF 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gallery-hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.gallery-badge {
  display: inline-block;
  background: linear-gradient(135deg, #C8E6F5 0%, #A8D5E2 100%);
  color: #4A5A6A;
  padding: 10px 28px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  box-shadow: 0 4px 14px rgba(200, 230, 245, 0.4);
}

.gallery-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: #2D2D2D;
  line-height: 1.2;
  margin-bottom: 24px;
  font-weight: 700;
}

.highlight-enfance {
  color: #7A5C52;
  font-weight: 800;
}

.gallery-hero p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #6B6B6B;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 40px;
}

.hero-decorative-icons {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-decorative-icons i {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #FFFFFF;
  animation: floatIcon 3s ease-in-out infinite;
}

.hero-decorative-icons .icon-1 {
  background: linear-gradient(135deg, #FFD8B8 0%, #FFC89E 100%);
  animation-delay: 0s;
}

.hero-decorative-icons .icon-2 {
  background: linear-gradient(135deg, #F5E9B8 0%, #E8DC9E 100%);
  animation-delay: 0.5s;
}

.hero-decorative-icons .icon-3 {
  background: linear-gradient(135deg, #C8E6F5 0%, #A8D5E2 100%);
  animation-delay: 1s;
}

.hero-decorative-icons .icon-4 {
  background: linear-gradient(135deg, #E8D5F0 0%, #D0B8E8 100%);
  animation-delay: 1.5s;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- Gallery Section ---------- */
.gallery-section-new {
  padding: 80px 8% 100px;
  background: #FFFFFF;
}

.gallery-filters-new {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.filter-btn-new {
  background: #FFFFFF;
  border: 2px solid #E8E8E8;
  color: #6B6B6B;
  padding: 12px 32px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.filter-btn-new:hover {
  background: #F9F9F9;
  border-color: #D0D0D0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.filter-btn-new.active {
  background: linear-gradient(135deg, #7A5C52 0%, #6A4C42 100%);
  color: #FFFFFF;
  border-color: #7A5C52;
  box-shadow: 0 4px 16px rgba(122, 92, 82, 0.3);
}

/* ---------- Gallery Grid ---------- */
.gallery-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item-new {
  position: relative;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item-new.hide {
  display: none;
}

.gallery-image-wrap {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  background: #F0F0F0;
}

.gallery-image-wrap:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.gallery-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-image-wrap:hover img {
  transform: scale(1.1);
}

.gallery-overlay-new {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(122, 92, 82, 0.85) 0%, rgba(122, 92, 82, 0.3) 50%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-image-wrap:hover .gallery-overlay-new {
  opacity: 1;
}

.gallery-overlay-new i {
  font-size: 2.5rem;
  color: #FFFFFF;
  transform: scale(0.8);
  transition: transform 0.4s ease;
}

.gallery-image-wrap:hover .gallery-overlay-new i {
  transform: scale(1);
}

/* ---------- Load More Button ---------- */
.load-more-wrap {
  text-align: center;
  margin-top: 60px;
}

.btn-load-more {
  background: transparent;
  color: #7A5C52;
  border: 2px solid #7A5C52;
  padding: 16px 40px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-load-more:hover {
  background: #7A5C52;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(122, 92, 82, 0.3);
}

.btn-load-more i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-load-more:hover i {
  transform: translateY(3px);
}

/* ---------- CTA Section for Gallery Page ---------- */
.cta-gallery {
  padding: 80px 8%;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF9F5 100%);
}

/* ---------- Responsive Design for Gallery Page ---------- */
@media (max-width: 1024px) {
  .gallery-grid-new {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .gallery-hero {
    padding: 140px 6% 70px;
  }
  
  .gallery-badge {
    font-size: 0.75rem;
    padding: 8px 20px;
  }
  
  .gallery-hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-decorative-icons {
    gap: 16px;
  }
  
  .hero-decorative-icons i {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .gallery-section-new {
    padding: 60px 6% 80px;
  }
  
  .gallery-filters-new {
    gap: 8px;
    margin-bottom: 40px;
  }
  
  .filter-btn-new {
    padding: 10px 24px;
    font-size: 0.95rem;
  }
  
  .gallery-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .gallery-image-wrap {
    border-radius: 24px;
  }
  
  .load-more-wrap {
    margin-top: 50px;
  }
  
  .cta-gallery {
    padding: 60px 6%;
  }
}

@media (max-width: 480px) {
  .gallery-hero {
    padding: 120px 5% 60px;
  }
  
  .gallery-hero h1 {
    font-size: 2rem;
  }
  
  .hero-decorative-icons {
    gap: 12px;
  }
  
  .hero-decorative-icons i {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .gallery-section-new {
    padding: 50px 5% 70px;
  }
  
  .gallery-filters-new {
    flex-direction: column;
    align-items: stretch;
  }
  
  .filter-btn-new {
    width: 100%;
    padding: 12px 20px;
  }
  
  .gallery-grid-new {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .gallery-overlay-new i {
    font-size: 2rem;
  }
  
  .btn-load-more {
    width: 100%;
    padding: 14px 32px;
  }
}

/* =========================================================
   ADMISSIONS PAGE - Figma Redesign
========================================================= */

/* ---------- Admissions Hero Section ---------- */
.admissions-hero {
  padding: 140px 8% 0;
  background: linear-gradient(135deg, #C8E6F5 0%, #E8F5FA 100%);
  position: relative;
  overflow: hidden;
}

.admissions-hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding-bottom: 100px;
}

.admissions-badge {
  display: inline-block;
  background: linear-gradient(135deg, #FFE66D 0%, #FFD93D 100%);
  color: #5A4A42;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: 0 4px 14px rgba(255, 230, 109, 0.4);
}

.admissions-hero-left h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #2D2D2D;
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.admissions-hero-left p {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: #4A5A6A;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 540px;
}

.admissions-hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-new-white-outline {
  background: transparent;
  color: #4A5A6A;
  border: 2px solid #4A5A6A;
}

.btn-new-white-outline:hover {
  background: #FFFFFF;
  color: #7A5C52;
  border-color: #7A5C52;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 90, 106, 0.2);
}

.admissions-hero-image {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  background: #FFFFFF;
  padding: 40px;
}

.admissions-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

.admissions-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
}

.admissions-wave svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- Admission Process Section ---------- */
.admission-process-section {
  padding: 100px 8%;
  background: linear-gradient(180deg, #FFF9F5 0%, #FFFFFF 100%);
}

.admission-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
}

.admission-step-card {
  background: #FFFFFF;
  border-radius: 32px;
  padding: 50px 32px 40px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  border: 3px solid transparent;
}

.admission-step-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
  border-color: #F4C4A7;
}

.step-number-badge {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 1.6rem;
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.step-color-1 {
  background: linear-gradient(135deg, #FFD8B8 0%, #FFC89E 100%);
}

.step-color-2 {
  background: linear-gradient(135deg, #C8E6F5 0%, #A8D5E2 100%);
}

.step-color-3 {
  background: linear-gradient(135deg, #F5E9B8 0%, #E8DC9E 100%);
}

.step-color-4 {
  background: linear-gradient(135deg, #F4C4A7 0%, #E8B59A 100%);
}

.step-icon-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFF9F5 0%, #FFF4E6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  color: #7A5C52;
  transition: all 0.4s ease;
}

.admission-step-card:hover .step-icon-box {
  transform: scale(1.15) rotate(10deg);
}

.admission-step-card h3 {
  font-size: 1.4rem;
  color: #2D2D2D;
  margin-bottom: 14px;
  font-weight: 700;
}

.admission-step-card p {
  font-size: 0.98rem;
  color: #6B6B6B;
  line-height: 1.7;
}

/* ---------- Admission Form Download Section ---------- */
.admission-form-section {
  padding: 100px 8%;
  background: #FFFFFF;
}

.admission-form-container {
  background: linear-gradient(135deg, #FFF4E6 0%, #FFE8D6 100%);
  border-radius: 48px;
  padding: 80px 60px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(244, 196, 167, 0.3);
}

.admission-form-container::before,
.admission-form-container::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.admission-form-container::before {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -100px;
}

.admission-form-container::after {
  width: 200px;
  height: 200px;
  bottom: -80px;
  left: -80px;
}

.form-icon-float {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F4C4A7 0%, #E8B59A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #FFFFFF;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(244, 196, 167, 0.4);
  position: relative;
  z-index: 2;
  animation: floatIcon 3s ease-in-out infinite;
}

.admission-form-container h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #5A4A42;
  margin-bottom: 18px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.admission-form-container p {
  font-size: 1.05rem;
  color: #5A4A42;
  margin-bottom: 36px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
  position: relative;
  z-index: 2;
  line-height: 1.7;
}

.btn-download {
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
}

.btn-download i {
  margin-right: 8px;
}

.form-trust-indicators {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.form-trust-indicators span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #7A5C52;
  font-weight: 600;
}

.form-trust-indicators i {
  color: #4ECDC4;
  font-size: 1.1rem;
}

/* ---------- FAQ Section ---------- */
.faq-section-new {
  padding: 100px 8%;
  background: linear-gradient(180deg, #FFF9F5 0%, #FFFFFF 100%);
}

.faq-container-new {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item-new {
  background: #FFFFFF;
  border-radius: 20px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.faq-item-new:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.faq-question-new {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 28px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #2D2D2D;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.faq-question-new:hover {
  color: #7A5C52;
}

.faq-question-new i {
  color: #7A5C52;
  font-size: 1rem;
  transition: transform 0.3s ease;
  min-width: 20px;
}

.faq-item-new.open .faq-question-new i {
  transform: rotate(180deg);
}

.faq-answer-new {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
}

.faq-item-new.open .faq-answer-new {
  max-height: 500px;
  padding: 0 28px 24px;
}

.faq-answer-new p {
  font-size: 1rem;
  color: #6B6B6B;
  line-height: 1.8;
  margin: 0;
}

/* ---------- CTA Section for Admissions Page ---------- */
.cta-admissions {
  padding: 80px 8% 100px;
  background: #FFFFFF;
}

/* ---------- Responsive Design for Admissions Page ---------- */
@media (max-width: 1024px) {
  .admissions-hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .admissions-hero-left p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .admissions-hero-btns {
    justify-content: center;
  }
  
  .admissions-hero-image {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .admission-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 30px;
  }
}

@media (max-width: 768px) {
  .admissions-hero {
    padding: 120px 6% 0;
  }
  
  .admissions-hero-container {
    padding-bottom: 80px;
  }
  
  .admissions-badge {
    font-size: 0.8rem;
    padding: 8px 20px;
  }
  
  .admissions-hero-left h1 {
    font-size: 2.2rem;
  }
  
  .admission-process-section {
    padding: 70px 6%;
  }
  
  .admission-steps-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .admission-form-section {
    padding: 70px 6%;
  }
  
  .admission-form-container {
    padding: 50px 32px;
    border-radius: 32px;
  }
  
  .form-trust-indicators {
    gap: 20px;
  }
  
  .faq-section-new {
    padding: 70px 6%;
  }
  
  .faq-question-new {
    padding: 20px 24px;
    font-size: 1rem;
  }
  
  .faq-answer-new p {
    font-size: 0.95rem;
  }
  
  .faq-item-new.open .faq-answer-new {
    padding: 0 24px 20px;
  }
  
  .cta-admissions {
    padding: 60px 6% 80px;
  }
}

@media (max-width: 480px) {
  .admissions-hero {
    padding: 100px 5% 0;
  }
  
  .admissions-hero-container {
    padding-bottom: 60px;
  }
  
  .admissions-hero-left h1 {
    font-size: 1.9rem;
  }
  
  .admissions-hero-btns {
    flex-direction: column;
    width: 100%;
  }
  
  .admissions-hero-btns .btn-new {
    width: 100%;
    justify-content: center;
  }
  
  .admissions-hero-image {
    padding: 24px;
  }
  
  .admission-process-section {
    padding: 50px 5%;
  }
  
  .admission-step-card {
    padding: 45px 24px 32px;
  }
  
  .step-number-badge {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }
  
  .step-icon-box {
    width: 70px;
    height: 70px;
    font-size: 1.7rem;
  }
  
  .admission-form-section {
    padding: 50px 5%;
  }
  
  .admission-form-container {
    padding: 40px 24px;
  }
  
  .form-trust-indicators {
    flex-direction: column;
    gap: 12px;
  }
  
  .faq-section-new {
    padding: 50px 5%;
  }
  
  .faq-question-new {
    padding: 18px 20px;
    font-size: 0.95rem;
  }
  
  .faq-answer-new {
    padding: 0 20px;
  }
  
  .faq-item-new.open .faq-answer-new {
    padding: 0 20px 18px;
  }
  
  .cta-admissions {
    padding: 50px 5% 70px;
  }
}
