/* ═══════════════════════════════════════════════════════
   ADHYAYAN KIDS — Main Stylesheet
   Font: Baloo 2 (headings) + Nunito (body)
   Palette: Coral, Teal, Sunshine, Leaf, Lavender
   ═══════════════════════════════════════════════════════ */

:root {
    --coral: #FF6B6B;
    --teal: #4ECDC4;
    --sunshine: #FFD93D;
    --leaf: #6BCB77;
    --lavender: #A06CD5;
    --navy: #1A2B4A;
    --body-bg: #FAFBFF;
    --text: #2d3748;
    --text-muted: #718096;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,.10);
    --shadow-lg: 0 8px 40px rgba(0,0,0,.14);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: .3s cubic-bezier(.4,0,.2,1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    color: var(--text);
    background: var(--body-bg);
    line-height: 1.7;
}

h1, h2, h3, h4, h5 {
    font-family: 'Baloo 2', cursive;
    color: var(--navy);
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

/* ── Top Bar ─────────────────────────────────────────── */
.topbar {
    background: var(--navy);
    color: rgba(255,255,255,.85);
    font-size: 13px;
    padding: 7px 0;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.topbar-left {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

    .topbar-left span {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .topbar-left i {
        color: var(--sunshine);
    }

.topbar-right {
    display: flex;
    gap: 12px;
}

    .topbar-right a {
        color: rgba(255,255,255,.7);
        transition: color var(--transition);
        font-size: 14px;
    }

        .topbar-right a:hover {
            color: var(--sunshine);
        }

/* ── Navbar ──────────────────────────────────────────── */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 16px rgba(0,0,0,.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--transition);
}

    .navbar.scrolled {
        box-shadow: 0 4px 24px rgba(0,0,0,.14);
    }

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 2rem;
}

.brand-name {
    font-family: 'Baloo 2', cursive;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--coral);
    display: block;
    line-height: 1;
}

.brand-tagline {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 6px;
}

.nav-link {
    font-weight: 700;
    font-size: 15px;
    color: var(--text);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

    .nav-link:hover, .nav-link.active {
        color: var(--coral);
        background: #fff5f5;
    }

.nav-cta {
    background: var(--coral);
    color: var(--white) !important;
    padding: 9px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition);
    box-shadow: 0 4px 14px rgba(255,107,107,.4);
}

    .nav-cta:hover {
        background: #ff5252;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255,107,107,.5);
    }

.btn-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.nav-logo-img {
    height: 58px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
    display: block;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

    .nav-toggle span {
        width: 24px;
        height: 2.5px;
        background: var(--navy);
        border-radius: 2px;
        transition: all var(--transition);
    }

/* ── Hero Slider ─────────────────────────────────────── */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity .8s ease;
    display: flex;
    align-items: center;
}

    .slide.active {
        opacity: 1;
        z-index: 1;
    }

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,43,74,.75) 0%, rgba(26,43,74,.3) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 0 40px;
    color: var(--white);
}

    .slide-content h1, .slide-content h2, .slide-content h3 {
        color: #ffffff;
    }

.hero-default {
    background: linear-gradient(135deg, #1A2B4A 0%, #2d5a8e 50%, #1A2B4A 100%);
}

.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: .08;
    animation: float 6s ease-in-out infinite;
}

.s1 {
    width: 300px;
    height: 300px;
    background: var(--coral);
    top: -80px;
    right: 10%;
    animation-delay: 0s;
}

.s2 {
    width: 200px;
    height: 200px;
    background: var(--teal);
    top: 30%;
    right: 5%;
    animation-delay: 1s;
}

.s3 {
    width: 150px;
    height: 150px;
    background: var(--sunshine);
    bottom: 10%;
    right: 25%;
    animation-delay: 2s;
}

.s4 {
    width: 100px;
    height: 100px;
    background: var(--leaf);
    top: 20%;
    right: 35%;
    animation-delay: .5s;
}

.s5 {
    width: 80px;
    height: 80px;
    background: var(--lavender);
    bottom: 20%;
    right: 40%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%,100% {
        transform: translateY(0) rotate(0deg)
    }

    50% {
        transform: translateY(-20px) rotate(10deg)
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,211,61,.2);
    border: 1px solid rgba(255,211,61,.4);
    color: var(--sunshine);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    backdrop-filter: blur(4px);
}

.slide-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 14px;
    color: #ffffff;
}

    .slide-title .highlight {
        color: var(--coral);
    }

    .slide-title .highlight2 {
        color: var(--sunshine);
    }

.slide-sub {
    font-size: 1.1rem;
    opacity: .9;
    margin-bottom: 28px;
    max-width: 520px;
}

.slide-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-primary {
    background: var(--coral);
    color: var(--white);
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition);
    box-shadow: 0 4px 16px rgba(255,107,107,.45);
    border: none;
    cursor: pointer;
}

    .btn-primary:hover {
        background: #ff5252;
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(255,107,107,.5);
    }

.btn-ghost {
    background: rgba(255,255,255,.15);
    color: var(--white);
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid rgba(255,255,255,.4);
    backdrop-filter: blur(4px);
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .btn-ghost:hover {
        background: rgba(255,255,255,.25);
        border-color: rgba(255,255,255,.7);
    }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid var(--coral);
    color: var(--coral);
    font-weight: 700;
    font-size: 15px;
    transition: all var(--transition);
}

    .btn-outline:hover {
        background: var(--coral);
        color: var(--white);
    }

.hero-stats {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    padding: 20px 0 0;
    border-top: 1px solid rgba(255,255,255,.2);
}

    .hero-stats .stat-num {
        font-family: 'Baloo 2';
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--sunshine);
        display: block;
    }

    .hero-stats .stat-label {
        font-size: 12px;
        opacity: .75;
        font-weight: 600;
    }

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,.2);
    border: none;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: all var(--transition);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .slider-btn:hover {
        background: rgba(255,255,255,.35);
        transform: translateY(-50%) scale(1.1);
    }

    .slider-btn.prev {
        left: 20px;
    }

    .slider-btn.next {
        right: 20px;
    }

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    cursor: pointer;
    transition: all var(--transition);
}

    .dot.active {
        background: var(--white);
        width: 28px;
        border-radius: 5px;
    }

/* ── Notice Bar ──────────────────────────────────────── */
.notice-bar {
    background: var(--navy);
    color: var(--white);
    padding: 10px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.notice-label {
    background: var(--coral);
    padding: 4px 18px;
    font-weight: 800;
    font-size: 13px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-right: 20px;
    flex-shrink: 0;
}

.marquee-wrap {
    overflow: hidden;
    flex: 1;
}

.marquee-text {
    white-space: nowrap;
    display: inline-block;
    animation: marquee 35s linear infinite;
    font-size: 13px;
    font-weight: 600;
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* ── Features Strip ──────────────────────────────────── */
.features-strip {
    padding: 60px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 24px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius);
    background: var(--body-bg);
    transition: all var(--transition);
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(30px);
}

    .feature-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .feature-card:hover {
        transform: translateY(-8px);
        border-color: var(--clr, var(--coral));
        box-shadow: 0 12px 32px rgba(0,0,0,.1);
    }

.feature-icon {
    font-size: 2.4rem;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--clr) 12%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all var(--transition);
}

.feature-card:hover .feature-icon {
    background: color-mix(in srgb, var(--clr) 20%, transparent);
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 13.5px;
    color: var(--text-muted);
}

/* ── Section Headings ────────────────────────────────── */
.section-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--coral), var(--lavender));
    color: white;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 14px;
}

    .section-title em {
        color: var(--coral);
        font-style: normal;
    }

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

    .section-header p {
        color: var(--text-muted);
        font-size: 1.05rem;
    }

/* ── About Section ───────────────────────────────────── */
.about-section {
    padding: 80px 0;
}

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

.about-img-stack {
    position: relative;
    height: 400px;
}

.img-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 24px;
    text-align: center;
    min-width: 140px;
}

    .img-card p {
        font-size: 13px;
        font-weight: 700;
        color: var(--navy);
        margin-top: 8px;
    }

.card1 {
    top: 0;
    left: 0;
    transform: rotate(-3deg);
}

.card2 {
    top: 40px;
    right: 20px;
    transform: rotate(2deg);
}

.card3 {
    bottom: 40px;
    left: 40px;
    transform: rotate(-1deg);
}

.about-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--coral);
    color: white;
    border-radius: var(--radius);
    padding: 16px 20px;
    text-align: center;
    box-shadow: var(--shadow);
}

    .about-badge span {
        display: block;
        font-weight: 800;
        font-size: 1rem;
    }

.about-content .section-label {
    display: block;
    width: fit-content;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0 32px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .highlight-item i {
        color: var(--leaf);
        font-size: 18px;
        flex-shrink: 0;
    }

    .highlight-item span {
        font-size: 15px;
    }

/* ── Programs ────────────────────────────────────────── */
.programs-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f5 100%);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
}

.program-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    border-top: 4px solid var(--clr, var(--coral));
    box-shadow: var(--shadow);
    transition: all var(--transition);
    position: relative;
}

    .program-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

    .program-card.featured {
        background: var(--clrLight, #fffbeb);
        border-top-width: 6px;
    }

.program-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: var(--clr, var(--sunshine));
    color: var(--navy);
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 0 0 8px 8px;
}

.program-age {
    font-size: 12px;
    font-weight: 700;
    color: var(--clr, var(--coral));
    text-transform: uppercase;
    letter-spacing: .08em;
}

.program-icon {
    font-size: 2.8rem;
    margin: 12px 0;
}

.program-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.program-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.program-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 24px;
}

    .program-card ul li {
        font-size: 13.5px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 6px;
    }

        .program-card ul li::before {
            content: "✓";
            color: var(--clr, var(--coral));
            font-weight: 900;
        }

.program-btn {
    display: inline-block;
    background: var(--clr, var(--coral));
    color: white;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13.5px;
    transition: all var(--transition);
}

    .program-btn:hover {
        opacity: .9;
        transform: translateY(-2px);
    }

/* ── Stats Section ───────────────────────────────────── */
.stats-section {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--navy) 0%, #2d4a7a 100%);
    position: relative;
    overflow: hidden;
}

    .stats-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='2' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E") repeat;
    }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 32px;
    position: relative;
}

.stat-item {
    text-align: center;
    color: white;
}

    .stat-item span {
        font-family: 'Baloo 2';
        font-size: 3.2rem;
        font-weight: 800;
        color: var(--sunshine);
    }

    .stat-item p {
        font-size: 14px;
        font-weight: 700;
        opacity: .8;
        margin-top: 4px;
    }

/* ── Gallery Preview ─────────────────────────────────── */
.gallery-preview, .gallery-page {
    padding: 80px 0;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    aspect-ratio: 1;
    background: #eee;
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .4s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.08);
    }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,43,74,.55);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 8px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 1.8rem;
}

.gallery-overlay span {
    font-size: 13px;
    font-weight: 700;
    padding: 0 12px;
    text-align: center;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}

    .lightbox.open {
        display: flex;
    }

    .lightbox img {
        max-width: 90vw;
        max-height: 80vh;
        border-radius: var(--radius-sm);
        object-fit: contain;
    }

    .lightbox p {
        color: rgba(255,255,255,.8);
        font-size: 14px;
        margin-top: 12px;
    }

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    opacity: .8;
    transition: opacity var(--transition);
}

    .lightbox-close:hover {
        opacity: 1;
    }

.gallery-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 32px;
}

.filter-btn {
    padding: 8px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid transparent;
    background: var(--white);
    color: var(--text);
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

    .filter-btn:hover, .filter-btn.active {
        background: var(--coral);
        color: white;
        border-color: var(--coral);
        box-shadow: 0 4px 14px rgba(255,107,107,.4);
    }

/* ── Why Section ─────────────────────────────────────── */
.why-section {
    padding: 80px 0;
    background: var(--white);
}

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

.why-card {
    padding: 32px 24px;
    border-radius: var(--radius);
    background: var(--body-bg);
    position: relative;
    transition: all var(--transition);
    overflow: hidden;
}

    .why-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, var(--coral), var(--lavender));
        opacity: 0;
        transition: opacity var(--transition);
    }

    .why-card:hover::before {
        opacity: .05;
    }

    .why-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow);
    }

.why-num {
    font-family: 'Baloo 2';
    font-size: 3rem;
    font-weight: 800;
    color: var(--coral);
    opacity: .15;
    position: absolute;
    top: 12px;
    right: 20px;
    line-height: 1;
}

.why-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ── CTA Section ─────────────────────────────────────── */
.cta-section {
    padding: 60px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--coral) 0%, var(--lavender) 100%);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255,107,107,.35);
}

.cta-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    animation: float 4s ease-in-out infinite;
    font-size: 0;
    color: transparent;
}

.s1 {
    top: -20px;
    left: 5%;
    width: 120px;
    height: 120px;
    animation-delay: 0s
}

.s2 {
    top: 10%;
    right: 3%;
    width: 80px;
    height: 80px;
    animation-delay: 1s
}

.s3 {
    bottom: -20px;
    left: 12%;
    width: 100px;
    height: 100px;
    animation-delay: .5s;
    border-radius: 30%
}

.s4 {
    bottom: 10%;
    right: 12%;
    width: 60px;
    height: 60px;
    animation-delay: 1.5s;
    border-radius: 20%
}

.cta-box h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.cta-box p {
    font-size: 1.1rem;
    opacity: .9;
    margin-bottom: 32px;
}

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

.btn-white {
    background: white;
    color: var(--coral);
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition);
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

    .btn-white:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(0,0,0,.2);
    }

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,.6);
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition);
}

    .btn-outline-white:hover {
        background: rgba(255,255,255,.15);
        border-color: white;
    }

/* ── Footer ──────────────────────────────────────────── */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,.8);
    padding-top: 0;
    position: relative;
}

.footer-waves {
    line-height: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 60px 0 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

    .footer-brand .logo-icon {
        font-size: 1.8rem;
    }

    .footer-brand span {
        font-family: 'Baloo 2';
        font-size: 1.2rem;
        font-weight: 800;
        color: var(--white);
    }

.footer-col > p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 16px;
    font-weight: 800;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .footer-col ul li a {
        font-size: 14px;
        color: rgba(255,255,255,.7);
        transition: color var(--transition);
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .footer-col ul li a:hover {
            color: var(--sunshine);
        }

        .footer-col ul li a i {
            font-size: 11px;
            color: var(--coral);
        }

.contact-list li {
    display: flex;
    gap: 10px;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

    .contact-list li i {
        color: var(--coral);
        flex-shrink: 0;
        margin-top: 4px;
    }

    .contact-list li a {
        color: rgba(255,255,255,.8);
    }

        .contact-list li a:hover {
            color: var(--sunshine);
        }

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

    .footer-socials a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255,255,255,.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,.7);
        font-size: 14px;
        transition: all var(--transition);
    }

        .footer-socials a:hover {
            background: var(--coral);
            color: white;
            transform: translateY(-3px);
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,.5);
}

    .footer-bottom a {
        color: rgba(255,255,255,.5);
    }

        .footer-bottom a:hover {
            color: var(--sunshine);
        }

/* ── WhatsApp Float ──────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37,211,102,.5);
    transition: all var(--transition);
    animation: pulse-wa 2.5s infinite;
}

    .whatsapp-float:hover {
        transform: scale(1.1);
        background: #1fba5a;
    }

@keyframes pulse-wa {
    0%,100% {
        box-shadow: 0 4px 20px rgba(37,211,102,.5)
    }

    50% {
        box-shadow: 0 4px 30px rgba(37,211,102,.8)
    }
}

/* ── Page Hero ───────────────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--hero-clr, var(--coral)) 0%, color-mix(in srgb, var(--hero-clr, var(--coral)) 70%, var(--lavender)) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .page-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='3' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E") repeat;
    }

    .page-hero h1 {
        font-size: 2.8rem;
        position: relative;
    }

    .page-hero p {
        font-size: 1.1rem;
        opacity: .9;
        margin-top: 8px;
        position: relative;
    }

/* ── Contact Section ─────────────────────────────────── */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-form-wrap {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

    .contact-form-wrap h2 {
        font-size: 1.8rem;
        margin-bottom: 6px;
    }

    .contact-form-wrap > p {
        color: var(--text-muted);
        margin-bottom: 28px;
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

    .form-group label {
        font-size: 13.5px;
        font-weight: 700;
        color: var(--navy);
    }

.input-wrap {
    position: relative;
}

    .input-wrap i {
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-muted);
        font-size: 14px;
    }

.textarea-wrap i {
    top: 16px;
    transform: none;
}

.form-control {
    width: 100%;
    padding: 11px 14px 11px 40px;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-sm);
    font-family: 'Nunito', sans-serif;
    font-size: 14.5px;
    transition: all var(--transition);
    background: var(--body-bg);
    color: var(--text);
}

    .form-control:focus {
        outline: none;
        border-color: var(--coral);
        background: white;
        box-shadow: 0 0 0 3px rgba(255,107,107,.12);
    }

select.form-control {
    appearance: none;
    cursor: pointer;
}

textarea.form-control {
    resize: vertical;
}

.field-error {
    font-size: 12px;
    color: var(--coral);
    font-weight: 600;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 50px;
    background: var(--coral);
    color: white;
    font-family: 'Baloo 2';
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all var(--transition);
    box-shadow: 0 4px 16px rgba(255,107,107,.45);
}

    .btn-submit:hover {
        background: #ff5252;
        transform: translateY(-2px);
    }

.success-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f0fdf4;
    border: 2px solid #86efac;
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    margin-bottom: 28px;
}

    .success-banner i {
        font-size: 1.8rem;
        color: #22c55e;
    }

    .success-banner strong {
        display: block;
        color: #15803d;
        font-size: 1rem;
    }

    .success-banner p {
        color: #166534;
        font-size: 14px;
        margin-top: 2px;
    }

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--coral), var(--lavender));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-card h4 {
    font-size: .95rem;
    margin-bottom: 4px;
}

.info-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.info-card a {
    color: var(--coral);
    font-weight: 700;
    font-size: 14px;
}

.wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #25D366;
    color: white;
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    transition: all var(--transition);
}

    .wa-btn:hover {
        background: #1fba5a;
    }

/* ── About Detail Page ───────────────────────────────── */
.about-detail {
    padding: 80px 0;
}

.about-story {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

    .about-story p {
        font-size: 1.05rem;
        color: var(--text-muted);
        margin-bottom: 16px;
    }

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.mission-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.mission-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.mission-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.mission-card p {
    font-size: 14.5px;
    color: var(--text-muted);
}

.approach-section {
    margin-bottom: 60px;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: center;
    margin: 32px 0;
}

.approach-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.approach-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.approach-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.approach-card p {
    font-size: 14.5px;
    color: var(--text-muted);
}

.vs-divider {
    font-family: 'Baloo 2';
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--coral);
    background: #fff5f5;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--coral);
}

.approach-note {
    background: #fffbeb;
    border-left: 4px solid var(--sunshine);
    padding: 16px 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 15px;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

.team-stat {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

    .team-stat.featured {
        background: linear-gradient(135deg, var(--coral), var(--lavender));
        color: white;
    }

        .team-stat.featured .ts-label, .team-stat.featured p {
            color: rgba(255,255,255,.9);
        }

.ts-number {
    font-family: 'Baloo 2';
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--coral);
    line-height: 1;
}

.team-stat.featured .ts-number {
    color: var(--sunshine);
}

.ts-label {
    font-weight: 800;
    font-size: 1rem;
    display: block;
    margin: 8px 0 12px;
}

.team-stat p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ── Programs Detail ─────────────────────────────────── */
.programs-detail {
    padding: 80px 0;
}

.program-detail-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 32px;
    overflow: hidden;
}

    .program-detail-card.featured {
        border: 2px solid var(--clr, var(--sunshine));
    }

.pd-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    background: color-mix(in srgb, var(--clr, var(--coral)) 10%, transparent);
}

.pd-emoji {
    font-size: 3rem;
}

.pd-age {
    font-size: 13px;
    font-weight: 700;
    color: var(--clr, var(--coral));
    text-transform: uppercase;
    letter-spacing: .08em;
}

.pd-header h2 {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.popular-tag {
    background: var(--clr, var(--sunshine));
    color: var(--navy);
    font-size: 11px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 50px;
}

.pd-body {
    padding: 28px 32px;
}

    .pd-body > p {
        font-size: 15px;
        color: var(--text-muted);
        margin-bottom: 24px;
    }

.pd-features {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.pd-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
}

    .pd-feature i {
        color: var(--clr, var(--coral));
    }

/* ── Empty State ─────────────────────────────────────── */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

    .empty-state span {
        font-size: 4rem;
        display: block;
        margin-bottom: 16px;
    }

    .empty-state h3 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .empty-state p {
        color: var(--text-muted);
    }

/* ── Animate on scroll ───────────────────────────────── */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}

    .animate-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3,1fr);
    }

    .programs-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-img-stack {
        height: 250px;
        display: flex;
        gap: 12px;
        position: static;
    }

    .img-card {
        position: static;
        transform: none;
        flex: 1;
    }

    .about-badge {
        position: static;
        margin-top: 12px;
    }

    .pd-features {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 500px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 8px 30px rgba(0,0,0,.15);
        gap: 4px;
    }

        .nav-menu.open {
            display: flex;
        }

    .nav-toggle {
        display: flex;
    }

    .features-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .vs-divider {
        display: none;
    }

    .team-stats {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .topbar-left {
        flex-direction: column;
        gap: 4px;
        font-size: 11px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .pd-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .slide-content {
        padding: 0 20px;
    }

    .hero-slider {
        height: 440px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
