.hero{
    position:relative;
    overflow:hidden;
    isolation:isolate;
    width:100vw;
    margin-left:calc(50% - 50vw);
    min-height:auto;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:56px 20px 64px;
    color:#fff;
    background:
    linear-gradient(
        135deg,
        #07101f 0%,
        #10243c 55%,
        #17304f 100%
    );
}

.hero::before{
    content:none;
}

.hero-visual{
    position:relative;
    z-index:1;
    width:min(900px, 100%);
    margin:0 auto;
    border-radius:26px;
    overflow:hidden;
    background:#081426;
    border:1px solid rgba(200,169,107,.35);
    box-shadow:
    0 26px 70px rgba(0,0,0,.32);
}

.hero-image{
    position:relative;
    z-index:1;
    width:min(900px, 100%);
    height:auto;
    aspect-ratio:1030/550;
    object-fit:contain;
    object-position:center center;
    display:block;
    border-radius:26px;
    background:#081426;
    border:1px solid rgba(200,169,107,.35);
    box-shadow:
    0 26px 70px rgba(0,0,0,.32);
}

.hero-content{
    position:relative;
    z-index:1;
    width:auto;
    max-width:100%;
    margin:22px auto 0;
    padding:18px 22px;
    border-radius:999px;
    background:
    linear-gradient(
        135deg,
        rgba(7,16,31,.72),
        rgba(23,48,79,.72)
    );
    border:1px solid rgba(255,255,255,.14);
    backdrop-filter:blur(12px);
    box-shadow:
    0 16px 38px rgba(0,0,0,.20),
    inset 0 1px 0 rgba(255,255,255,.10);
}

.hero .hero-badge,
.hero h1,
.hero-description{
    display:none;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 22px;
    border-radius:999px;
    background:rgba(200,169,107,.18);
    border:1px solid rgba(200,169,107,.45);
    color:#ffd89b;
    font-size:14px;
    font-weight:500;
    margin-bottom:28px;
    backdrop-filter:blur(10px);
    box-shadow:0 8px 20px rgba(0,0,0,.2);
}

.hero h1{
    font-size:64px;
    line-height:1.15;
    font-weight:700;
    margin-bottom:28px;
    letter-spacing:-1px;
    text-shadow:
        0 4px 15px rgba(0,0,0,.5),
        0 8px 30px rgba(0,0,0,.4);
    color:#ffffff;
}

.hero-description{
    max-width:720px;
    margin:auto;
    font-size:18px;
    line-height:1.9;
    color:#f0f4f8;
    margin-bottom:42px;
    text-shadow:
        0 2px 8px rgba(0,0,0,.4);
}

.hero-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
}

@media(max-width:768px){
    .hero{
        min-height:auto;
        padding:34px 16px 52px;
    }

    .hero-visual{
        border-radius:18px;
    }

    .hero-image{
        border-radius:18px;
    }

    .hero-content{
        width:100%;
        margin-top:16px;
        padding:14px;
        border-radius:18px;
    }

    .hero h1{
        font-size:38px;
        line-height:1.25;
    }

    .hero-description{
        font-size:16px;
        line-height:1.8;
    }

    .hero-buttons{
        flex-direction:column;
        width:100%;
    }

    .hero-buttons a{
        width:100%;
        max-width:300px;
    }
    .hero-buttons a{
        width:100%;
        max-width:320px;
    }
}

.services-section{

    padding:75px 20px;

    background:#ffffff;

}

.services-section h2{

    text-align:center;

    font-size:42px;

    color:var(--primary);

    margin-bottom:50px;

}

.service-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}

.service-card{

    background:#fff;

    border-radius:28px;

    padding:40px;

    border:1px solid rgba(200,169,107,.15);

    box-shadow:
    0 15px 35px rgba(0,0,0,.05);

    transition:.4s;

}

.service-card:hover{

    transform:translateY(-10px);

    border-color:var(--gold);

    box-shadow:
    0 25px 50px rgba(0,0,0,.12);

}

.service-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        #c8a96b,
        #e0c389
    );

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    margin-bottom:25px;

}

.service-card h3{

    font-size:24px;

    color:var(--primary);

    margin-bottom:15px;

}

.service-card p{

    color:var(--text-soft);

    line-height:1.9;

    margin-bottom:25px;

}

.service-link{
    color:var(--gold);
    font-weight:600;
    text-decoration:none;
}

/* QUOTE SECTION */
.quote-section{
    padding:70px 20px;
    background:linear-gradient(135deg, #f5f3f0, #faf8f5);
}

.quote-section .container{
    max-width:1000px;
    margin:0 auto;
}

.quote-box{
    max-width:900px;
    margin:auto;
    background:white;
    padding:60px;
    border-radius:30px;
    box-shadow:
    0 20px 60px rgba(0,0,0,.12);
    border-left:6px solid var(--gold);
}

.quote-box blockquote{
    font-size:22px;
    font-style:italic;
    color:#17304f;
    line-height:1.8;
    margin:0 0 20px 0;
}

.quote-box span{
    display:block;
    color:#c8a96b;
    font-weight:600;
    text-align:right;
}

.intro-grid{
    display:grid;
    grid-template-columns:
    1.3fr 1fr;
    gap:60px;
    align-items:center;
}

.intro-list{
    list-style:none;
}

.intro-list li{
    margin-bottom:15px;
    font-size:18px;
}

.program-badge{
    display:inline-block;
    padding:6px 14px;
    border-radius:30px;
    background:#c8a96b;
    color:#17304f;
    font-size:12px;
    margin-bottom:15px;
    font-weight:600;
}
.academy-purpose{
    padding:80px 20px;
    background:linear-gradient(135deg, #ffffff 0%, #f8f4ee 100%);
}

.purpose-header{
    max-width:850px;
    margin:0 auto 50px;
    text-align:center;
}

.purpose-header h2{
    font-size:38px;
    color:#17304f;
    margin-bottom:20px;
}

.purpose-header p{
    font-size:18px;
    color:#64748b;
    line-height:1.9;
}

.purpose-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.purpose-card{
    background:linear-gradient(135deg, #ffffff, #faf7f2);
    padding:40px 35px;
    border-radius:24px;
    transition:.3s ease;
    border:1px solid rgba(200,169,107,.15);
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.purpose-card:hover{
    transform:translateY(-10px);
    border-color:var(--gold);
    box-shadow:0 15px 40px rgba(200,169,107,.12);
    background:linear-gradient(135deg, #fffbf5, #faf7f2);
}

.purpose-icon{
    font-size:48px;
    margin-bottom:25px;
    display:inline-block;
    padding:12px;
    background:rgba(200,169,107,.08);
    border-radius:12px;
}

.purpose-card h3{
    color:#17304f;
    margin-bottom:15px;
    font-size:24px;
    font-weight:600;
}

.purpose-card p{
    color:#64748b;
    line-height:1.8;
}

.featured-program{

    border:2px solid rgba(200,169,107,.25);

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #faf7f2
    );
}

.program-label{

    display:inline-block;

    padding:6px 14px;

    background:#c8a96b;

    color:#17304f;

    border-radius:30px;

    font-size:12px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:15px;
}

.featured-program{
    background:
    linear-gradient(
        135deg,
        #17304f,
        #244a76
    );

    color:white;

    border:2px solid #c8a96b;

    transform:scale(1.03);
}

.featured-program h3{
    color:white;
}

.program-label{
    display:inline-block;

    background:#c8a96b;

    color:#17304f;

    padding:8px 16px;

    border-radius:30px;

    font-size:12px;

    font-weight:700;

    margin-bottom:20px;
}

.program-highlight{
    list-style:none;
    padding:0;
    margin:20px 0;
}

.program-highlight li{
    margin-bottom:10px;
}

.featured-program .service-link{
    color:#f5d18d;
    font-weight:600;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.featured-program{
    grid-column:span 2;
}

.featured-program h3{
    font-size:36px;
}

.program-highlight{
    margin:25px 0;
    padding-left:20px;
}

.program-highlight li{
    margin-bottom:10px;
}

@media(max-width:768px){

    .service-grid{
        grid-template-columns:1fr;
    }

    .featured-program{
        grid-column:auto;
    }

}

/* Hilangkan jarak section terakhir ke footer */

main,
.site-main{
    margin-bottom:0;
    padding-bottom:0;
}

section:last-of-type{
    margin-bottom:0 !important;
}

.site-footer{
    margin-top:0 !important;
}

.no-gap-footer{
    margin-bottom:0 !important;
    padding-bottom:60px !important;
}

/* CTA langsung menempel footer */
.cta-program{

    background:
    linear-gradient(
        135deg,
        #17304f,
        #244a76
    );

    color:white;

    text-align:center;

    padding:140px 20px;
}

.cta-program h2{

    font-size:48px;

    margin-bottom:20px;
}

.cta-program p{

    max-width:750px;

    margin:auto auto 40px;

    line-height:1.9;
}

footer,
.site-footer{
    margin-top:0 !important;
}

main,
.site-content,
.content-area{
    margin-bottom:0 !important;
    padding-bottom:0 !important;
}

/* PROGRAM SECTION */
.program-section{
    padding:75px 20px;
    background:#ffffff;
}

.program-section h2{
    text-align:center;
    font-size:42px;
    color:#17304f;
    margin-bottom:50px;
    font-weight:700;
}

.program-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap:30px;
    max-width:1200px;
    margin:0 auto;
}

.program-card{
    background:linear-gradient(135deg, #f8f6f1, #faf8f3);
    padding:40px;
    border-radius:20px;
    border:1px solid rgba(200,169,107,.2);
    transition:.3s ease;
    position:relative;
    overflow:hidden;
}

.program-card:hover{
    transform:translateY(-8px);
    border-color:var(--gold);
    box-shadow:0 15px 40px rgba(200,169,107,.15);
}

.program-card h3{
    color:#17304f;
    font-size:24px;
    margin-bottom:15px;
    margin-top:0;
}

.program-card p{
    color:#64748b;
    line-height:1.8;
    font-size:16px;
}

.program-badge{
    position:absolute;
    top:20px;
    right:20px;
    display:inline-block;
    padding:8px 16px;
    border-radius:30px;
    background:var(--gold);
    color:#17304f;
    font-size:11px;
    font-weight:700;
    letter-spacing:1px;
}
