:root{
    --hero-buttons-pad: 11px;

    --advg-w: 1500px;
    --advg-h: 800px;

    --gap-between-sections: 70px;
}

/* Section */
section{
    padding:100px 24px;
    scroll-margin-top:140px;
}

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

.section-header h2{
    font-size:clamp(40px,5vw,68px);
    margin-bottom:20px;
}

.section-header p{
    max-width:800px;
    margin:auto;
    color:var(--muted);
    font-size:22px;
    line-height:1.6;
}

/* Hero */
.hero{
    min-height:100vh;

    display:flex;
    align-items:center;

    position:relative;
    overflow:hidden;
}

.hero::before{
    content:"";
    
    position:absolute;
    inset:0;
    
    background:
    linear-gradient(
        to right,
        rgba(0,0,0,.82),
        rgba(0,0,0,.45),
        rgba(0,0,0,.1)
        ),
        var(--hero-bg);
        
        background-size:cover;
        background-position:center;
        
        z-index:-1;
}

.hero-content{
    width:min(1400px,100%);
    color:white;
}

.hero h1{
    font-size:clamp(54px,7vw,110px);
    line-height:1;
    margin-bottom:30px;
}

.hero p{
    font-size:clamp(20px,2vw,32px);
    line-height:1.5;
    max-width:800px;
    margin-bottom:50px;
}

/* Buttons */
.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    margin-bottom:70px;
}

.btn{
    padding:18px 34px;
    border-radius:999px;
    font-size:20px;
    font-weight:700;
    transition:.25s;
}

.btn-primary{
    background:var(--yellow);
    color:var(--text);
}

.btn-primary:hover{
    background:var(--yellow-hover);
}

.btn-secondary{
    border:1px solid rgba(255,255,255,.3);
    color:white;
    backdrop-filter:blur(6px);
    background:rgba(255,255,255,.06);
}

.btn-secondary:hover{
    background:rgba(255,255,255,.16);
}

/* Trust indicators */
.trust-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(170px, 1fr));
    gap:20px;
}

.trust-card{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);

    padding:24px;
    border-radius:20px;

    backdrop-filter:blur(10px);

    color:white;
}

.trust-card i{
    font-size:36px;
    margin-bottom:16px;
    color:var(--yellow);
}

.trust-card h4{
    margin:0;
    font-size:20px;
}

/* About */
#logo_img {
    display: block;
    width: clamp(230px, 28vw, 350px);
    height: auto;
    margin: 0 auto;
}

.about-section{
    padding: 120px 24px;

    background: #F4F1EA;
}

.about-grid{
    display: grid;
    grid-template-columns: 0.85fr 1.35fr;

    gap: 80px;

    align-items: center;
}

.about-content{
    max-width: 680px;
}

.about-content h2{
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.1;

    margin-bottom: 36px;
}

.about-content p{
    font-size: clamp(20px, 1.4vw, 28px);

    line-height: 1.8;

    margin-bottom: 28px;

    color: #2A2A2A;
}

.about-image{
    background: white;

    padding: 14px;

    border-radius: 30px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.08);
}

.about-image img{
    width:100%;
    height:auto;

    display:block;

    border-radius:24px;

    cursor:pointer;

    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.about-image img:hover{
    transform: scale(1.02);
}

/* Stats */
.stats{
    background:var(--green);
    color:white;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

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

.stat-card h3{
    font-size:72px;
    margin:0;
    color:var(--yellow);
}

.stat-card p{
    font-size:22px;
}

/* Timeline */
.timeline{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:24px;
}

.timeline-card{
    background:var(--light);
    border-radius:var(--radius);
    padding:30px;
    box-shadow:var(--shadow);
}

.timeline-card span{
    font-size:18px;
    color:var(--green);
    font-weight:800;
}

.timeline-card h4{
    font-size:26px;
    margin:12px 0;
}

/* Gellery */
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,2fr));
    gap:18px;
}

.gallery-grid img{
    width:100%;
    aspect-ratio:4/3;

    object-fit:cover;

    border-radius:22px;
}

/* Activities */
.activities-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.activity-card{
    background:var(--light);
    padding:34px;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
}

.activity-card i{
    font-size:42px;
    color:var(--green);
    margin-bottom:20px;
}

.activity-card h4{
    font-size:28px;
    margin-bottom:14px;
}

.activity-card p{
    color:var(--muted);
    line-height:1.7;
}

/* Parent trust */
.parent-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:24px;
}

.parent-card{
    background:white;
    border-radius:24px;
    padding:32px;
    box-shadow:var(--shadow);
}

.parent-card h4{
    font-size:24px;
}

/* Reviews */
.reviews-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.review-card{
    background:white;
    padding:34px;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
}

.review-card p{
    line-height:1.8;
    color:var(--muted);
}

.review-author{
    margin-top:24px;
    font-weight:800;
}

/* FAQ */
.faq-item{
    background:white;
    margin-bottom:20px;
    border-radius:18px;
    padding:24px;
    box-shadow:var(--shadow);
}

.faq-item h4{
    margin:0 0 12px;
    font-size:24px;
}

/* CTA */

.cta{
    position:relative;
    overflow:hidden;
}

.cta::before{
    content:"";
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        rgba(0,0,0,.6),
        rgba(0,0,0,.6)),
    var(--cta-bg);

    background-size:cover;
    background-position:center;

    z-index:-1;
}

.cta-content{
    text-align:center;
    color:white;
}

.cta h2{
    font-size:clamp(44px,5vw,80px);
}

/* modal */
.image-modal{
    display: none;

    position: fixed;

    z-index: 9999;

    inset: 0;

    background: rgba(0,0,0,.92);

    justify-content: center;
    align-items: center;

    padding: 40px;
}

.image-modal.active{
    display: flex;
}

.modal-content{
    max-width: 95%;
    max-height: 95%;

    border-radius: 18px;
}

.close-modal{
    position: absolute;

    top: 30px;
    right: 40px;

    color: white;

    font-size: 54px;

    cursor: pointer;
}

@media(max-width: 1000px){
    .reviews-grid{
        display:grid;
        grid-template-columns:repeat(auto-fit,minmax(min(320px,100%),1fr));
        gap:30px;
    }

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

    .about-content{
        max-width: 100%;
    }

    section{
        padding:60px 16px;
    }

    .section-header{
        margin-bottom:40px;
    }

    .section-header h2{
        margin-bottom:12px;
    }
} 