/* =====================================================
   NESTIO PRESCHOOL — style.css
   Premium SPA Stylesheet
   ===================================================== */

/* ---- CSS Variables ---- */
:root {
  --green-primary: #128c7e;
  --green-dark: #0b5d56;
  --green-mid: #0e7267;
  --green-light: #d4f1ed;
  --green-xlight: #edf9f7;
  --orange: #f28c28;
  --orange-light: #fde8cf;
  --bg: #f4fbfa;
  --white: #ffffff;
  --text-dark: #1a2e2b;
  --text-mid: #3d5a56;
  --text-light: #7a9e9a;
  --shadow-sm: 0 4px 16px rgba(18, 140, 126, 0.08);
  --shadow-md: 0 8px 32px rgba(18, 140, 126, 0.14);
  --shadow-lg: 0 20px 60px rgba(18, 140, 126, 0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Nunito", sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.7;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ---- Typography ---- */
h1,
h2,
h3,
h4 {
  font-family: "Fredoka", sans-serif;
  line-height: 1.2;
}

/* ---- Utility ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 100px 0;
  position: relative;
}
.section-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green-dark);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 540px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.accent {
  color: var(--orange);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  font-family: "Nunito", sans-serif;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(242, 140, 40, 0.35);
}
.btn-primary:hover {
  background: #d97c22;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 36px rgba(242, 140, 40, 0.45);
}
.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-primary);
}
.btn-outline:hover {
  background: var(--green-primary);
  color: var(--white);
  transform: translateY(-3px);
}
.btn-white {
  background: var(--white);
  color: var(--green-dark);
  font-weight: 800;
}
.btn-white:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

/* ---- Glassmorphism Card ---- */
.glass-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(18, 140, 126, 0.12);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
}

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(18, 140, 126, 0.12);
  padding: 12px 0;
}
.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Fredoka", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-dark);
  flex-shrink: 0;
}
.logo-img {
  height: 38px;
  width: auto;
  border-radius: 12px;
  object-fit: cover;
}
.logo-icon {
  font-size: 1.4rem;
  animation: wobble 3s ease-in-out infinite;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-mid);
  position: relative;
  transition: var(--transition);
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green-primary);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-link:hover,
.nav-link.active {
  color: var(--green-dark);
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}
.nav-cta {
  background: var(--orange);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(242, 140, 40, 0.3);
}
.nav-cta:hover {
  background: #d97c22;
  transform: translateY(-2px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 140px 60px 80px;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

/* Blobs */
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
  animation: floatBlob 8s ease-in-out infinite;
}
.blob-1 {
  width: 500px;
  height: 500px;
  background: var(--green-light);
  top: -100px;
  left: -150px;
  animation-delay: 0s;
}
.blob-2 {
  width: 350px;
  height: 350px;
  background: var(--orange-light);
  top: 100px;
  right: -80px;
  animation-delay: 2s;
}
.blob-3 {
  width: 280px;
  height: 280px;
  background: var(--green-xlight);
  bottom: 100px;
  left: 30%;
  animation-delay: 4s;
}
.blob-4 {
  width: 200px;
  height: 200px;
  background: rgba(242, 140, 40, 0.12);
  bottom: 50px;
  right: 100px;
  animation-delay: 1s;
}
.dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: floatDot 6s ease-in-out infinite;
}
.dot-1 {
  width: 16px;
  height: 16px;
  background: var(--orange);
  opacity: 0.5;
  top: 28%;
  left: 8%;
  animation-delay: 0s;
}
.dot-2 {
  width: 10px;
  height: 10px;
  background: var(--green-primary);
  opacity: 0.4;
  top: 60%;
  right: 12%;
  animation-delay: 1.5s;
}
.dot-3 {
  width: 20px;
  height: 20px;
  background: var(--orange);
  opacity: 0.3;
  bottom: 20%;
  left: 52%;
  animation-delay: 3s;
}

.hero-content {
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  border: 1px solid rgba(242, 140, 40, 0.2);
}
.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: var(--green-dark);
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero-highlight {
  color: var(--orange);
  display: inline-block;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-bottom: 36px;
  max-width: 440px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: "Fredoka", sans-serif;
  font-size: 1.8rem;
  color: var(--green-dark);
  font-weight: 700;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 600;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--green-light);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 1;
}
.hero-img-wrapper {
  position: relative;
}
.hero-img-bg {
  position: absolute;
  inset: 20px -20px -20px 20px;
  background: linear-gradient(135deg, var(--green-light), var(--green-xlight));
  border-radius: var(--radius-lg);
  z-index: 0;
}
.hero-img-card {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.img-placeholder {
  background: linear-gradient(135deg, var(--green-xlight) 0%, #c0ebe4 100%);
  border-radius: var(--radius-lg);
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(18, 140, 126, 0.12);
}
.placeholder-content {
  text-align: center;
  color: var(--green-dark);
}
.placeholder-emoji {
  font-size: 4rem;
  margin-bottom: 12px;
}
.placeholder-content p {
  font-weight: 600;
  color: var(--text-mid);
}

/* Float cards */
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-dark);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--green-light);
  white-space: nowrap;
  animation: floatCard 4s ease-in-out infinite;
}
.float-card-1 {
  top: 30px;
  right: -30px;
  animation-delay: 0s;
}
.float-card-2 {
  bottom: 80px;
  right: -40px;
  animation-delay: 1.5s;
}
.float-card-3 {
  bottom: -10px;
  left: 30px;
  animation-delay: 3s;
}

/* =====================================================
   ABOUT
   ===================================================== */
.about {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-shape {
  position: absolute;
  inset: 30px -30px -30px 30px;
  background: linear-gradient(
    135deg,
    var(--green-light),
    rgba(242, 140, 40, 0.1)
  );
  border-radius: var(--radius-lg);
  z-index: 0;
}
.about-img-card {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-placeholder {
  background: linear-gradient(135deg, #d4f1ed 0%, #b8e6df 100%);
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: var(--radius-lg);
}
.ap-emoji {
  font-size: 5rem;
}
.about-placeholder p {
  font-weight: 600;
  color: var(--text-mid);
}
.about-badge-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  z-index: 2;
  border: 1px solid var(--green-light);
}
.ab-icon {
  font-size: 2rem;
}
.about-badge-card strong {
  font-size: 0.9rem;
  color: var(--green-dark);
}
.about-badge-card small {
  font-size: 0.75rem;
  color: var(--text-light);
  display: block;
}

.about-desc {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 1.02rem;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 24px 0 32px;
}
.af-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}
.af-icon {
  font-size: 1rem;
}

/* =====================================================
   PROGRAMS
   ===================================================== */
.programs {
  background: var(--bg);
}
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.program-card {
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
  cursor: pointer;
  overflow: hidden;
}
.program-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-primary), var(--green-light));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: var(--transition);
}
.program-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg);
}
.program-card:hover::before {
  opacity: 1;
}
.featured-card {
  background: linear-gradient(
    160deg,
    rgba(18, 140, 126, 0.08) 0%,
    rgba(255, 255, 255, 0.85) 100%
  ) !important;
  border-color: rgba(18, 140, 126, 0.2) !important;
}
.featured-ribbon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}
.pc-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
}
.pc-age-badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.pc-title {
  font-size: 1.5rem;
  color: var(--green-dark);
  margin-bottom: 12px;
}
.pc-desc {
  color: var(--text-mid);
  font-size: 0.92rem;
  margin-bottom: 20px;
  line-height: 1.7;
}
.pc-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}
.pc-features span {
  font-size: 0.83rem;
  color: var(--text-mid);
  font-weight: 600;
}
.pc-btn {
  color: var(--green-primary);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-block;
}
.pc-btn:hover {
  color: var(--orange);
  letter-spacing: 0.02em;
}

/* =====================================================
   WHY CHOOSE
   ===================================================== */
.why {
  background: var(--white);
  overflow: hidden;
}
.why-bg-shape {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--green-xlight) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--bg);
  border: 1px solid var(--green-light);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.why-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: var(--green-primary);
}
.wc-icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.why-card:hover .wc-icon-wrap {
  background: var(--green-primary);
  transform: rotate(10deg) scale(1.1);
}
.wc-icon {
  font-size: 1.8rem;
}
.why-card h3 {
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* =====================================================
   ACTIVITIES
   ===================================================== */
.activities {
  background: var(--bg);
}
.activities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.activity-card {
  background: var(--white);
  border: 1px solid var(--green-light);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.activity-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--green-primary);
  opacity: 0;
  transition: var(--transition);
  border-radius: var(--radius-md);
}
.activity-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
}
.activity-card:hover::before {
  opacity: 0.04;
}
.activity-card:hover {
  border-color: var(--green-primary);
}
.ac-icon {
  font-size: 2.8rem;
  display: block;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}
.activity-card:hover .ac-icon {
  transform: scale(1.2) rotate(-5deg);
}
.activity-card h3 {
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.activity-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}
.ac-arrow {
  font-size: 1.2rem;
  color: var(--green-primary);
  font-weight: 700;
  display: inline-block;
  transition: var(--transition);
}
.activity-card:hover .ac-arrow {
  transform: translateX(6px);
  color: var(--orange);
}

/* =====================================================
   GALLERY
   ===================================================== */
.gallery {
  background: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gi-large {
  grid-row: span 2;
}
.gi-wide {
  grid-column: span 2;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gi-placeholder {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  transition: transform 0.5s ease;
}
.gi-large .gi-placeholder {
  height: 100%;
  min-height: 460px;
}
.gi-wide .gi-placeholder {
  height: 200px;
}
.gallery-item:hover .gi-placeholder {
  transform: scale(1.06);
}
.gi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 93, 86, 0.75) 0%,
    transparent 60%
  );
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}
.gi-overlay span {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
}
.gallery-item:hover .gi-overlay {
  opacity: 1;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials {
  background: var(--bg);
  overflow: hidden;
  position: relative;
}
.testi-bg-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(18, 140, 126, 0.06) 0%,
    transparent 70%
  );
  bottom: -200px;
  left: -200px;
  pointer-events: none;
}
.testi-wrapper {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.testi-slider {
  position: relative;
}
.testi-card {
  display: none;
  padding: 44px 40px;
  text-align: center;
  animation: fadeInUp 0.5s ease;
}
.testi-card.active {
  display: block;
}
.testi-stars {
  color: #ffb800;
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.testi-text {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.testi-avatar {
  width: 52px;
  height: 52px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.testi-author strong {
  display: block;
  color: var(--green-dark);
  font-size: 0.95rem;
}
.testi-author small {
  color: var(--text-light);
  font-size: 0.8rem;
}
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.dot-btn {
  width: 10px;
  height: 10px;
  background: var(--green-light);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: block;
}
.dot-btn.active {
  background: var(--green-primary);
  transform: scale(1.3);
}
.testi-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.testi-prev,
.testi-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--green-primary);
  background: transparent;
  color: var(--green-primary);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.testi-prev:hover,
.testi-next:hover {
  background: var(--green-primary);
  color: var(--white);
  transform: scale(1.1);
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--green-dark) 0%,
    var(--green-primary) 60%,
    #1aaa9a 100%
  );
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bg-shape {
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: -200px;
  right: -100px;
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 1;
}
.cta-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}
.cta-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  margin: 0 auto 36px;
}
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact {
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.ci-card {
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.ci-icon {
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--green-dark);
  margin-bottom: 4px;
}
.ci-item p,
.ci-item a {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.6;
}
.ci-item a:hover {
  color: var(--green-primary);
}

.cf-form {
  padding: 40px;
}
.cf-title {
  font-size: 1.5rem;
  color: var(--green-dark);
  margin-bottom: 28px;
}
.cf-group {
  margin-bottom: 20px;
}
.cf-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.cf-group input,
.cf-group select,
.cf-group textarea {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid var(--green-light);
  border-radius: var(--radius-sm);
  font-family: "Nunito", sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--bg);
  transition: var(--transition);
  outline: none;
  resize: none;
}
.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
  border-color: var(--green-primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(18, 140, 126, 0.08);
}
.cf-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Fredoka", sans-serif;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 700;
}
.footer-logo-img {
  height: 42px;
  width: auto;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}
.footer-logo-text {
  display: inline-block;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 260px;
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
}
.footer-socials a:hover {
  background: var(--orange);
}
.footer-links h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--orange);
  padding-left: 4px;
}
.footer-contact h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
}
.footer-contact p,
.footer-contact a {
  font-size: 0.88rem;
  margin-bottom: 10px;
  display: block;
  transition: var(--transition);
}
.footer-contact a:hover {
  color: var(--orange);
}
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
}

/* =====================================================
   WHATSAPP
   ===================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: var(--transition);
  animation: pulseWA 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.6);
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes floatBlob {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(20px, -20px) scale(1.05);
  }
  66% {
    transform: translate(-15px, 15px) scale(0.97);
  }
}
@keyframes floatDot {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes wobble {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-8deg);
  }
  75% {
    transform: rotate(8deg);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulseWA {
  0%,
  100% {
    box-shadow:
      0 6px 24px rgba(37, 211, 102, 0.45),
      0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow:
      0 6px 24px rgba(37, 211, 102, 0.45),
      0 0 0 12px rgba(37, 211, 102, 0);
  }
}

/* =====================================================
   SCROLL REVEAL
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Staggered delays for cards */
.programs-grid .reveal:nth-child(2) {
  transition-delay: 0.12s;
}
.programs-grid .reveal:nth-child(3) {
  transition-delay: 0.24s;
}
.why-grid .reveal:nth-child(2) {
  transition-delay: 0.1s;
}
.why-grid .reveal:nth-child(3) {
  transition-delay: 0.2s;
}
.why-grid .reveal:nth-child(4) {
  transition-delay: 0.3s;
}
.activities-grid .reveal:nth-child(2) {
  transition-delay: 0.1s;
}
.activities-grid .reveal:nth-child(3) {
  transition-delay: 0.2s;
}
.activities-grid .reveal:nth-child(4) {
  transition-delay: 0.3s;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .programs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 120px 24px 60px;
    gap: 40px;
  }
  .hero-sub {
    margin: 0 auto 36px;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-visual {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    padding: 24px;
    flex-direction: column;
    gap: 20px;
    border-bottom: 1px solid var(--green-light);
    z-index: 999;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  }
  .nav-links.open {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
  .nav-cta {
    display: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-visual {
    display: none;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gi-large {
    grid-row: span 1;
  }
  .gi-wide {
    grid-column: span 2;
  }
  .gi-large .gi-placeholder {
    min-height: 220px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 64px 0;
  }
  .cta-section {
    padding: 70px 24px;
  }
}

@media (max-width: 480px) {
  .why-grid,
  .activities-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gi-wide {
    grid-column: span 1;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .testi-card {
    padding: 28px 20px;
  }
  .cf-form {
    padding: 24px;
  }
  .ci-card {
    padding: 24px;
  }
}
