*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --blue: #5B9FD4;
    --blue-light: #E8F3FB;
    --blue-dark: #3A7DB5;
    --green: #7DB85C;
    --green-light: #EBF5E2;
    --green-dark: #5A9638;
    --pink: #F28BAD;
    --yellow: #F5C842;
    --purple: #B39BD5;
    --warm-white: #FAFAF7;
    --text: #2D3436;
    --text-muted: #6B7B8A;
    --radius: 18px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Open Sans', sans-serif;
    background: var(--warm-white);
    color: var(--text);
    line-height: 1.6;
  }

  /* NAV */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: #fff;
    border-bottom: 2px solid var(--blue-light);
    padding: 0 2rem;
    display: flex; align-items: center; justify-content: space-between;
    height: 90px;
    transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
  }
  nav.scrolled {
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: rgba(232,243,251,0.6);
    box-shadow: 0 2px 20px rgba(91,159,212,0.1);
  }
  .nav-logo {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--blue);
    display: flex; align-items: center; gap: 8px;
  }
  .nav-logo img { height: 64px; width: auto; display: block;  }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--blue); }
  .nav-cta {
    background: var(--blue);
    color: #fff !important;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 700 !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--blue-dark) !important; color: #fff !important; }

  /* HERO */
  .hero {
    background: linear-gradient(160deg, #E8F3FB 0%, #EBF5E2 100%);
    padding: 5rem 2rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(91,159,212,0.12) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(125,184,92,0.12) 0%, transparent 50%);
  }
  .hero-content { position: relative; max-width: 720px; margin: 0 auto; }
  .hero-badge {
    display: inline-block;
    background: #fff;
    color: var(--blue);
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    border: 2px solid var(--blue-light);
    margin-bottom: 1.25rem;
    letter-spacing: 0.04em;
  }
  .hero h1 {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    color: var(--blue);
    line-height: 1.15;
    margin-bottom: 0.75rem;
  }
  .hero h1 em { color: var(--green); font-style: normal; }
  .hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 2rem;
  }
  .hero-dots {
    display: flex; justify-content: center; gap: 10px; margin-bottom: 2rem;
  }
  .hero-dots span {
    width: 12px; height: 12px; border-radius: 50%;
    display: inline-block;
  }
  .dot-pink { background: var(--pink); }
  .dot-yellow { background: var(--yellow); }
  .dot-blue { background: var(--blue); }
  .dot-purple { background: var(--purple); }
  .dot-green { background: var(--green); }
  .hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
  .btn-primary {
    background: var(--blue);
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); }
  .btn-secondary {
    background: #fff;
    color: var(--green-dark);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid var(--green);
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }
  .btn-secondary:hover { background: var(--green-light); transform: translateY(-2px); }

  /* TRUST BAR */
  .trust-bar {
    background: var(--blue);
    color: #fff;
    padding: 1rem 2rem;
    display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
  }
  .trust-item {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.9rem; font-weight: 600;
  }
  .trust-item svg { width: 20px; height: 20px; flex-shrink: 0; }

  /* SECTION COMMON */
  section { padding: 5rem 2rem; }
  .section-inner { max-width: 1100px; margin: 0 auto; }
  .section-label {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green);
    margin-bottom: 0.5rem;
  }
  .section-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    color: var(--text);
    margin-bottom: 0.75rem;
    line-height: 1.2;
  }
  .section-title em { color: var(--blue); font-style: normal; }
  .section-subtitle {
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 3rem;
    font-size: 1rem;
  }

  /* PROGRAMS */
  .programs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
  }
  @media (max-width: 900px) { .programs-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 600px) { .programs-grid { grid-template-columns: repeat(2, 1fr); } }
  .program-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.5rem 1.25rem;
    border-top: 5px solid var(--blue);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .program-card p { flex: 1; }
  .program-card:nth-child(2) { border-top-color: var(--green); }
  .program-card:nth-child(3) { border-top-color: var(--yellow); }
  .program-card:nth-child(4) { border-top-color: var(--pink); }
  .program-card:nth-child(5) { border-top-color: var(--purple); }
  .program-card:hover { transform: translateY(-4px); }
  .program-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: var(--blue-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  .program-card:nth-child(2) .program-icon { background: var(--green-light); }
  .program-card:nth-child(3) .program-icon { background: #FDF8E2; }
  .program-card:nth-child(4) .program-icon { background: #FDE8EF; }
  .program-card:nth-child(5) .program-icon { background: #F0EAFA; }
  .program-card h3 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    color: var(--text);
  }
  .program-age {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--blue);
    background: var(--blue-light);
    padding: 0.2rem 0.7rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 0.75rem;
  }
  .program-card:nth-child(2) .program-age { color: var(--green-dark); background: var(--green-light); }
  .program-card:nth-child(3) .program-age { color: #8A6800; background: #FDF8E2; }
  .program-card:nth-child(4) .program-age { color: #A0355A; background: #FDE8EF; }
  .program-card:nth-child(5) .program-age { color: #5C3A8A; background: #F0EAFA; }
  .program-card p { color: var(--text-muted); font-size: 0.9rem; }

  /* GALLERY */
  .gallery-section { background: #fff; }
  .gallery-intro { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }

  /* Polaroid bulletin board */
  .gallery-board {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
  }
  .polaroid {
    background: #fff;
    padding: 12px 12px 40px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.1), 0 1px 4px rgba(0,0,0,0.06);
    border-radius: 4px;
    transition: transform 0.25s;
    cursor: default;
  }
  .polaroid:hover { transform: scale(1.04) rotate(0deg) !important; box-shadow: 0 8px 30px rgba(0,0,0,0.14); }
  .polaroid:nth-child(odd) { transform: rotate(-1.5deg); }
  .polaroid:nth-child(even) { transform: rotate(1.2deg); }
  .polaroid:nth-child(3n) { transform: rotate(-0.5deg); }
  .polaroid-img {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 2px;
    overflow: hidden;
    background: var(--blue-light);
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .polaroid-img img { width: 100%; height: 100%; object-fit: cover; display: block; position: relative; }
  .polaroid-img .photo-placeholder {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 8px;
    color: var(--blue);
  }
  .polaroid-img .photo-placeholder span {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.75rem;
    text-align: center;
    padding: 0 8px;
    line-height: 1.3;
  }
  .polaroid-caption {
    padding-top: 10px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
  }
  .p1 .polaroid-img { background: #E8F3FB; }
  .p2 .polaroid-img { background: #EBF5E2; }
  .p3 .polaroid-img { background: #FDE8EF; }
  .p4 .polaroid-img { background: #FDF8E2; }
  .p5 .polaroid-img { background: #F0EAFA; }
  .p6 .polaroid-img { background: #E8F3FB; }
  .p7 .polaroid-img { background: #EBF5E2; }
  .p8 .polaroid-img { background: #FDE8EF; }


  @media (max-width: 1000px) { .gallery-board { grid-template-columns: repeat(4, 1fr) !important; } }
  @media (max-width: 700px) { .gallery-board { grid-template-columns: repeat(3, 1fr) !important; } }
  @media (max-width: 480px) { .gallery-board { grid-template-columns: repeat(2, 1fr) !important; } }
  .gallery-upload-note {
    background: var(--blue-light);
    border: 2px dashed var(--blue);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
    color: var(--blue-dark);
  }
  .gallery-upload-note strong {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.3rem;
  }

  /* WHY US */
  .why-section { background: var(--green-light); }
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
  }
  @media (max-width: 700px) { .why-grid { grid-template-columns: 1fr; } }
  .why-list { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }
  .why-item { display: flex; align-items: flex-start; gap: 1rem; }
  .why-check {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--green);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .why-check svg { width: 18px; height: 18px; color: #fff; }
  .why-item h4 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    margin-bottom: 0.2rem;
    color: var(--text);
  }
  .why-item p { font-size: 0.9rem; color: var(--text-muted); }
  .why-visual {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    text-align: center;
  }
  .stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stat-box {
    background: var(--blue-light);
    border-radius: 14px;
    padding: 1.25rem;
  }
  .stat-box:nth-child(2) { background: #FDF8E2; }
  .stat-box:nth-child(3) { background: #FDE8EF; }
  .stat-box:nth-child(4) { background: var(--green-light); }
  .stat-num {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    color: var(--blue);
    line-height: 1;
  }
  .stat-box:nth-child(2) .stat-num { color: #8A6800; }
  .stat-box:nth-child(3) .stat-num { color: #A0355A; }
  .stat-box:nth-child(4) .stat-num { color: var(--green-dark); }
  .stat-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; margin-top: 2px; }

  /* TESTIMONIALS */
  .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
  .testimonial-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
    border-left: 4px solid var(--blue);
    position: relative;
  }
  .testimonial-card:nth-child(2) { border-left-color: var(--green); }
  .testimonial-card:nth-child(3) { border-left-color: var(--pink); }
  .stars { color: var(--yellow); font-size: 1.1rem; margin-bottom: 0.75rem; }
  .testimonial-card p { color: var(--text-muted); font-size: 0.95rem; font-style: italic; margin-bottom: 1rem; }
  .reviewer { display: flex; align-items: center; gap: 0.75rem; }
  .reviewer-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--blue-light);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 0.85rem;
    color: var(--blue);
  }
  .testimonial-card:nth-child(2) .reviewer-avatar { background: var(--green-light); color: var(--green-dark); }
  .testimonial-card:nth-child(3) .reviewer-avatar { background: #FDE8EF; color: #A0355A; }
  .reviewer-name { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.9rem; }
  .reviewer-role { font-size: 0.8rem; color: var(--text-muted); }

  /* SCHEDULE */
  .schedule-section { background: var(--blue-light); }
  .schedule-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
  .schedule-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    display: flex; align-items: center; gap: 1rem;
  }
  .sched-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--blue-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
  }
  .sched-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; }
  .sched-value { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1rem; color: var(--text); }

  /* CONTACT */
  .contact-section { background: var(--blue); color: #fff; }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
  @media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } }
  .contact-section .section-label { color: rgba(255,255,255,0.7); }
  .contact-section .section-title { color: #fff; }
  .contact-section .section-subtitle { color: rgba(255,255,255,0.8); max-width: none; margin-bottom: 1.5rem; }
  .contact-detail { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
  .contact-detail svg { width: 20px; height: 20px; opacity: 0.85; flex-shrink: 0; }
  .contact-detail span { font-size: 0.95rem; }
  .contact-form { display: flex; flex-direction: column; gap: 1rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .contact-form input, .contact-form textarea, .contact-form select {
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    width: 100%;
    outline: none;
    transition: border-color 0.2s;
  }
  .contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.55); }
  .contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
    border-color: rgba(255,255,255,0.8);
  }
  .contact-form select option { color: var(--text); background: #fff; }
  .contact-form textarea { min-height: 110px; resize: vertical; }
  .btn-white {
    background: #fff;
    color: var(--blue);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: transform 0.15s, opacity 0.2s;
    align-self: flex-start;
  }
  .btn-white:hover { transform: translateY(-2px); opacity: 0.92; }

  /* FOOTER */
  footer {
    background: #1A2B3C;
    color: rgba(255,255,255,0.7);
    padding: 3rem 2rem 2rem;
    text-align: center;
  }
  .footer-logo {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
  }
  .footer-logo span { color: var(--green); }
  .footer-tagline { font-size: 0.85rem; margin-bottom: 1.5rem; }
  .footer-links { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
  .footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; }
  .footer-links a:hover { color: #fff; }
  .footer-copy { font-size: 0.8rem; }

  /* LIGHTBOX */
  .polaroid { cursor: pointer; }
  #lightbox {
    display: none;
    position: fixed; inset: 0; z-index: 999;
    background: rgba(15, 15, 25, 0.88);
    align-items: center; justify-content: center;
  }
  #lightbox.active { display: flex; }
  #lightbox-inner {
    background: #fff;
    padding: 16px 16px 52px;
    border-radius: 4px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.5);
    max-width: min(480px, 90vw);
    width: 100%;
    position: relative;
    animation: popIn 0.22s cubic-bezier(0.34,1.56,0.64,1);
  }
  @keyframes popIn {
    from { transform: scale(0.82) rotate(-2deg); opacity: 0; }
    to   { transform: scale(1) rotate(0deg); opacity: 1; }
  }
  #lightbox-img {
    width: 100%; aspect-ratio: 4/3;
    border-radius: 2px; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem;
  }
  #lightbox-img img { width: 100%; height: 100%; object-fit: cover; }
  #lightbox-caption {
    text-align: center;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: var(--text-muted);
    padding-top: 12px;
  }
  #lightbox-close {
    position: absolute; top: -14px; right: -14px;
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--blue); color: #fff;
    border: 3px solid #fff;
    font-size: 1rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; line-height: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  }
  #lightbox-close:hover { background: var(--blue-dark); }
  #lightbox-nav {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 10px;
  }
  .lb-arrow {
    background: none; border: none; cursor: pointer;
    font-size: 1.4rem; color: var(--text-muted);
    padding: 4px 10px; border-radius: 8px;
    transition: background 0.15s, color 0.15s;
  }
  .lb-arrow:hover { background: var(--blue-light); color: var(--blue); }
  #lightbox-counter {
    color: var(--text-muted);
    overflow: visible;
  }

  @media (max-width: 600px) {
    #announcement-bar {
      padding: 0.65rem 2.5rem 0.65rem 1rem;
      font-size: 0.82rem;
      line-height: 1.4;
      border-radius: 0 0 14px 14px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.12);
      letter-spacing: 0.01em;
    }
    #announcement-text { text-align: left; }
  }

  @media (max-width: 600px) {
    #lightbox-inner {
      max-width: 96vw;
      padding: 5px 5px 5px;
      border-radius: 3px;
      display: flex;
      flex-direction: column;
    }
    #lightbox-img {
      aspect-ratio: unset;
      height: 72vh;
      flex: 1;
      border-radius: 6px;
    }
    #lightbox-close {
      top: 10px; right: 10px;
      width: 32px; height: 32px;
      background: rgba(0,0,0,0.55);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1.5px solid rgba(255,255,255,0.55);
      color: #fff;
      font-size: 0.85rem;
      box-shadow: 0 2px 12px rgba(0,0,0,0.4);
      z-index: 10;
    }
    #lightbox-close:hover { background: rgba(0,0,0,0.75); }
    #lightbox-caption { font-size: 0.82rem; padding-top: 4px; }
    #lightbox-nav { margin-top: 4px; }
  }

  /* ── ANNOUNCEMENT BANNER ── */
  #announcement-bar {
    background: var(--blue);
    color: #fff;
    text-align: center;
    padding: 0.6rem 3rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 40px;
  }
  #announcement-bar a { color: #fff; text-decoration: underline; }
  #announcement-text { flex: 1; text-align: center; }
  #announcement-edit-btn {
    position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none; color: #fff; border-radius: 6px;
    padding: 0.2rem 0.5rem; font-size: 0.75rem; cursor: pointer;
    font-family: 'Nunito', sans-serif; font-weight: 800;
    display: none;
  }
  #announcement-edit-btn:hover { background: rgba(255,255,255,0.35); }
  #announcement-editor {
    display: none;
    position: fixed; inset: 0; z-index: 10001;
    background: rgba(0,0,0,0.6);
    align-items: center; justify-content: center;
  }
  #announcement-editor.active { display: flex; }
  #announcement-editor-inner {
    background: #fff; border-radius: 16px; padding: 2rem;
    width: min(480px, 92vw);
    box-shadow: 0 24px 60px rgba(0,0,0,0.3);
  }
  #announcement-editor-inner h3 {
    font-family: 'Nunito', sans-serif; font-weight: 900;
    color: var(--blue); font-size: 1.15rem; margin-bottom: 1rem;
  }
  #announcement-input {
    width: 100%; padding: 0.75rem 1rem;
    border: 1.5px solid var(--blue-light); border-radius: 10px;
    font-family: 'Open Sans', sans-serif; font-size: 0.95rem;
    margin-bottom: 0.75rem; outline: none; resize: vertical; min-height: 80px;
  }
  #announcement-input:focus { border-color: var(--blue); }
  .ann-color-row { display: flex; gap: 0.5rem; margin-bottom: 1rem; align-items: center; }
  .ann-color-swatch {
    width: 28px; height: 28px; border-radius: 50%; cursor: pointer;
    border: 3px solid transparent; transition: border-color 0.15s;
  }
  .ann-color-swatch.selected { border-color: #333; }
  .ann-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }
  .ann-btn-save {
    background: var(--blue); color: #fff; border: none;
    padding: 0.7rem 1.5rem; border-radius: 50px;
    font-family: 'Nunito', sans-serif; font-weight: 800; cursor: pointer;
  }
  .ann-btn-cancel {
    background: #fff; color: var(--text-muted);
    border: 2px solid #ddd; padding: 0.7rem 1.25rem; border-radius: 50px;
    font-family: 'Nunito', sans-serif; font-weight: 800; cursor: pointer;
  }

  /* ── FAQ ── */
  .faq-section { background: var(--blue-light); }
  .faq-list { display: flex; flex-direction: column; gap: 0.75rem; max-width: 760px; }
  .faq-item {
    background: #fff; border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    overflow: hidden;
  }
  .faq-q {
    width: 100%; background: none; border: none; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.1rem 1.5rem;
    font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1rem;
    color: var(--text); text-align: left; gap: 1rem;
  }
  .faq-q:hover { color: var(--blue); }
  .faq-icon {
    flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
    background: var(--blue-light); color: var(--blue);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; font-weight: 900; transition: transform 0.25s;
  }
  .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--blue); color: #fff; }
  .faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease, padding 0.2s;
    padding: 0 1.5rem;
    color: var(--text-muted); font-size: 0.95rem; line-height: 1.7;
  }
  .faq-item.open .faq-a { max-height: 300px; padding: 0 1.5rem 1.25rem; }

  /* ── FLOATING CALL BUTTON ── */
  #float-call {
    display: none;
    position: fixed; bottom: 1.4rem; right: 1.2rem;
    z-index: 998;
    background: linear-gradient(135deg, #6dbf47, #4a9e2f);
    color: #fff;
    border-radius: 50px; padding: 0.7rem 1.3rem 0.7rem 1.1rem;
    font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(74,158,47,0.45), 0 1px 3px rgba(0,0,0,0.15);
    display: flex; align-items: center; gap: 0.45rem;
    transition: transform 0.18s, box-shadow 0.18s;
    animation: floatPulse 3s ease-in-out infinite;
    letter-spacing: 0.01em;
    border: 1.5px solid rgba(255,255,255,0.25);
  }
  #float-call svg, #float-call img { width: 18px; height: 18px; }
  @keyframes floatPulse {
    0%, 100% { box-shadow: 0 4px 18px rgba(74,158,47,0.45), 0 1px 3px rgba(0,0,0,0.15); }
    50%       { box-shadow: 0 6px 28px rgba(74,158,47,0.65), 0 2px 6px rgba(0,0,0,0.15); }
  }
  #float-call:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(74,158,47,0.55); }
  #float-call:active { transform: translateY(-1px); }
  @media (min-width: 701px) { #float-call { display: none !important; } }

  /* ── MOBILE ── */

  /* Hamburger button - hidden on desktop */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 10000;
    position: relative;
  }
  .nav-hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--blue);
    border-radius: 3px;
    transition: all 0.25s;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* Mobile drawer */
  .nav-drawer {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: #fff;
    border-bottom: 3px solid var(--blue-light);
    border-top: 1px solid var(--blue-light);
    padding: 0;
    z-index: 9999;
    box-shadow: 0 12px 32px rgba(0,0,0,0.18);
    flex-direction: column;
    gap: 0;
  }
  .nav-drawer.open { display: flex; }
  .nav-drawer a {
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--blue-light);
    font-family: 'Nunito', sans-serif;
    display: block;
    background: #ffffff;
    width: 100%;
  }
  .nav-drawer a:hover { background: var(--blue-light); color: var(--blue); }
  .nav-drawer a:last-child { border-bottom: none; }
  .nav-drawer .drawer-cta {
    background: var(--blue) !important;
    color: #fff !important;
    text-align: center;
    margin: 0.75rem 1.5rem 1rem;
    border-radius: 50px;
    width: calc(100% - 3rem) !important;
    padding: 0.8rem 1.25rem !important;
  }

  @media (max-width: 700px) {
    /* Nav */
    nav { height: 70px; padding: 0 1.25rem; }
    .nav-logo img { height: 58px; }
    .nav-links { display: none !important; }
    .nav-hamburger { display: flex; }
    .nav-drawer { top: 70px; }

    /* Hero */
    .hero { padding: 3rem 1.25rem 2.5rem; }
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
    .hero-buttons { flex-direction: column; align-items: center; gap: 0.75rem; }
    .hero-buttons a { width: 100%; max-width: 300px; text-align: center; }

    /* Trust bar */
    .trust-bar { gap: 1rem; padding: 0.75rem 1rem; flex-wrap: wrap; justify-content: center; }
    .trust-item { font-size: 0.78rem; }

    /* Sections */
    section { padding: 3rem 1.25rem; }
    .section-inner { padding: 0; }
    .section-title { font-size: 1.6rem; }

    /* Programs - 2 columns on mobile */
    .programs-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.9rem; }
    .program-card { padding: 1.1rem 1rem; }
    .program-icon { width: 44px; height: 44px; font-size: 1.4rem; }
    .program-card h3 { font-size: 0.95rem; }
    .program-card p { font-size: 0.8rem; }

    /* Polaroids - 2 cols on mobile */
    .gallery-board { grid-template-columns: repeat(2, 1fr) !important; gap: 0.75rem; }
    .polaroid { padding: 8px 8px 30px; }

    /* Night care */
    #nightcare .section-inner > div { grid-template-columns: 1fr !important; }
    #nightcare { padding: 3rem 1.25rem; }

    /* Why grid */
    .why-grid { grid-template-columns: 1fr !important; }
    .stat-grid { grid-template-columns: 1fr 1fr; }

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

    /* Schedule */
    .schedule-grid { grid-template-columns: 1fr 1fr; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr !important; }
    .form-row { grid-template-columns: 1fr; }

    /* Footer */
    .footer-links { gap: 1rem; }
    .footer-copy { font-size: 0.72rem; padding: 0 1rem; }

    /* Photo manager */
    #img-manager { padding: 1.25rem; }
  }

  @media (max-width: 400px) {
    .programs-grid { grid-template-columns: 1fr !important; }
    .gallery-board { grid-template-columns: repeat(2, 1fr) !important; }
    .hero h1 { font-size: 1.7rem; }
  }


  /* ── Fun background doodles ── */
  .doodle-bg {
    position: relative;
    overflow: hidden;
  }
  .doodle-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600'%3E%3C!-- Stars --%3E%3Cpath d='M50 40 l3 8 l8 0 l-6 5 l2 8 l-7-5 l-7 5 l2-8 l-6-5 l8 0z' fill='none' stroke='%23F5C842' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' opacity='0.25'/%3E%3Cpath d='M540 80 l3 8 l8 0 l-6 5 l2 8 l-7-5 l-7 5 l2-8 l-6-5 l8 0z' fill='none' stroke='%235B9FD4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' opacity='0.25'/%3E%3Cpath d='M480 300 l2 6 l6 0 l-5 4 l2 6 l-5-3 l-5 3 l2-6 l-5-4 l6 0z' fill='none' stroke='%23F28BAD' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' opacity='0.25'/%3E%3Cpath d='M100 500 l2 6 l6 0 l-5 4 l2 6 l-5-3 l-5 3 l2-6 l-5-4 l6 0z' fill='none' stroke='%237DB85C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' opacity='0.25'/%3E%3C!-- Crayon scribbles --%3E%3Cpath d='M20 120 Q40 100 60 120 Q80 140 100 120' fill='none' stroke='%23F28BAD' stroke-width='3.5' stroke-linecap='round' opacity='0.25'/%3E%3Cpath d='M500 200 Q520 180 540 200 Q560 220 580 200' fill='none' stroke='%237DB85C' stroke-width='3.5' stroke-linecap='round' opacity='0.25'/%3E%3Cpath d='M200 550 Q230 530 260 550 Q290 570 320 550' fill='none' stroke='%235B9FD4' stroke-width='3' stroke-linecap='round' opacity='0.25'/%3E%3Cpath d='M350 30 Q370 15 390 30 Q410 45 430 30' fill='none' stroke='%23F5C842' stroke-width='3' stroke-linecap='round' opacity='0.25'/%3E%3C!-- Dots/circles --%3E%3Ccircle cx='160' cy='60' r='7' fill='%23B39BD5' opacity='0.25'/%3E%3Ccircle cx='420' cy='480' r='9' fill='%23F5C842' opacity='0.25'/%3E%3Ccircle cx='30' cy='350' r='6' fill='%235B9FD4' opacity='0.25'/%3E%3Ccircle cx='570' cy='400' r='8' fill='%23F28BAD' opacity='0.25'/%3E%3Ccircle cx='300' cy='580' r='5' fill='%237DB85C' opacity='0.25'/%3E%3C!-- Paint splotches --%3E%3Cellipse cx='490' cy='550' rx='22' ry='14' fill='%23F28BAD' opacity='0.18' transform='rotate(-20 490 550)'/%3E%3Cellipse cx='80' cy='450' rx='18' ry='11' fill='%235B9FD4' opacity='0.18' transform='rotate(15 80 450)'/%3E%3Cellipse cx='320' cy='70' rx='20' ry='12' fill='%237DB85C' opacity='0.18' transform='rotate(-10 320 70)'/%3E%3C!-- Triangles (little doodle shapes) --%3E%3Cpolygon points='555,130 570,160 540,160' fill='none' stroke='%23F5C842' stroke-width='2.5' stroke-linejoin='round' opacity='0.25'/%3E%3Cpolygon points='40,250 55,280 25,280' fill='none' stroke='%23B39BD5' stroke-width='2.5' stroke-linejoin='round' opacity='0.25'/%3E%3C!-- Small crosses/plus --%3E%3Cpath d='M240 20 v14 M233 27 h14' stroke='%23F28BAD' stroke-width='2.5' stroke-linecap='round' opacity='0.25'/%3E%3Cpath d='M560 470 v14 M553 477 h14' stroke='%237DB85C' stroke-width='2.5' stroke-linecap='round' opacity='0.25'/%3E%3Cpath d='M15 560 v12 M9 566 h12' stroke='%235B9FD4' stroke-width='2' stroke-linecap='round' opacity='0.25'/%3E%3C!-- Wavy lines --%3E%3Cpath d='M0 380 Q30 365 60 380 Q90 395 120 380 Q150 365 180 380' fill='none' stroke='%23F5C842' stroke-width='2' stroke-linecap='round' opacity='0.25'/%3E%3Cpath d='M420 580 Q450 565 480 580 Q510 595 540 580 Q570 565 600 580' fill='none' stroke='%23B39BD5' stroke-width='2' stroke-linecap='round' opacity='0.25'/%3E%3C!-- Heart --%3E%3Cpath d='M450 150 C450 145 443 138 437 145 C431 138 424 145 424 150 C424 158 437 167 437 167 C437 167 450 158 450 150z' fill='none' stroke='%23F28BAD' stroke-width='2.5' opacity='0.25'/%3E%3Cpath d='M140 380 C140 375 133 368 127 375 C121 368 114 375 114 380 C114 388 127 397 127 397 C127 397 140 388 140 380z' fill='none' stroke='%235B9FD4' stroke-width='2' opacity='0.25'/%3E%3C!-- Spiral --%3E%3Cpath d='M300 480 C300 475 306 470 312 475 C318 480 314 490 306 490 C298 490 293 480 298 472 C303 464 316 463 322 472' fill='none' stroke='%23F5C842' stroke-width='2' stroke-linecap='round' opacity='0.25'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 600px 600px;
    pointer-events: none;
    z-index: 0;
  }
  .doodle-bg > * { position: relative; z-index: 1; }