:root {
      --yellow: #FFD54A;
      --orange: #FF8A2B;
      --orange-dark: #E96A00;
      --blue: #2E86DE;
      --red: #F04E4E;
      --cream: #FFF9EE;
      --white: #FFFFFF;
      --text: #2B2B2B;
      --muted: #5F6773;
      --border: #F4DDA9;
      --shadow: 0 18px 40px rgba(28, 40, 64, 0.12);
      --radius-xl: 30px;
      --radius-lg: 22px;
      --radius-md: 16px;
      --container: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: 'Nunito', sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(255, 213, 74, 0.22), transparent 25%),
        radial-gradient(circle at top right, rgba(46, 134, 222, 0.14), transparent 20%),
        linear-gradient(180deg, #fffdf7 0%, #fff7e7 100%);
    }

    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }

    .container {
      width: min(calc(100% - 32px), var(--container));
      margin: 0 auto;
    }

    .topbar {
      background: linear-gradient(90deg, var(--orange) 0%, var(--yellow) 100%);
      color: #7a3b00;
      font-weight: 800;
      text-align: center;
      padding: 10px 16px;
      font-size: 0.95rem;
    }

    .navbar {
      position: sticky;
      top: 0;
      z-index: 30;
      backdrop-filter: blur(14px);
      background: rgba(255, 249, 238, 0.88);
      border-bottom: 1px solid rgba(233, 106, 0, 0.12);
    }

    .nav-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      min-height: 82px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .brand h1 {
      margin: 0;
      font-family: 'Baloo 2', cursive;
      font-size: 1.55rem;
      line-height: 1;
      color: #d86500;
    }

    .brand p {
      margin: 2px 0 0;
      color: var(--muted);
      font-size: 0.92rem;
      font-weight: 700;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
      font-weight: 800;
      color: #5a4a38;
    }

    .nav-links a:hover { color: var(--orange-dark); }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 22px;
      border-radius: 999px;
      background: var(--blue);
      color: white;
      font-weight: 800;
      box-shadow: 0 12px 24px rgba(46, 134, 222, 0.22);
    }

    .hero {
      padding: 42px 0 26px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 30px;
      align-items: center;
    }

    .hero-image {
        border-radius: 16px;
    }

    .hero-copy {
      position: relative;
      background: rgba(255,255,255,0.78);
      border: 1px solid rgba(255, 138, 43, 0.12);
      border-radius: 34px;
      padding: 34px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .hero-copy::before,
    .hero-copy::after {
      content: "";
      position: absolute;
      border-radius: 999px;
      opacity: 0.16;
    }

    .hero-copy::before {
      width: 180px;
      height: 180px;
      background: var(--yellow);
      right: -60px;
      top: -60px;
    }

    .hero-copy::after {
      width: 130px;
      height: 130px;
      background: var(--blue);
      left: -35px;
      bottom: -35px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 16px;
      border-radius: 999px;
      background: #fff1cf;
      color: #a55a00;
      font-size: 0.9rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .hero h2,
    .section-title h2,
    .cta-box h2 {
      margin: 18px 0 14px;
      font-family: 'Baloo 2', cursive;
      line-height: 0.98;
      letter-spacing: -0.02em;
    }

    .hero h2 {
      font-size: clamp(2.5rem, 5vw, 4.4rem);
      color: #d46000;
      max-width: 760px;
    }

    .hero p {
      margin: 0;
      color: var(--muted);
      font-size: 1.1rem;
      line-height: 1.7;
      max-width: 650px;
      position: relative;
      z-index: 1;
    }

    .hero-actions {
      margin-top: 26px;
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 56px;
      padding: 14px 24px;
      border-radius: 999px;
      font-weight: 900;
      transition: 0.25s ease;
      border: 0;
      cursor: pointer;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--orange), var(--orange-dark));
      color: white;
      box-shadow: 0 14px 28px rgba(233, 106, 0, 0.26);
    }

    .btn-primary:hover { transform: translateY(-2px); }

    .btn-secondary {
      background: white;
      color: var(--blue);
      border: 2px solid rgba(46, 134, 222, 0.18);
    }

    .hero-points {
      margin-top: 24px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      position: relative;
      z-index: 1;
    }

    .hero-point {
      background: #fff8ea;
      border: 1px solid rgba(240, 78, 78, 0.08);
      border-radius: 18px;
      padding: 16px;
    }

    .hero-point strong {
      display: block;
      color: #a54e00;
      margin-bottom: 6px;
      font-size: 1rem;
    }

    .hero-point span {
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.45;
    }

    .hero-card {
      background: white;
      border-radius: 34px;
      padding: 24px;
      box-shadow: var(--shadow);
      position: relative;
      min-height: 560px;
      overflow: hidden;
      border: 1px solid rgba(255, 138, 43, 0.12);
    }

    .hero-visual {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 20%, rgba(255, 213, 74, 0.9), transparent 26%),
        radial-gradient(circle at 84% 24%, rgba(46, 134, 222, 0.22), transparent 20%),
        radial-gradient(circle at 80% 78%, rgba(240, 78, 78, 0.18), transparent 18%),
        linear-gradient(180deg, #fff7e1 0%, #fff 100%);
    }

    .scene {
      position: relative;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 24px;
    }

    .cloud, .cloud-two, .sun, .kite, .bubble, .kid, .kid-two, .kid-three, .grass {
      position: absolute;
    }

    .sun {
      width: 88px;
      height: 88px;
      background: var(--yellow);
      border-radius: 50%;
      top: 36px;
      right: 42px;
      box-shadow: 0 0 0 12px rgba(255, 213, 74, 0.22);
    }

    .cloud, .cloud-two {
      width: 110px;
      height: 42px;
      background: white;
      border-radius: 999px;
      box-shadow: 26px 6px 0 6px white, 56px -6px 0 0 white;
    }

    .cloud { top: 50px; left: 38px; }
    .cloud-two { top: 124px; left: 110px; transform: scale(0.72); }

    .kite {
      width: 62px;
      height: 62px;
      background: linear-gradient(135deg, var(--red), var(--orange));
      transform: rotate(45deg);
      top: 118px;
      right: 140px;
      border-radius: 8px;
    }

    .kite::after {
      content: "";
      position: absolute;
      width: 2px;
      height: 120px;
      background: rgba(90, 90, 90, 0.45);
      top: 50px;
      left: 30px;
      transform: rotate(-45deg);
    }

    .bubble {
      top: 22px;
      left: 22px;
      right: 22px;
      background: rgba(255,255,255,0.92);
      border: 1px dashed rgba(46, 134, 222, 0.25);
      border-radius: 22px;
      padding: 16px 18px;
      color: #54606d;
      font-weight: 700;
      line-height: 1.5;
    }

    .bubble strong {
      color: var(--blue);
      display: block;
      margin-bottom: 4px;
      font-size: 1.02rem;
    }

    .kid, .kid-two, .kid-three {
      bottom: 88px;
      width: 110px;
      height: 180px;
      border-radius: 40px 40px 28px 28px;
      background: white;
    }

    .kid::before, .kid-two::before, .kid-three::before {
      content: "";
      position: absolute;
      width: 78px;
      height: 78px;
      border-radius: 50%;
      background: #ffd8b1;
      top: -48px;
      left: 16px;
    }

    .kid::after, .kid-two::after, .kid-three::after {
      content: "";
      position: absolute;
      width: 46px;
      height: 18px;
      border-radius: 999px;
      background: #4a2b14;
      top: -42px;
      left: 22px;
    }

    .kid { left: 70px; background: var(--red); }
    .kid-two { left: 200px; height: 170px; background: var(--blue); }
    .kid-three { left: 330px; width: 118px; background: var(--yellow); }

    .grass {
      left: 0;
      right: 0;
      bottom: 0;
      height: 120px;
      background: linear-gradient(180deg, #85d477 0%, #58bf63 100%);
      border-radius: 50px 50px 0 0;
    }

    .mini-card {
      position: absolute;
      right: 24px;
      bottom: 26px;
      background: white;
      padding: 18px;
      border-radius: 22px;
      box-shadow: 0 14px 30px rgba(42, 61, 92, 0.18);
      width: 220px;
    }

    .mini-card span {
      display: block;
      color: var(--muted);
      font-weight: 700;
      font-size: 0.92rem;
      margin-bottom: 4px;
    }

    .mini-card strong {
      display: block;
      color: #d25d00;
      font-size: 1.08rem;
      line-height: 1.35;
    }

    .section {
      padding: 34px 0;
    }

    .section-title {
      max-width: 100%;
      margin-bottom: 22px;
    }

    .section-title h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      color: #d46000;
      margin-bottom: 10px;
    }

    .section-title p {
      margin: 0;
      color: var(--muted);
      font-size: 1.08rem;
      line-height: 1.7;
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .card {
      background: white;
      border-radius: 24px;
      padding: 24px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(255, 138, 43, 0.1);
    }

    .icon {
      width: 56px;
      height: 56px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      margin-bottom: 16px;
      font-size: 1.4rem;
      font-weight: 900;
      color: white;
    }

    .icon.orange { background: linear-gradient(135deg, var(--orange), #ffb042); }
    .icon.blue { background: linear-gradient(135deg, var(--blue), #5aa8f2); }
    .icon.red { background: linear-gradient(135deg, var(--red), #ff7c7c); }
    .icon.yellow { background: linear-gradient(135deg, #f8c91d, #ffd95d); color: #8c5200; }

    .card h3 {
      margin: 0 0 8px;
      font-family: 'Baloo 2', cursive;
      color: #404040;
      font-size: 1.5rem;
    }

    .card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
      font-size: 1rem;
    }

    .highlight-band {
      padding: 16px 18px;
      border-radius: 22px;
      background: linear-gradient(135deg, var(--blue), #55a1ec);
      color: white;
      font-weight: 800;
      font-size: 1.08rem;
      text-align: center;
      box-shadow: var(--shadow);
    }

    .about-grid {
      max-width: 80%;
      gap: 22px;
      align-items: stretch;
    }

    .contact-grid,
    .cta-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
      align-items: stretch;
    }

    .cta-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 22px;
      align-items: stretch;
    }

    .about-box,
    .contact-card,
    .cta-box,
    .faq-box {
      background: white;
      border-radius: 28px;
      padding: 28px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(255, 138, 43, 0.1);
    }

    .about-box p,
    .contact-card p,
    .cta-box p {
      color: var(--muted);
      line-height: 1.72;
      margin: 0;
      font-size: 1rem;
    }

    .stats {
      margin-top: 18px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    .stat {
      background: #fff7e8;
      border-radius: 18px;
      padding: 18px;
      text-align: center;
    }

    .stat strong {
      display: block;
      font-size: 1.8rem;
      color: var(--orange-dark);
      font-family: 'Baloo 2', cursive;
      line-height: 1;
    }

    .stat span {
      display: block;
      color: var(--muted);
      font-weight: 800;
      margin-top: 6px;
      font-size: 0.94rem;
      line-height: 1.4;
    }

    .programs-grid,
    .gallery-grid,
    .testimonials-grid,
    .faq-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .program-card,
    .gallery-card,
    .testimonial,
    .faq-item {
      background: white;
      border-radius: 26px;
      padding: 22px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(255, 138, 43, 0.1);
    }

    .tag {
      display: inline-flex;
      padding: 8px 14px;
      border-radius: 999px;
      background: #fff2d0;
      color: #b46600;
      font-weight: 900;
      font-size: 0.84rem;
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .program-card h3,
    .cta-box h2 {
      font-family: 'Baloo 2', cursive;
      margin: 0 0 10px;
      color: #404040;
    }

    .program-card p,
    .testimonial p,
    .faq-item p,
    .gallery-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
    }

    .program-list {
      margin: 16px 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .program-list li {
      position: relative;
      padding-left: 22px;
      color: #4d5765;
      font-weight: 700;
      line-height: 1.45;
    }

    .program-list li::before {
      content: "";
      position: absolute;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--blue);
      left: 0;
      top: 7px;
    }

    .gallery-card {
      min-height: 210px;
      overflow: hidden;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .gallery-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0.95;
    }

    .gallery-card.one::before {
      background-image: linear-gradient(160deg, rgba(255, 213, 74, 0.72), rgba(255, 138, 43, 0.58));
    }

    .gallery-card.two::before {
      background-image: linear-gradient(160deg, rgba(46, 134, 222, 0.74), rgba(117, 193, 255, 0.5));
    }

    .gallery-card.three::before {
      background-image: linear-gradient(160deg, rgba(240, 78, 78, 0.72), rgba(255, 174, 174, 0.42));
    }

    .gallery-card.four::before {
      background-image: linear-gradient(160deg, rgba(255, 213, 74, 0.78), rgba(94, 181, 101, 0.45));
    }

    .gallery-card.five::before {
      background-image: linear-gradient(160deg, rgba(46, 134, 222, 0.82), rgba(255, 213, 74, 0.38));
    }

    .gallery-card.six::before {
      background-image: linear-gradient(160deg, rgba(255, 138, 43, 0.84), rgba(240, 78, 78, 0.45));
    }

    .gallery-card > * { position: relative; z-index: 1; }

    .gallery-card strong {
      display: block;
      color: white;
      font-family: 'Baloo 2', cursive;
      font-size: 1.5rem;
      margin-bottom: 6px;
    }

    .gallery-card p { color: rgba(255,255,255,0.96); }

    .testimonial {
      position: relative;
      padding-top: 28px;
    }

    .testimonial::before {
      content: "“";
      position: absolute;
      top: 8px;
      left: 18px;
      font-size: 3rem;
      line-height: 1;
      color: rgba(255, 138, 43, 0.22);
      font-family: Georgia, serif;
    }

    .testimonial strong {
      display: block;
      margin-top: 16px;
      color: #384252;
      font-size: 1rem;
    }

    .faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .faq-item h3 {
      margin: 0 0 10px;
      font-size: 1.08rem;
      color: #3d4757;
    }

    .cta-box {
      background: linear-gradient(135deg, #fff4d9 0%, #fff 100%);
    }

    .cta-box h2 {
      font-size: clamp(2rem, 3vw, 2.8rem);
      color: #d46000;
    }

    .contact-list {
      display: grid;
      gap: 16px;
      margin-top: 18px;
    }

    .contact-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      background: #fff9ef;
      border-radius: 18px;
      padding: 16px;
    }

    .contact-item b {
      display: block;
      color: #384252;
      margin-bottom: 4px;
    }

    .contact-item span,
    .contact-item a {
      color: var(--muted);
      font-weight: 700;
      line-height: 1.5;
    }

    form {
      display: grid;
      gap: 14px;
      margin-top: 18px;
    }

    input, textarea, select {
      width: 100%;
      border: 1.5px solid #eadfbf;
      border-radius: 16px;
      padding: 16px 18px;
      font: inherit;
      color: var(--text);
      background: #fffdf8;
      outline: none;
    }

    textarea {
      min-height: 130px;
      resize: vertical;
    }

    input:focus, textarea:focus, select:focus {
      border-color: rgba(46, 134, 222, 0.5);
      box-shadow: 0 0 0 4px rgba(46, 134, 222, 0.08);
    }

    .footer-box {
        background: #2e3a4f;
        color: rgba(255, 255, 255, 0.9);
        padding: 32px;
        display: grid;
        grid-template-columns: 1.2fr 0.8fr 1fr;
        gap: 32px;
        align-items: start;
    }

    .footer-box strong {
        display: block;
        font-family: 'Baloo 2', cursive;
        font-size: 1.6rem;
        color: white;
        margin-bottom: 8px;
    }

    .footer-box p {
        margin: 0;
        line-height: 1.65;
    }

    .footer-brand p {
        max-width: 420px;
        color: rgba(255, 255, 255, 0.78);
    }

    .footer-links,
    .footer-contact {
        display: grid;
        gap: 10px;
    }

    .footer-links h4,
    .footer-contact h4 {
        margin: 0 0 8px;
        color: white;
        font-size: 1.05rem;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.82);
        font-weight: 700;
        transition: 0.2s ease;
    }

    .footer-links a:hover,
    .footer-contact a:hover {
        color: var(--yellow);
    }

    .footer-contact-item {
        display: grid;
        gap: 4px;
        margin-bottom: 6px;
    }

    .footer-contact-item span {
        color: var(--yellow);
        font-size: 0.88rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    .footer-contact a,
    .footer-contact p {
        color: rgba(255, 255, 255, 0.82);
        font-weight: 700;
        line-height: 1.55;
    }

    .footer-socials {
        display: flex;
        gap: 12px;
        margin-top: 18px;
    }

    .footer-socials a {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        color: white;
        font-size: 1.2rem;
        transition: 0.2s ease;
        }

        .footer-socials a:hover {
        background: var(--orange);
        transform: translateY(-2px);
    }

    .whatsapp-float {
        position: fixed;
        right: 20px;
        bottom: 20px;
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: #25d366;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
        z-index: 9999;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

    .whatsapp-float:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45);
    }

@media (max-width: 768px) {
  .whatsapp-float {
    width: 58px;
    height: 58px;
    right: 16px;
    bottom: 16px;
    font-size: 1.8rem;
  }
}

    @media (max-width: 1080px) {

      .about-grid {
        max-width: 100%;
      }

      .hero-grid,
      .about-grid,
      .contact-grid,
      .cta-grid,
      .cards-grid,
      .programs-grid,
      .gallery-grid,
      .testimonials-grid,
      .faq-grid {
        grid-template-columns: 1fr 1fr;
      }

      .hero-grid,
      .about-grid,
      .contact-grid,
      .cta-grid { grid-template-columns: 1fr; }

      .hero-card { min-height: 500px; }
    }

    @media (max-width: 820px) {
      .nav-wrap {
        flex-wrap: wrap;
        justify-content: center;
        padding: 14px 0;
      }

      .nav-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px;
      }

      .hero-copy,
      .hero-card,
      .about-box,
      .contact-card,
      .cta-box,
      .faq-box,
      .card,
      .program-card,
      .gallery-card,
      .testimonial,
      .faq-item {
        border-radius: 22px;
      }

      .hero-points,
      .stats,
      .cards-grid,
      .programs-grid,
      .gallery-grid,
      .testimonials-grid,
      .faq-grid {
        grid-template-columns: 1fr;
      }

      .hero h2 { font-size: 2.5rem; }
      .section-title h2,
      .cta-box h2 { font-size: 2.1rem; }

      .kid { left: 34px; }
      .kid-two { left: 146px; }
      .kid-three { left: 260px; }
      .mini-card { width: 190px; right: 16px; }
    }

    @media (max-width: 768px) {
        .about-grid {
            max-width: 100%;
         }

        .whatsapp-float {
            width: 58px;
            height: 58px;
            right: 16px;
            bottom: 16px;
            font-size: 1.8rem;
    }

        .footer-box {
            grid-template-columns: 1fr;
            gap: 28px;
            padding: 28px 20px;
            text-align: left;
    }

        .footer-brand p {
            max-width: 100%;
        }

        .footer-links,
        .footer-contact {
            gap: 8px;
        }

        .footer-links h4,
        .footer-contact h4 {
            margin-bottom: 10px;
            font-size: 1rem;
        }

        .footer-links a,
        .footer-contact a,
        .footer-contact p {
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .footer-contact-item {
            margin-bottom: 10px;
        }

        .footer-socials {
            margin-top: 14px;
            flex-wrap: wrap;
        }

        .footer-socials a {
            width: 40px;
            height: 40px;
            font-size: 0.95rem;
        }
    }

    @media (max-width: 560px) {
      .topbar { font-size: 0.84rem; }
      .container { width: min(calc(100% - 20px), var(--container)); }
      .hero { padding-top: 22px; }
      .hero-copy { padding: 24px 20px; }
      .hero-card { min-height: 420px; padding: 18px; }
      .brand h1 { font-size: 1.25rem; }
      .btn { width: 100%; }
      .bubble { font-size: 0.92rem; }
      .kid, .kid-two, .kid-three { transform: scale(0.78); transform-origin: bottom left; }
      .kid { left: 10px; }
      .kid-two { left: 84px; }
      .kid-three { left: 170px; }
      .sun { width: 66px; height: 66px; right: 18px; }
      .mini-card { position: relative; right: auto; bottom: auto; width: 100%; margin-top: auto; }
      .footer-box { padding: 22px; }
    }