/* ========================================================= */
/* RESET */
/* ========================================================= */

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

html{
    scroll-behavior:smooth;
}

body{
    background:#ffffff;
    color:#333333;
    font-family:'Nunito', Arial, Helvetica, sans-serif;
    line-height:1.6;
}

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

a{
    text-decoration:none;
}

/* ========================================================= */
/* LAYOUT */
/* ========================================================= */

.container{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding-left:20px;
    padding-right:20px;
}

/* ========================================================= */
/* HEADER */
/* ========================================================= */

#site-header{
    background:#ffffff;
    padding-top:18px;
    padding-bottom:18px;
    border-bottom:4px solid #ffe34d;
    position:sticky;
    top:0;
    z-index:100;
    box-shadow:0 2px 12px rgba(0,0,0,.07);
}

.header-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.logo{
    width:260px;
    height:auto;
}

.main-menu{
    background:#48a5ff;
    padding:14px 18px;
    border-radius:25px;
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    justify-content:center;
    box-shadow:0 6px 18px rgba(72,165,255,.28);
}

.menu-item{
    background:#ffffff;
    color:#333333;
    font-weight:800;
    font-size:15px;
    padding:10px 16px;
    border-radius:14px;
    transition:background .2s, color .2s, transform .15s;
    display:flex;
    align-items:center;
    gap:7px;
}

.menu-icon{
    width:18px;
    height:18px;
    flex-shrink:0;
}

.menu-item:hover{
    background:#ffe34d;
    transform:translateY(-2px);
}

.menu-item.active{
    background:#ffeef6;
    color:#ff6ab0;
}

/* ========================================================= */
/* HERO */
/* ========================================================= */

#hero-section{
    background:#fff6db;
    padding-top:55px;
    padding-bottom:55px;
    position:relative;
    overflow:hidden;
}

/* Subtle dot pattern background */
#hero-section::before{
    content:'';
    position:absolute;
    inset:0;
    background-image:radial-gradient(circle, #ffd84d22 1.5px, transparent 1.5px);
    background-size:32px 32px;
    pointer-events:none;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
    position:relative;
}

.hero-left h1{
    font-size:54px;
    line-height:1.05;
    color:#2b8cff;
    font-weight:900;
    margin-bottom:22px;
    letter-spacing:-1px;
}

.hero-left h1 span{
    color:#ff6ab0;
    display:block;
}

.learning-banner{
    display:inline-block;
    background:#66c95d;
    color:#ffffff;
    padding:12px 24px;
    border-radius:30px;
    font-size:26px;
    font-weight:900;
    margin-bottom:28px;
    letter-spacing:.5px;
    box-shadow:0 4px 14px rgba(102,201,93,.35);
}

.subject-badges{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.badge{
    padding:10px 20px;
    border-radius:30px;
    font-weight:900;
    color:#ffffff;
    font-size:15px;
    letter-spacing:.5px;
    transition:transform .2s, box-shadow .2s;
}

.badge:hover{
    transform:translateY(-3px);
    box-shadow:0 6px 16px rgba(0,0,0,.15);
}

.badge-pink{background:#ff6ab0;}
.badge-yellow{background:#f7c600; color:#333;}
.badge-blue{background:#4da6ff;}
.badge-purple{background:#9d65ff;}
.badge-green{background:#66c95d;}
.badge-cyan{background:#00bcd4;}

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

.hero-children{
    max-width:460px;
    margin:auto;
    animation:float 4s ease-in-out infinite;
}

@keyframes float{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-10px);}
}

/* ========================================================= */
/* PROGRAMS */
/* ========================================================= */

#programs-section{
    padding-top:70px;
    padding-bottom:70px;
}

.section-title{
    text-align:center;
    font-size:38px;
    font-weight:900;
    margin-bottom:50px;
    color:#333333;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
}

.title-deco{
    color:#ff6ab0;
    font-size:22px;
}

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

.program-card{
    background:#ffffff;
    border:3px solid #f0f0f0;
    border-radius:24px;
    padding:28px 22px;
    text-align:center;
    transition:transform .2s, box-shadow .2s, border-color .2s;
}

.program-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,.1);
    border-color:#4da6ff;
}

.program-icon{
    width:64px;
    height:64px;
    margin:0 auto 16px;
}

.program-icon svg{
    width:100%;
    height:100%;
}

.program-card h3{
    margin-bottom:10px;
    color:#333333;
    font-size:16px;
    font-weight:800;
}

.program-card p{
    color:#777777;
    font-size:14px;
    line-height:1.5;
}

/* ========================================================= */
/* CONTENT AREA */
/* ========================================================= */

#generic-content{
    padding-top:40px;
    padding-bottom:80px;
}

.content-box{
    background:#fafafa;
    border:2px dashed #e0e0e0;
    border-radius:24px;
    padding:40px;
    display:flex;
    align-items:center;
    gap:30px;
    position:relative;
    overflow:hidden;
}

.content-deco{
    width:60px;
    flex-shrink:0;
    opacity:.85;
}

.content-deco svg{
    width:100%;
    height:auto;
}

.content-text{
    flex:1;
}

.content-box h2{
    font-size:36px;
    font-weight:900;
    margin-bottom:12px;
    color:#333;
}

.content-box h3{
    font-size:20px;
    color:#4da6ff;
    font-weight:700;
    margin-bottom:18px;
}

.content-box p{
    margin-bottom:12px;
    color:#666;
}

.content-note{
    background:#ff6ab0;
    color:#fff;
    font-size:13px;
    font-weight:700;
    padding:12px 16px;
    border-radius:14px;
    max-width:180px;
    text-align:center;
    line-height:1.4;
    position:relative;
    flex-shrink:0;
}

.content-note::before{
    content:'';
    position:absolute;
    left:-14px;
    top:50%;
    transform:translateY(-50%);
    border:7px solid transparent;
    border-right-color:#ff6ab0;
}

/* ========================================================= */
/* FOOTER */
/* ========================================================= */

.footer-contact-bar{
    background:#66c95d;
    color:#ffffff;
    padding-top:40px;
    padding-bottom:40px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-bottom:30px;
}

.footer-item{
    display:flex;
    align-items:center;
    gap:14px;
}

.footer-icon{
    width:44px;
    height:44px;
    flex-shrink:0;
}

.footer-icon svg{
    width:100%;
    height:100%;
}

.footer-item strong{
    font-size:14px;
}

.footer-item div:last-child{
    font-size:13px;
    line-height:1.5;
}

.social-links{
    text-align:center;
    padding-top:10px;
    border-top:1px solid rgba(255,255,255,.25);
    display:flex;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
}

.social-links a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:46px;
    height:46px;
    border-radius:12px;
    transition:transform .2s, opacity .2s;
}

.social-links a svg{
    width:22px;
    height:22px;
}

.social-links a:hover{
    transform:scale(1.12);
    opacity:.9;
}

.social-fb{background:#1877f2;}
.social-ig{background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);}
.social-yt{background:#ff0000;}
.social-wa{background:#25d366;}

.copyright{
    background:#4ba145;
    color:#ffffff;
    text-align:center;
    padding:16px;
    font-size:14px;
    font-weight:700;
}

/* ========================================================= */
/* TABLET */
/* ========================================================= */

@media(max-width:992px){
    .hero-grid{
        grid-template-columns:1fr;
        text-align:center;
    }
    .hero-left h1{font-size:44px;}
    .subject-badges{justify-content:center;}
    .program-grid{grid-template-columns:repeat(2,1fr);}
    .footer-grid{grid-template-columns:repeat(2,1fr);}
    .content-note{display:none;}
}

/* ========================================================= */
/* MOBILE */
/* ========================================================= */

@media(max-width:768px){
    .header-row{flex-direction:column;}
    .logo{width:200px;}
    .main-menu{width:100%;}
    .menu-item{flex:1;min-width:120px;justify-content:center;}
    .hero-left h1{font-size:34px;}
    .learning-banner{font-size:20px;}
    .section-title{font-size:28px;}
    .program-grid{grid-template-columns:1fr;}
    .footer-grid{grid-template-columns:1fr;}
    .content-box{flex-direction:column;text-align:center;}
    .content-deco{display:none;}
}

/* ========================================================= */
/* SMALL MOBILE */
/* ========================================================= */

@media(max-width:480px){
    .hero-left h1{font-size:26px;}
    .learning-banner{font-size:17px;}
    .badge{width:100%;text-align:center;}
    .menu-item{width:100%;}
}
