/* ============================================
   Kidz R Us - Custom Styles
   For use with Hello Elementor + Elementor
   ============================================ */

 /* ===========================
       CSS VARIABLES & RESET
    =========================== */
    :root {
      --red:     #E83A1F;
      --blue:    #1A6FCC;
      --green:   #2E9B3A;
      --yellow:  #F7BE00;
      --orange:  #F77F00;
      --pink:    #E91EA0;
      --purple:  #9B3DD1;
      --brown:   #7D4E2D;
      --teal:    #00B5AD;
      --white:   #FFFFFF;
      --bg:      #FFFDF5;
      --dark:    #1A1A2E;
      --gray:    #F5F0E8;
      --text:    #2D2D2D;
      --text-light: #666;
      --radius:  20px;
      --radius-lg: 32px;
    }

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -o-font-smoothing: antialiased;
}

.header-cta {
      background: linear-gradient(135deg, var(--orange), var(--pink));
      color: white !important;
      padding: 10px 26px !important;
      border-radius: 50px !important;
      font-weight: 700 !important;
      font-size: 15px;
      box-shadow: 0 4px 18px rgba(231,127,0,0.35)!important;
      transition: 0.2s !important;
    }
    .header-cta:hover {
      box-shadow: 0 8px 28px rgba(231,127,0,0.45) !important;
    }
    .header-cta::after { display: none !important; }



    html { scroll-behavior: smooth; }

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

    h1, h2, h3, h4 {
      font-family: 'Lilita One', cursive;
      letter-spacing: 0.3px;
    }

    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }

    /* ===========================
       FLOATING SHAPES (background deco)
    =========================== */
    .bg-shape {
      position: absolute;
      border-radius: 50%;
      opacity: 0.08;
      pointer-events: none;
      z-index: 0;
    }

    /* ===========================
       HEADER / NAV
    =========================== */
    #header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: var(--white);
      padding: 12px 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: box-shadow 0.3s, padding 0.3s;
    }
    #header.scrolled {
      box-shadow: 0 4px 28px rgba(0,0,0,0.10);
      padding: 8px 48px;
    }

    .logo img {
      height: 60px;
      width: auto;
      transition: height 0.3s;
    }
    #header.scrolled .logo img { height: 48px; }

    nav {
      display: flex;
      gap: 8px;
    }
    nav a {
      font-family: 'Lilita One', cursive;
      font-weight: 600;
      font-size: 15px;
      color: var(--dark);
      padding: 6px 14px;
      border-radius: 50px;
      transition: background 0.2s, color 0.2s;
      position: relative;
    }
    nav a::after {
      content: '';
      position: absolute;
      bottom: 2px; left: 50%;
      width: 0; height: 3px;
      background: var(--orange);
      border-radius: 4px;
      transform: translateX(-50%);
      transition: width 0.25s;
    }
    nav a:hover { color: var(--orange); }
    nav a:hover::after { width: 60%; }

    .header-cta {
      background: linear-gradient(135deg, var(--orange), var(--pink));
      color: white !important;
      padding: 10px 26px !important;
      border-radius: 50px !important;
      font-weight: 700 !important;
      font-size: 15px;
      box-shadow: 0 4px 18px rgba(231,127,0,0.35);
      transition: transform 0.2s, box-shadow 0.2s !important;
    }
    .header-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(231,127,0,0.45) !important;
    }
    .header-cta::after { display: none !important; }

    /* ===========================
       HERO SLIDER
    =========================== */
    #hero {
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 600px;
      overflow: hidden;
      margin-top: 0;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: none;
    }
    .hero-slide.active { opacity: 1; }

    .hero-slide img {
      width: 100%; height: 100%!important;
      object-fit: cover!important;
      object-position: center!important;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        135deg,
        rgba(26, 26, 46, 0.72) 0%,
        rgba(26, 26, 46, 0.45) 50%,
        rgba(0,0,0,0.2) 100%
      );
    }

    .hero-content {
      position: absolute;
      top: 50%;
      left: 9%;
      transform: translateY(-50%);
      max-width: 640px;
      z-index: 10;
    }

    .hero-badge {
      display: inline-block;
      background: var(--yellow);
      color: var(--dark);
      font-family: 'Lilita One', cursive;
      font-weight: 700;
      font-size: 13px;
      padding: 5px 18px;
      border-radius: 50px;
      margin-bottom: 18px;
      letter-spacing: 0.5px;
    }

    .hero-title {
      font-size: clamp(38px, 5.5vw, 72px);
      line-height: 1.12;
      color: white;
      font-weight: 800;
      margin-bottom: 18px;
    }

    .hero-title span {
      position: relative;
      display: inline;
    }
    .hero-title .highlight {
      color: var(--yellow);
    }

    .hero-sub {
      color: rgba(255,255,255,0.88);
      font-size: clamp(15px, 1.8vw, 19px);
      line-height: 1.65;
      margin-bottom: 34px;
      font-weight: 500;
    }

    .hero-btns {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--orange), var(--red));
      color: white;
      font-family: 'Lilita One', cursive;
      font-weight: 700;
      font-size: 16px;
      padding: 14px 34px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      box-shadow: 0 6px 24px rgba(232,58,31,0.4);
      transition: transform 0.2s, box-shadow 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(232,58,31,0.5);
    }

    .btn-secondary {
      background: rgba(255,255,255,0.18);
      backdrop-filter: blur(8px);
      color: white;
      font-family: 'Lilita One', cursive;
      font-weight: 700;
      font-size: 16px;
      padding: 14px 34px;
      border-radius: 50px;
      border: 2px solid rgba(255,255,255,0.55);
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s, transform 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-secondary:hover {
      background: rgba(255,255,255,0.3);
      border-color: white;
      transform: translateY(-3px);
    }

    /* Hero slider dots */
    .hero-dots {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 20;
    }
    .hero-dot {
      width: 10px; height: 10px;
      border-radius: 50%;
      background: rgba(255,255,255,0.4);
      cursor: pointer;
      transition: background 0.3s, transform 0.3s;
      border: none;padding:0px!important;
    }
    .hero-dot.active {
      background: var(--yellow);
      transform: scale(1.4);
    }

    /* Hero scroll indicator */
    .hero-scroll {
      position: absolute;
      bottom: 36px;
      right: 9%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      color: rgba(255,255,255,0.65);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      z-index: 20;
    }
    .scroll-line {
      width: 1.5px;
      height: 48px;
      background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
      animation: scrollPulse 2s infinite;
    }
    @keyframes scrollPulse {
      0%, 100% { opacity: 1; transform: scaleY(1); }
      50% { opacity: 0.4; transform: scaleY(0.6); }
    }

    /* Decorative corner in hero */
    .hero-deco {
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: 42%;
      z-index: 5;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    /* ===========================
       WAVE DIVIDERS
    =========================== */
    .wave-top, .wave-bottom {
      width: 100%;
      overflow: hidden;
      line-height: 0;
    }
    .wave-top svg, .wave-bottom svg {
      display: block;
      width: 100%;
    }

    /* ===========================
       SECTION COMMON STYLES
    =========================== */
    section {
      position: relative;
    }

    .section-tag {
      display: inline-block;
      font-family: 'Lilita One', cursive;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 5px 16px;
      border-radius: 50px;
      margin-bottom: 14px;
    }

    .section-title {
      font-size: clamp(28px, 4vw, 48px);
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 16px;
    }

    .section-subtitle {
      font-size: 17px;
      line-height: 1.7;
      color: var(--text-light);
      max-width: 560px;
    }

    .container {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 40px;
    }

    /* ===========================
       ABOUT STRIP (short)
    =========================== */
    #about-strip {
      background: var(--bg);
      padding: 80px 0 60px;
    }

    .about-strip-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about-strip-img {
      position: relative;
    }
    .about-strip-img .main-img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      border-radius: 32px 8px 32px 8px;
      box-shadow: 0 24px 60px rgba(0,0,0,0.14);
    }
    .about-strip-img .float-img {
      position: absolute;
      bottom: -24px;
      right: -28px;
      width: 180px;
      height: 180px;
      object-fit: cover;
      border-radius: 50%;
      border: 6px solid white;
      box-shadow: 0 12px 36px rgba(0,0,0,0.16);
    }
    .about-strip-img .badge-since {
      position: absolute;
      top: 24px;
      left: -20px;
      background: var(--yellow);
      color: var(--dark);
      font-family: 'Lilita One', cursive;
      font-weight: 800;
      font-size: 14px;
      padding: 12px 20px;
      border-radius: 16px;
      box-shadow: 0 8px 24px rgba(247,190,0,0.4);
      text-align: center;
      line-height: 1.3;
    }
    .about-strip-img .badge-since span {
      display: block;
      font-size: 26px;
    }

    .about-strip-text .section-tag {
      background: #FFF0D6;
      color: var(--orange);
    }

    .about-strip-text .section-title { color: var(--dark); }

    .about-strip-text p {
      font-size: 16px;
      line-height: 1.8;
      color: var(--text-light);
      margin-bottom: 20px;
    }

    .about-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 28px;
    }
    .about-pill {
      display: flex;
      align-items: center;
      gap: 7px;
      background: var(--gray);
      border-radius: 50px;
      padding: 7px 16px;
      font-size: 14px;
      font-weight: 600;
      color: var(--dark);
    }
    .about-pill .dot {
      width: 10px; height: 10px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Lilita One', cursive;
      font-weight: 700;
      font-size: 16px;
      padding: 13px 30px;
      border-radius: 50px;
      border: 2.5px solid var(--orange);
      color: var(--orange);
      transition: background 0.2s, color 0.2s, transform 0.2s;
    }
    .btn-outline:hover {
      background: var(--orange);
      color: white;
      transform: translateY(-2px);
    }

    /* ===========================
       STATS BAND
    =========================== */
    #stats {
      background: linear-gradient(135deg, var(--dark) 0%, #16213E 100%);
      padding: 60px 0;
      position: relative;
      overflow: hidden;
    }
    #stats::before {
      content: '';
      position: absolute;
      width: 400px; height: 400px;
      background: var(--orange);
      border-radius: 50%;
      top: -200px; left: -100px;
      opacity: 0.06;
    }
    #stats::after {
      content: '';
      position: absolute;
      width: 300px; height: 300px;
      background: var(--yellow);
      border-radius: 50%;
      bottom: -150px; right: 10%;
      opacity: 0.06;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }

    .stat-item {
      text-align: center;
      padding: 20px 16px;
      position: relative;
    }
    .stat-item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0; top: 20%; bottom: 20%;
      width: 1px;
      background: rgba(255,255,255,0.12);
    }

    .stat-icon {
      font-size: 32px;
      margin-bottom: 10px;
    }

    .stat-number {
      font-family: 'Lilita One', cursive;
      font-size: clamp(36px, 4vw, 54px);
      font-weight: 800;
      color: var(--yellow);
      line-height: 1;
      margin-bottom: 6px;
    }

    .stat-label {
      font-size: 14px;
      font-weight: 600;
      color: rgba(255,255,255,0.7);
      letter-spacing: 0.5px;
    }

    /* ===========================
       WHY CHOOSE US
    =========================== */
    #why {
      padding: 90px 0;
      background: var(--bg);
      overflow: hidden;
    }

    .why-header {
      text-align: center;
      margin-bottom: 60px;
    }
    .why-header .section-tag {
      background: #EDF8FF;
      color: var(--blue);
    }
    .why-header .section-title { color: var(--dark); }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .why-card {
      background: white;
      border-radius: var(--radius-lg);
      padding: 36px 30px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 8px 36px rgba(0,0,0,0.06);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .why-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 54px rgba(0,0,0,0.12);
    }

    .why-card-accent {
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 5px;
    }

    .why-icon {
      width: 64px; height: 64px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      margin-bottom: 22px;
    }

    .why-card h3 {
      font-size: 20px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 12px;
    }

    .why-card p {
      font-size: 15px;
      line-height: 1.75;
      color: var(--text-light);
    }

    /* ===========================
       ADMISSION CTA BAND
    =========================== */
    #admission-band {
      background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
      padding: 60px 0;
      position: relative;
      overflow: hidden;
    }
    #admission-band::before {
      content: '🎒';
      position: absolute;
      font-size: 160px;
      right: 8%;
      top: 50%;
      transform: translateY(-50%) rotate(-15deg);
      opacity: 0.12;
    }

    .admission-band-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
    }

    .admission-band-text h2 {
      font-size: clamp(26px, 3.2vw, 40px);
      color: white;
      margin-bottom: 10px;
    }
    .admission-band-text p {
      color: rgba(255,255,255,0.82);
      font-size: 16px;
      line-height: 1.6;
    }

    .btn-white {
      background: white;
      color: var(--blue);
      font-family: 'Lilita One', cursive;
      font-weight: 800;
      font-size: 16px;
      padding: 14px 36px;
      border-radius: 50px;
      white-space: nowrap;
      flex-shrink: 0;
      box-shadow: 0 8px 28px rgba(0,0,0,0.18);
      transition: transform 0.2s, box-shadow 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-white:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 36px rgba(0,0,0,0.25);
    }

    /* ===========================
       FACILITIES
    =========================== */
    #facilities {
      padding: 90px 0 80px;
      background: var(--gray);
      overflow: hidden;
    }

    .facilities-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 48px;
    }

    .facilities-header .section-tag {
      background: #F0FFF0;
      color: var(--green);
    }

    .facilities-nav-btns {
      display: flex;
      gap: 10px;
    }
    .fac-nav-btn {
      width: 46px; height: 46px;
      border-radius: 50%;
      border: 2.5px solid var(--green);
      background: transparent;
      color: var(--green);
      font-size: 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, color 0.2s;
    }
    .fac-nav-btn:hover {
      background: var(--green);
      color: white;
    }

    .facilities-track-wrap {
      overflow: hidden;
      position: relative;
    }
    .facilities-track {
      display: flex;
      gap: 24px;
      will-change: transform;
      padding-bottom: 12px;
    }

    .facility-card {
      flex: 0 0 310px;
      background: white;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 0 6px 28px rgba(0,0,0,0.07);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .facility-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 46px rgba(0,0,0,0.12);
    }

    .facility-card-img {
      width: 100%;
      height: 190px;
      object-fit: cover;
    }

    .facility-card-icon-wrap {
      width: 100%;
      height: 190px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 64px;
    }

    .facility-card-body {
      padding: 22px 24px 26px;
    }

    .facility-card-body h3 {
      font-size: 19px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 8px;
    }

    .facility-card-body p {
      font-size: 14px;
      line-height: 1.7;
      color: var(--text-light);
    }

    .facility-tag {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 3px 11px;
      border-radius: 50px;
      margin-bottom: 10px;
    }

    .all-facilities-link {
      text-align: center;
      margin-top: 44px;
    }

    /* ===========================
       GALLERY TEASER
    =========================== */
    #gallery-teaser {
      padding: 90px 0;
      background: var(--bg);
    }

    .gallery-header {
      text-align: center;
      margin-bottom: 52px;
    }
    .gallery-header .section-tag {
      background: #FFF0F8;
      color: var(--pink);
    }

    .gallery-mosaic {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: repeat(2, 240px);
      gap: 16px;
    }

    .gallery-item {
      border-radius: 20px;
      overflow: hidden;
    }
    .gallery-item img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .gallery-item:hover img { transform: scale(1.06); }

    .gi-1 { grid-column: 1 / 6; grid-row: 1 / 2; }
    .gi-2 { grid-column: 6 / 9; grid-row: 1 / 2; }
    .gi-3 { grid-column: 9 / 13; grid-row: 1 / 3; }
    .gi-4 { grid-column: 1 / 4; grid-row: 2 / 3; }
    .gi-5 { grid-column: 4 / 9; grid-row: 2 / 3; }

    .gallery-cta {
      text-align: center;
      margin-top: 40px;
    }

    /* ===========================
       TESTIMONIALS
    =========================== */
    #testimonials {
      padding: 90px 0;
      background: linear-gradient(160deg, #1A1A2E 0%, #16213E 60%, #0F3460 100%);
      position: relative;
      overflow: hidden;
    }

    .testi-bg-deco {
      position: absolute;
      border-radius: 50%;
      opacity: 0.05;
      pointer-events: none;
    }

    .testimonials-header {
      text-align: center;
      margin-bottom: 54px;
    }
    .testimonials-header .section-tag {
      background: rgba(247,190,0,0.18);
      color: var(--yellow);
    }
    .testimonials-header .section-title { color: white; }

    .testi-slider-wrap {
      position: relative;
    }

    .testi-track {
      display: flex;
      gap: 24px;
      will-change: transform;
    }

    .testi-card {
      flex: 0 0 calc(33.33% - 16px);
      background: rgba(255,255,255,0.06);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-lg);
      padding: 34px 30px;
      transition: background 0.3s;
    }
    .testi-card:hover {
      background: rgba(255,255,255,0.1);
    }

    .testi-stars {
      color: var(--yellow);
      font-size: 16px;
      margin-bottom: 16px;
      letter-spacing: 2px;
    }

    .testi-quote {
      font-size: 15px;
      line-height: 1.8;
      color: rgba(255,255,255,0.82);
      margin-bottom: 24px;
      font-style: italic;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .testi-avatar {
      width: 48px; height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      flex-shrink: 0;
    }

    .testi-name {
      font-family: 'Lilita One', cursive;
      font-weight: 700;
      color: white;
      font-size: 16px;
    }
    .testi-role {
      font-size: 13px;
      color: rgba(255,255,255,0.55);
    }

    .testi-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 40px;
    }
    .testi-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.25);
      cursor: pointer;
      border: none;
      transition: background 0.3s, transform 0.3s;padding:0px!important;
    }
    .testi-dot.active {
      background: var(--yellow);
      transform: scale(1.4);
    }

    /* ===========================
       FINAL CTA SECTION
    =========================== */
    #final-cta {
      padding: 100px 0;
      background: var(--bg);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .final-cta-deco {
      position: absolute;
      font-size: 100px;
      opacity: 0.06;
      pointer-events: none;
    }

    .final-cta-inner {
      position: relative;
      z-index: 2;
    }

    .final-cta-inner .section-tag {
      background: #FFE8F0;
      color: var(--pink);
    }

    .final-cta-inner .section-title {
      max-width: 600px;
      margin: 0 auto 16px;
      color: var(--dark);
    }

    .final-cta-inner p {
      color: var(--text-light);
      font-size: 17px;
      max-width: 500px;
      margin: 0 auto 36px;
      line-height: 1.7;
    }

    .final-cta-btns {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-green {
      background: linear-gradient(135deg, var(--green), var(--teal));
      color: white;
      font-family: 'Lilita One', cursive;
      font-weight: 700;
      font-size: 16px;
      padding: 14px 34px;
      border-radius: 50px;
      box-shadow: 0 6px 24px rgba(46,155,58,0.4);
      transition: transform 0.2s, box-shadow 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-green:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(46,155,58,0.5);
    }

    .contact-chips {
      display: flex;
      gap: 16px;
      justify-content: center;
      margin-top: 36px;
      flex-wrap: wrap;
    }
    .contact-chip {
      display: flex;
      align-items: center;
      gap: 8px;
      background: white;
      border-radius: 50px;
      padding: 10px 20px;
      font-weight: 600;
      font-size: 15px;
      color: var(--dark);
      box-shadow: 0 4px 18px rgba(0,0,0,0.07);
      transition: transform 0.2s;
    }
    .contact-chip:hover { transform: translateY(-2px); }

    /* ===========================
       FOOTER
    =========================== */
    footer {
      background: var(--dark);
      padding: 64px 0 0;
      color: rgba(255,255,255,0.75);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
      gap: 50px;
      margin-bottom: 50px;
    }

    .footer-brand img {
      height: 56px;
      width: auto;
      margin-bottom: 18px;
      filter: brightness(0) invert(1);
    }

    .footer-brand p {
      font-size: 14px;
      line-height: 1.8;
      margin-bottom: 22px;
      color: rgba(255,255,255,0.6);
    }

    .social-links {
      display: flex;
      gap: 10px;
    }

    .social-link {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      transition: background 0.2s, transform 0.2s;
      text-decoration: none;
    }
    .social-link:hover {
      background: var(--orange);
      transform: translateY(-3px);
    }

    .footer-col h4 {
      font-family: 'Lilita One', cursive;
      font-size: 17px;
      font-weight: 700;
      color: white;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }
    .footer-col h4::after {
      content: '';
      position: absolute;
      left: 0; bottom: 0;
      width: 36px; height: 3px;
      border-radius: 2px;
      background: var(--yellow);
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-links a {
      font-size: 14px;
      color: rgba(255,255,255,0.6);
      transition: color 0.2s, padding-left 0.2s;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .footer-links a:hover {
      color: var(--yellow);
      padding-left: 4px;
    }

    .footer-contact-item {
      display: flex;
      gap: 12px;
      margin-bottom: 16px;
      align-items: flex-start;
    }
    .footer-contact-item .icon {
      font-size: 18px;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .footer-contact-item p {
      font-size: 14px;
      line-height: 1.6;
      color: rgba(255,255,255,0.6);
    }
    .footer-contact-item a {
      color: rgba(255,255,255,0.7);
      font-weight: 600;
      transition: color 0.2s;
    }
    .footer-contact-item a:hover { color: var(--yellow); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 20px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .footer-bottom p {
      font-size: 13px;
      color: rgba(255,255,255,0.4);
    }
    .footer-bottom a {
      color: var(--yellow);
      font-weight: 600;
    }

    /* Colorful footer top accent */
    .footer-rainbow {
      height: 5px;
      background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow), var(--green), var(--blue), var(--purple), var(--pink));
      margin-bottom: 0;
    }

    /* ===========================
       ANIMATIONS & UTILS
    =========================== */
    .reveal {
      opacity: 0;
      transform: translateY(36px);
    }

    .reveal-left {
      opacity: 0;
      transform: translateX(-40px);
    }

    .reveal-right {
      opacity: 0;
      transform: translateX(40px);
    }

    /* ===========================
       FLOATING CONFETTI DOTS
    =========================== */
    .confetti-dot {
      position: absolute;
      border-radius: 50%;
      animation: floatDot linear infinite;
      pointer-events: none;
      z-index: 0;
    }
    @keyframes floatDot {
      0%   { transform: translateY(0) rotate(0); opacity: 0.7; }
      100% { transform: translateY(-120px) rotate(360deg); opacity: 0; }
    }

    /* ===========================
       MEDIUM SCHOOL INFO SECTION
    =========================== */
    #medium-info {
      padding: 80px 0;
      background: white;
    }
    .medium-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      align-items: stretch;
    }
    .medium-card {
      border-radius: var(--radius-lg);
      padding: 44px 40px;
      position: relative;
      overflow: hidden;
    }
    .medium-card-blue {
      background: linear-gradient(135deg, #1A6FCC 0%, #0F4DA6 100%);
      color: white;
    }
    .medium-card-orange {
      background: linear-gradient(135deg, #F77F00 0%, #E83A1F 100%);
      color: white;
    }
    .medium-card .big-emoji {
      font-size: 80px;
      position: absolute;
      right: 30px;
      bottom: 20px;
      opacity: 0.18;
      line-height: 1;
    }
    .medium-card h3 {
      font-size: clamp(22px, 2.5vw, 32px);
      font-weight: 800;
      margin-bottom: 14px;
      position: relative;
      z-index: 2;
    }
    .medium-card p {
      font-size: 15px;
      line-height: 1.75;
      opacity: 0.88;
      margin-bottom: 24px;
      position: relative;
      z-index: 2;
      max-width: 320px;
    }
    .medium-badge {
      display: inline-block;
      background: rgba(255,255,255,0.22);
      border: 1.5px solid rgba(255,255,255,0.35);
      border-radius: 50px;
      padding: 6px 18px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.5px;
      position: relative;
      z-index: 2;
    }

    /* ===========================
       RESPONSIVE (basic)
    =========================== */
    @media (max-width: 900px) {
      #header { padding: 12px 24px; }
      nav { display: none; }
      .about-strip-inner { grid-template-columns: 1fr; gap: 40px; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .why-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
      .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
      .gi-1, .gi-2, .gi-3, .gi-4, .gi-5 { grid-column: auto; grid-row: auto; }
      .medium-inner { grid-template-columns: 1fr; }
      .testi-card { flex: 0 0 90%; }
      .admission-band-inner { flex-direction: column; text-align: center; }
    }
