﻿/* =============================================
   SIX SENSES PRESCHOOL — BABY THEME
   ============================================= */
:root {
    --primary: #FF6B9D;
    --secondary: #FFD700;
    --accent: #7EC8E3;
    --mint: #A8E6CF;
    --purple: #C9A0F5;
    --orange: #FFB347;
    --bg: #FFF9F0;
    --white: #ffffff;
    --text: #3D3D3D;
    --text-light: #777;
    --radius: 20px;
    --shadow: 0 8px 30px rgba(0,0,0,0.10);
    --shadow-h: 0 16px 45px rgba(0,0,0,0.15);
    --nav-h: 70px;
}

/* ── RESET ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito',sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    padding-top: var(--nav-h); /* space for fixed navbar */
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

/* ── BUBBLES BG ── */
.bubbles-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    opacity: .07;
    animation: floatBubble 12s ease-in-out infinite;
}

    .bubble:nth-child(1) {
        width: 220px;
        height: 220px;
        background: var(--primary);
        top: 8%;
        left: 4%;
        animation-delay: 0s
    }

    .bubble:nth-child(2) {
        width: 160px;
        height: 160px;
        background: var(--accent);
        top: 28%;
        right: 6%;
        animation-delay: 2s
    }

    .bubble:nth-child(3) {
        width: 130px;
        height: 130px;
        background: var(--mint);
        bottom: 18%;
        left: 12%;
        animation-delay: 4s
    }

    .bubble:nth-child(4) {
        width: 190px;
        height: 190px;
        background: var(--secondary);
        bottom: 8%;
        right: 8%;
        animation-delay: 6s
    }

    .bubble:nth-child(5) {
        width: 110px;
        height: 110px;
        background: var(--purple);
        top: 50%;
        left: 38%;
        animation-delay: 8s
    }

    .bubble:nth-child(6) {
        width: 95px;
        height: 95px;
        background: var(--orange);
        top: 68%;
        right: 28%;
        animation-delay: 3s
    }

@keyframes floatBubble {
    0%,100% {
        transform: translateY(0) scale(1)
    }

    50% {
        transform: translateY(-28px) scale(1.05)
    }
}

main, footer {
    position: relative;
    z-index: 1;
}

/* ══════════════════════════════════
   NAVBAR  —  FIXED, NO DOUBLE
══════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(14px);
    border-bottom: 3px solid var(--primary);
    box-shadow: 0 4px 20px rgba(255,107,157,0.15);
    z-index: 9999;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 2rem;
    display: inline-block;
    animation: spinStar 4s ease-in-out infinite;
}

@keyframes spinStar {
    0%,100% {
        transform: rotate(0deg)
    }

    50% {
        transform: rotate(20deg)
    }
}

.brand-name {
    font-family: 'Fredoka One',cursive;
    font-size: 1.5rem;
    color: var(--primary);
    line-height: 1;
}

.brand-sub {
    font-size: .7rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Desktop nav links */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

    .nav-links li a {
        display: block;
        padding: 9px 15px;
        border-radius: 50px;
        font-weight: 700;
        font-size: .9rem;
        color: var(--text);
        transition: all .25s;
    }

        .nav-links li a:hover {
            background: var(--primary);
            color: #fff;
            transform: translateY(-2px);
        }

.nav-enroll-btn {
    background: linear-gradient(135deg,var(--primary),#ff8cb5) !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(255,107,157,.4);
}

/* ── HAMBURGER ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: 2px solid var(--primary);
    border-radius: 10px;
    cursor: pointer;
    padding: 6px;
    transition: background .2s;
    z-index: 10001;
}

    .hamburger:hover {
        background: rgba(255,107,157,.1);
    }

.ham-line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 4px;
    transition: all .3s ease;
    transform-origin: center;
}
/* X animation */
.hamburger.open .ham-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.open .ham-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open .ham-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Overlay for mobile nav */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.35);
    z-index: 9998;
}

    .nav-overlay.show {
        display: block;
    }

/* ── MOBILE NAV DRAWER ── */
@media(max-width:768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 24px 40px;
        gap: 8px;
        box-shadow: -6px 0 30px rgba(0,0,0,.15);
        transition: right .35s cubic-bezier(.4,0,.2,1);
        z-index: 9999;
        border-radius: 20px 0 0 20px;
    }

        .nav-links.open {
            right: 0;
        }

        .nav-links li {
            width: 100%;
        }

            .nav-links li a {
                display: block;
                width: 100%;
                padding: 14px 18px;
                border-radius: 14px;
                font-size: 1rem;
            }

    .nav-enroll-btn {
        text-align: center;
        margin-top: 10px;
    }
}

/* ══════════════════════════════════
   HERO — Full Screen Split
══════════════════════════════════ */
.hero {
    min-height: calc(100vh - var(--nav-h));
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

/* Left side */
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px 60px 70px;
    position: relative;
    z-index: 2;
}

    .hero-content::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 20% 50%,rgba(255,107,157,.07) 0%,transparent 70%);
        pointer-events: none;
    }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg,#FFE0EC,#FFD6F2);
    color: var(--primary);
    font-weight: 800;
    font-size: .85rem;
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 22px;
    border: 2px solid rgba(255,107,157,.3);
    width: fit-content;
    animation: badgePulse 2.5s ease-in-out infinite;
}

@keyframes badgePulse {
    0%,100% {
        box-shadow: 0 0 0 0 rgba(255,107,157,.4)
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255,107,157,0)
    }
}

.hero-title {
    font-family: 'Fredoka One',cursive;
    font-size: clamp(2.2rem,3.5vw,4rem);
    line-height: 1.15;
    margin-bottom: 18px;
}

.highlight {
    background: linear-gradient(135deg,var(--primary),var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Right side — baby illustration */
.hero-illustration {
    position: relative;
    min-height: calc(100vh - var(--nav-h));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

    .hero-illustration::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(160deg,#FFE8F4 0%,#FFF0FA 30%,#E8F5FF 60%,#E8FFE8 100%);
        z-index: 0;
    }

    .hero-illustration::after {
        content: '';
        position: absolute;
        left: -1px;
        top: 0;
        bottom: 0;
        width: 55px;
        background: var(--bg);
        clip-path: polygon(0 0,40% 0,100% 50%,40% 100%,0 100%);
        z-index: 2;
    }

.deco-ring {
    position: absolute;
    border-radius: 50%;
    border: 3px dashed rgba(255,107,157,.2);
    animation: spinRing 20s linear infinite;
    z-index: 1;
    top: 50%;
    left: 50%;
}

    .deco-ring.r1 {
        width: 500px;
        height: 500px;
        transform: translate(-50%,-50%)
    }

    .deco-ring.r2 {
        width: 370px;
        height: 370px;
        transform: translate(-50%,-50%);
        border-color: rgba(126,200,227,.25);
        animation-direction: reverse;
        animation-duration: 15s
    }

    .deco-ring.r3 {
        width: 250px;
        height: 250px;
        transform: translate(-50%,-50%);
        border-color: rgba(201,160,245,.3);
        animation-duration: 10s
    }

@keyframes spinRing {
    from {
        transform: translate(-50%,-50%) rotate(0deg)
    }

    to {
        transform: translate(-50%,-50%) rotate(360deg)
    }
}

.hero-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(255,107,157,.18) 0%,rgba(201,160,245,.1) 50%,transparent 75%);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%,100% {
        transform: translate(-50%,-50%) scale(1)
    }

    50% {
        transform: translate(-50%,-50%) scale(1.15)
    }
}

.baby-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    height: calc(100vh - var(--nav-h));
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.baby-body {
    font-size: clamp(16rem,26vw,32rem);
    line-height: 1;
    filter: drop-shadow(-18px 28px 38px rgba(255,107,157,.3));
    animation: babyBounce 3s ease-in-out infinite;
    transform-origin: bottom center;
    user-select: none;
}

@keyframes babyBounce {
    0%,100% {
        transform: translateY(0) rotate(-2deg)
    }

    40% {
        transform: translateY(-16px) rotate(2deg)
    }

    70% {
        transform: translateY(-8px) rotate(-1deg)
    }
}

.baby-emoji {
    position: absolute;
    font-size: 2.8rem;
    z-index: 4;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,.12));
    animation: floatAround 4s ease-in-out infinite;
}

    .baby-emoji.e1 {
        top: 12%;
        left: 12%;
        animation-delay: 0s
    }

    .baby-emoji.e2 {
        top: 18%;
        right: 14%;
        animation-delay: .8s
    }

    .baby-emoji.e3 {
        top: 40%;
        left: 8%;
        animation-delay: 1.6s
    }

    .baby-emoji.e4 {
        top: 38%;
        right: 8%;
        animation-delay: 2.4s
    }

    .baby-emoji.e5 {
        top: 62%;
        left: 13%;
        animation-delay: 1.2s
    }

    .baby-emoji.e6 {
        top: 60%;
        right: 11%;
        animation-delay: 2s
    }

@keyframes floatAround {
    0%,100% {
        transform: translateY(0) scale(1)
    }

    50% {
        transform: translateY(-12px) scale(1.1)
    }
}

.baby-tag {
    position: absolute;
    background: #fff;
    border-radius: 50px;
    padding: 8px 18px;
    font-weight: 800;
    font-size: .82rem;
    box-shadow: 0 5px 18px rgba(0,0,0,.1);
    z-index: 5;
    white-space: nowrap;
    animation: floatTag 5s ease-in-out infinite;
}

    .baby-tag.t1 {
        top: 7%;
        left: 50%;
        transform: translateX(-50%);
        color: var(--primary);
        border: 2px solid rgba(255,107,157,.2)
    }

    .baby-tag.t2 {
        top: 30%;
        left: 4%;
        color: #7B5EA7;
        border: 2px solid rgba(201,160,245,.3);
        animation-delay: 1s
    }

    .baby-tag.t3 {
        top: 30%;
        right: 4%;
        color: #1A8DB5;
        border: 2px solid rgba(126,200,227,.3);
        animation-delay: 2s
    }

@keyframes floatTag {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.baby-tag.t1 {
    animation: floatTag1 5s ease-in-out infinite
}

@keyframes floatTag1 {
    0%,100% {
        transform: translateX(-50%) translateY(0)
    }

    50% {
        transform: translateX(-50%) translateY(-10px)
    }
}

/* ══════════════════════════════════
   SHARED SECTION STYLES
══════════════════════════════════ */
.section {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.alt-section {
    background: linear-gradient(135deg,#fff9f0,#ffe8f4);
}

    .alt-section .section {
        max-width: 1200px;
        margin: 0 auto;
    }

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg,#FFE0EC,#E8F5FF);
    color: var(--primary);
    font-weight: 800;
    font-size: .85rem;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Fredoka One',cursive;
    font-size: clamp(1.8rem,4vw,2.8rem);
    margin-bottom: 10px;
}

.section-sub {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 38px;
    max-width: 600px;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg,var(--primary),#ff8cb5);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(255,107,157,.4);
    transition: all .3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 28px rgba(255,107,157,.55);
        color: #fff;
    }

.btn-secondary {
    background: #fff;
    color: var(--primary);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    border: 2.5px solid var(--primary);
    transition: all .3s;
    display: inline-block;
}

    .btn-secondary:hover {
        background: var(--primary);
        color: #fff;
        transform: translateY(-3px);
    }

/* ══════════════════════════════════
   HERO STATS
══════════════════════════════════ */
.hero-stats {
    display: flex;
    gap: 24px;
    align-items: center;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: 'Fredoka One',cursive;
    font-size: 2.2rem;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: .8rem;
    color: var(--text-light);
    font-weight: 700;
}

.stat-divider {
    width: 2px;
    height: 40px;
    background: #eee;
    border-radius: 4px;
}

/* ══════════════════════════════════
   ABOUT GRID
══════════════════════════════════ */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 24px;
    margin-top: 40px;
}

.about-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 26px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all .3s;
    border: 2px solid transparent;
}

    .about-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-h);
        border-color: var(--primary);
    }

.card-icon {
    font-size: 3rem;
    margin-bottom: 14px;
    display: block;
}

.about-card h3 {
    font-family: 'Fredoka One',cursive;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.about-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: .95rem;
}

/* ══════════════════════════════════
   BATCH TIMINGS
══════════════════════════════════ */
.timing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 22px;
    margin-top: 38px;
}

.timing-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow);
    transition: all .3s;
    border-top: 5px solid;
}

    .timing-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-h);
    }

    .timing-card.playgroup {
        border-color: var(--primary)
    }

    .timing-card.nursery {
        border-color: var(--orange)
    }

    .timing-card.jrkg {
        border-color: var(--accent)
    }

    .timing-card.srkg {
        border-color: var(--purple)
    }

.timing-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.timing-icon {
    font-size: 2.4rem;
}

.timing-class {
    font-family: 'Fredoka One',cursive;
    font-size: 1.4rem;
}

.timing-age {
    font-size: .82rem;
    color: var(--text-light);
    font-weight: 600;
}

.timing-slots {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.slot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg);
    padding: 10px 14px;
    border-radius: 12px;
}

.slot-label {
    font-weight: 700;
    font-size: .85rem;
    color: var(--text-light);
}

.slot-time {
    font-weight: 800;
    font-size: .9rem;
}

/* ══════════════════════════════════
   FEES TABLE
══════════════════════════════════ */
.fees-table-wrap {
    overflow-x: auto;
    margin-top: 36px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.fees-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    min-width: 500px;
}

    .fees-table th {
        background: linear-gradient(135deg,var(--primary),#ff8cb5);
        color: #fff;
        font-family: 'Fredoka One',cursive;
        font-size: 1rem;
        padding: 18px 16px;
        text-align: center;
    }

        .fees-table th:first-child {
            text-align: left;
            border-radius: 20px 0 0 0;
        }

        .fees-table th:last-child {
            border-radius: 0 20px 0 0;
        }

    .fees-table td {
        padding: 15px 16px;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
        font-weight: 700;
        font-size: .93rem;
    }

    .fees-table tbody tr:last-child td {
        border-bottom: none;
    }

    .fees-table tbody tr:hover {
        background: #FFF5F9;
    }

.desc-cell {
    text-align: left !important;
}

    .desc-cell small {
        display: block;
        color: var(--text-light);
        font-size: .75rem;
        font-weight: 600;
    }

.total-row td {
    background: linear-gradient(135deg,#FFF0F5,#FFF5FF);
    font-family: 'Fredoka One',cursive;
    font-size: 1.05rem;
    color: var(--primary);
}

/* Installments */
.sub-heading {
    font-family: 'Fredoka One',cursive;
    font-size: 1.6rem;
    margin-top: 46px;
    margin-bottom: 22px;
}

.installment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(210px,1fr));
    gap: 18px;
    margin-bottom: 36px;
}

.inst-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 26px 22px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all .3s;
}

    .inst-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-h);
    }

.inst-1 {
    border-top: 4px solid var(--primary)
}

.inst-2 {
    border-top: 4px solid var(--accent)
}

.inst-3 {
    border-top: 4px solid var(--mint)
}

.inst-4 {
    border-top: 4px solid var(--purple)
}

.inst-badge {
    display: inline-block;
    background: #FFF0F5;
    color: var(--primary);
    font-size: .8rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.inst-title {
    font-family: 'Fredoka One',cursive;
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.inst-desc {
    color: var(--text-light);
    font-size: .9rem;
    line-height: 1.5;
}

.fees-note {
    background: linear-gradient(135deg,#FFF8E1,#FFF3E0);
    border-radius: 16px;
    padding: 18px 22px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    border-left: 4px solid var(--orange);
}

.note-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

/* ══════════════════════════════════
   DAYCARE
══════════════════════════════════ */
.daycare-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(190px,1fr));
    gap: 22px;
    margin-top: 38px;
}

.daycare-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all .3s;
    position: relative;
}

    .daycare-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-h);
    }

    .daycare-card.featured {
        border: 3px solid var(--primary);
        background: linear-gradient(135deg,#FFF0F5,#fff);
    }

.daycare-icon {
    font-size: 2.8rem;
    margin-bottom: 12px;
    display: block;
}

.daycare-type {
    font-family: 'Fredoka One',cursive;
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.daycare-price {
    font-family: 'Fredoka One',cursive;
    font-size: 1.9rem;
    color: var(--primary);
    margin-bottom: 8px;
}

    .daycare-price span {
        font-size: .88rem;
        color: var(--text-light);
    }

.daycare-desc {
    color: var(--text-light);
    font-size: .88rem;
    line-height: 1.5;
}

.popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg,var(--secondary),#FFA500);
    color: #fff;
    font-weight: 800;
    font-size: .78rem;
    padding: 4px 14px;
    border-radius: 50px;
    white-space: nowrap;
}

/* ══════════════════════════════════
   DOCUMENTS
══════════════════════════════════ */
.docs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.doc-item {
    background: #fff;
    border-radius: 14px;
    padding: 14px 22px;
    font-weight: 700;
    font-size: .93rem;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all .3s;
}

    .doc-item:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-h);
    }

    .doc-item span {
        font-size: 1.4rem;
    }

/* ══════════════════════════════════
   BRANCHES / CONTACT
══════════════════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 22px;
    margin-top: 36px;
    margin-bottom: 46px;
}

.branch-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    transition: all .3s;
    border-top: 5px solid var(--accent);
}

    .branch-card.main-branch {
        border-top-color: var(--primary);
    }

    .branch-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-h);
    }

.branch-badge {
    display: inline-block;
    background: #FFF0F5;
    color: var(--primary);
    font-weight: 800;
    font-size: .82rem;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.branch-card h3 {
    font-family: 'Fredoka One',cursive;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.branch-addr {
    color: var(--text-light);
    font-size: .9rem;
    line-height: 1.6;
    margin-bottom: 18px;
}
/* Call button — opens phone dialer */
.call-btn {
    display: inline-block;
    background: linear-gradient(135deg,var(--primary),#ff8cb5);
    color: #fff;
    padding: 11px 22px;
    border-radius: 50px;
    font-weight: 800;
    font-size: .9rem;
    box-shadow: 0 4px 14px rgba(255,107,157,.35);
    transition: all .3s;
}

    .call-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 22px rgba(255,107,157,.5);
        color: #fff;
    }

/* ══════════════════════════════════
   ENROLL FORM
══════════════════════════════════ */
.enroll-wrap {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    margin-top: 40px;
    align-items: start;
}

.enroll-form-box {
    background: #fff;
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

    .form-group.full-width {
        grid-column: 1/-1;
        margin-bottom: 18px;
    }

    .form-group label {
        font-weight: 800;
        font-size: .88rem;
        color: var(--text);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 16px;
        border: 2px solid #f0e8f5;
        border-radius: 12px;
        font-family: 'Nunito',sans-serif;
        font-size: .95rem;
        font-weight: 600;
        background: #FAFAFA;
        transition: border .2s;
        outline: none;
        width: 100%;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--primary);
            background: #fff;
        }

    .form-group textarea {
        resize: vertical;
    }

.submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    margin-top: 6px;
}

/* Quick call sidebar */
.quick-call-box {
    background: linear-gradient(135deg,var(--primary),var(--purple));
    border-radius: 24px;
    padding: 28px 22px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 16px 40px rgba(255,107,157,.3);
}

.qc-title {
    font-family: 'Fredoka One',cursive;
    font-size: 1.5rem;
}

.quick-call-box p {
    font-size: .9rem;
    opacity: .9;
}

.qc-call-btn {
    display: block;
    background: rgba(255,255,255,.2);
    border: 2px solid rgba(255,255,255,.4);
    color: #fff;
    padding: 14px 18px;
    border-radius: 16px;
    font-weight: 800;
    font-size: .88rem;
    line-height: 1.5;
    transition: all .3s;
    text-align: center;
}

    .qc-call-btn span {
        font-size: 1rem;
        opacity: .85;
    }

    .qc-call-btn:hover {
        background: rgba(255,255,255,.35);
        transform: translateY(-2px);
        color: #fff;
    }

.qc-whatsapp-btn {
    display: block;
    background: linear-gradient(135deg,#25D366,#128C7E);
    color: #fff;
    padding: 14px 18px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1rem;
    text-align: center;
    box-shadow: 0 4px 14px rgba(37,211,102,.4);
    transition: all .3s;
}

    .qc-whatsapp-btn:hover {
        transform: translateY(-2px);
        color: #fff;
    }

/* ══════════════════════════════════
   TOAST NOTIFICATION
══════════════════════════════════ */
.toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 800;
    font-size: .95rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
    z-index: 99999;
    animation: toastIn .4s ease, toastOut .4s ease 4.5s forwards;
    max-width: 90vw;
    text-align: center;
}

.toast-success {
    background: linear-gradient(135deg,#A8E6CF,#56CCF2);
    color: #1a5c3a;
}

.toast-error {
    background: linear-gradient(135deg,#FFB3BA,#FF8CB5);
    color: #7a0025;
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0)
    }
}

@keyframes toastOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        visibility: hidden
    }
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer {
    background: linear-gradient(135deg,#2D2D2D,#3D3D3D);
    padding: 36px 24px;
    text-align: center;
    color: #fff;
}

.footer-logo {
    font-family: 'Fredoka One',cursive;
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--secondary);
}

.footer p {
    color: rgba(255,255,255,.7);
    font-size: .9rem;
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media(max-width:1024px) {
    .hero-content {
        padding: 50px 36px 50px 50px;
    }
}

@media(max-width:900px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-content {
        padding: 50px 28px 36px;
        text-align: center;
        align-items: center;
    }

    .hero-subtitle {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-illustration {
        min-height: 60vh;
        order: -1;
    }

        .hero-illustration::after {
            display: none;
        }

    .baby-wrapper {
        height: 60vh;
    }

    .baby-body {
        font-size: clamp(11rem,38vw,17rem);
    }

    .baby-tag.t2, .baby-tag.t3 {
        display: none;
    }

    .enroll-wrap {
        grid-template-columns: 1fr;
    }
}

@media(max-width:600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: auto;
    }

    .fees-table th, .fees-table td {
        padding: 11px 8px;
        font-size: .82rem;
    }

    .section {
        padding: 56px 18px;
    }

    .baby-body {
        font-size: 9rem;
    }

    .hero-illustration {
        min-height: 50vh;
    }

    .baby-wrapper {
        height: 50vh;
    }

    .deco-ring.r1 {
        width: 280px;
        height: 280px
    }

    .deco-ring.r2 {
        width: 210px;
        height: 210px
    }

    .deco-ring.r3 {
        width: 140px;
        height: 140px
    }
}
