/* <style> */
    :root{
    --primary:#2081F9;
    --secondary:#FF9000;
    --accent:#FF2F00;
    --dark:#0f172a;
    --light:#f8fafc;
    --gray:#64748b;
    }

    *{
    box-sizing:border-box;
    margin:0;
    padding:0;
    font-family:Segoe UI, Arial, sans-serif;
    }

    body{
    /* background:var(--light); */
    background: white;
    color:var(--dark);
    line-height:1.6;
    }

    html{
    scroll-behavior:smooth;
    }


    /* CONTAINER */
    .container{
    width:90%;
    max-width:1100px;
    margin:auto;
    }

    /* NAVBAR */
    nav{
    background:white;
    padding:15px 0;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
    position:sticky;
    top:0;
    z-index:1000;
    }

    nav .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    }


    /* NAVBAR */
    .nav-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    }

    .nav-menu{
    list-style:none;
    display:flex;
    gap:25px;
    }

    .nav-menu li a{
    text-decoration:none;
    color:var(--dark);
    font-weight:500;
    transition:0.3s;
    }

    .nav-menu li a:hover{
    color:var(--primary);
    }

    /* Hamburger */
    .hamburger{
    display:none;
    font-size:22px;
    cursor:pointer;
    color:var(--primary);
    }

    /* Responsive */
    @media(max-width:900px){

    .nav-menu{
        position:absolute;
        top:70px;
        right:0;
        background:white;
        flex-direction:column;
        width:220px;
        padding:20px;
        box-shadow:0 10px 25px rgba(0,0,0,0.1);
        display:none;
    }

    .nav-menu.active{
        display:flex;
    }

    .hamburger{
        display:block;
    }
    }

    .logo{
    font-weight:bold;
    font-size:20px;
    color:var(--primary);
    }


    .logo img{
    height:45px;
    width:auto;
    }




    /* HERO */

    /* HERO WITH SLIDER */
    .hero{
    position:relative;
    height:90vh;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center; /* horizontal center */
    text-align:center; /* center text */
    overflow:hidden;
    }

    .hero-content{
    position:relative;
    z-index:2;
    max-width:600px;
    }

    /* SLIDER */
    .slider{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:flex;
    animation:slide 15s infinite;
    }

    .slide{
    min-width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
    }


    /* Replace with your real images */
    .slide1{
    background-image:url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1600&q=80&auto=format');
    }

    .slide2{
    background-image:url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1600&q=80&auto=format');
    }

    .slide3{
    background-image:url('https://images.unsplash.com/photo-1492724441997-5dc865305da7?w=1600&q=80&auto=format');
    }


    /* overlay */
    .hero::after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
    /* background: rgba(32,129,249,0.5); */
    z-index:1;
    }

    /* animation */
    @keyframes slide{
    0%{transform:translateX(0);}
    33%{transform:translateX(0);}
    38%{transform:translateX(-100%);}
    66%{transform:translateX(-100%);}
    71%{transform:translateX(-200%);}
    100%{transform:translateX(-200%);}
    }

    /* .hero{
    background:linear-gradient(135deg,var(--primary),#4da3ff);
    color:white;
    padding:100px 0;
    } */

    .hero h1{
    font-size:42px;
    margin-bottom:10px;
    }

    .hero h2{
    font-size:24px;
    font-weight:400;
    margin-bottom:20px;
    }

    .hero p{
    max-width:600px;
    margin-bottom:30px;
    justify-content:center; /* horizontal center */
    text-align:center; /* center text */
    }

    .buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    justify-content:center; /* horizontal center */
    text-align:center; /* center text */
    }

    .btn{
    padding:12px 25px;
    border-radius:6px;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
    }

    .btn-primary{
    background:var(--secondary);
    color:white;
    }

    .btn-primary:hover{
    background:#e67e00;
    }

    .btn-secondary{
    background:white;
    color:var(--primary);
    }

    .btn-secondary:hover{
    background:#e2e8f0;
    }

    /* SECTION */
    section{
    padding:60px 0;
    }

    .section-title{
    font-size:28px;
    margin-bottom:20px;
    color:var(--primary);
    justify-content:center; /* horizontal center */
    text-align:center; /* center text */
    }

    .section-description{
    text-align:center;
    justify-content: center;
    max-width:700px;
    margin:0 auto;
    margin-bottom: 20px;
    }


    /* CARDS */
    /* .grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    } */

    .grid{
    display:grid;
    grid-template-columns:repeat(3, 300px);
    gap:20px;
    justify-content:center;
    }

    /* Tablet */
    @media(max-width:1000px){
    .grid{
        grid-template-columns:repeat(2, 300px);
    }
    }

    /* Mobile */
    @media(max-width:650px){
    .grid{
        grid-template-columns:repeat(1, 300px);
    }
    }


    /* .card{
    background:white;
    padding:20px;
    border-radius:10px;
    box-shadow:0 4px 15px rgba(0,0,0,0.05);
    transition:0.3s;
    }

    .card:hover{
    transform:translateY(-5px);
    }

    .card h3{
    color:var(--primary);
    margin-bottom:10px;
    } */

    .card{
    background:white;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
    transition:0.3s;
    }

    .card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
    }

    .card img{
    width:100%;
    height:180px;
    object-fit:cover;
    }

    .card-content{
    padding:20px;
    }

    .card-content h3{
    color:var(--primary);
    margin-bottom:8px;
    }

    .card-content p{
    color:var(--gray);
    font-size:14px;
    }


    /* BENEFITS LIST */
    .list{
    list-style:none;
    }

    .list li{
    padding:10px 0;
    border-bottom:1px solid #eee;
    }

    .split{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    }

    .reverse{
    flex-direction:row-reverse;
    }

    .split .text{
    flex:1;
    padding-left:50px; /* geser ke kanan */
    }

    .split .image{
    flex:1;
    text-align:center;
    }

    .split img{
    max-width:100%;
    width:350px;
    animation:float 4s ease-in-out infinite;
    }

    /* Floating animation */
    @keyframes float{
    0%{transform:translateY(0px);}
    50%{transform:translateY(-15px);}
    100%{transform:translateY(0px);}
    }

    /* Checklist Style */
    .check-list{
    list-style:none;
    padding:0;
    margin-top:20px;
    }

    .check-list li{
    margin-bottom:15px;
    font-size:16px;
    position:relative;
    padding-left:30px;
    }

    .check-list li::before{
    content:"✔";
    position:absolute;
    left:0;
    color:var(--primary);
    font-weight:bold;
    }

    @media(max-width:900px){

    .split{
        flex-direction:column;
        text-align:center;
    }

    .split .image{
        order:1;
    }

    .split .text{
        order:2;
        padding-left:0; /* reset padding */
    }

    }


    @media(max-width:900px){

    .check-list{
        display:inline-block;
        text-align:left;
    }

    }


    /* TIMELINE */
    .timeline{
    border-left:4px solid var(--primary);
    padding-left:20px;
    }

    .timeline-item{
    margin-bottom:20px;
    }

    .timeline-item strong{
    color:var(--secondary);
    }

    /* CTA SECTION */
    .cta{
    background:var(--primary);
    color:white;
    text-align:center;
    padding:60px 20px;
    }

    /* LOCATION */

    .location-section{
    padding:80px 0;
    }

    /* .location-split{
    display:flex;
    align-items:center;
    gap:60px;
    }

    .map{
    flex:1;
    }

    .location-info{
    flex:1;
    } */

    .location-split{
    display:flex;
    align-items:center;
    gap:50px;
    }

    .map{
    flex:1;
    }

    /* .map iframe{
    width:100%;
    height:400px;
    border-radius:15px;
    } */
    /* 
    .map iframe{
    box-shadow:0 20px 40px rgba(0,0,0,0.1);
    } */


    .location-info{
    flex:1;
    }


    .map iframe{
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
    }

    /* @media(max-width:900px){

    .location-split{
        flex-direction:column;
    }

    .map{
        order:1;
    }

    .location-info{
        order:2;
        text-align:center;
    }

    } */

    @media(max-width:900px){

    .location-split{
        flex-direction:column;
    }

    .location-info{
        order:1;
    }

    .map{
        order:2;
        margin-top:25px;
        display:flex;
        justify-content:center;
    }

    .map iframe{
        width:90%;       /* lebih kecil dari layar */
        height:250px;
    }
    }




    /* FAQ */
    /* .faq-item{
    margin-bottom:15px;
    } */

    /* FAQ DROPDOWN */
    .faq-item{
    background:white;
    margin-bottom:10px;
    border-radius:8px;
    box-shadow:0 4px 10px rgba(0,0,0,0.05);
    overflow:hidden;
    }

    .faq-item summary{
    padding:18px;
    cursor:pointer;
    font-weight:bold;
    color:var(--primary);
    list-style:none;
    position:relative;
    }

    .faq-item summary::after{
    content:"+";
    position:absolute;
    right:20px;
    font-size:20px;
    transition:0.3s;
    }

    .faq-item[open] summary::after{
    content:"−";
    }

    .faq-item p{
    padding:0 18px 18px 18px;
    color:var(--gray);
    }


    /* FOOTER */
    /* footer{
    background:var(--primary);
    color:white;
    text-align:center;
    padding:30px;
    }

    .socials a{
    color:white;
    margin:0 10px;
    text-decoration:none;
    } */
    /* 
    footer{
    background:var(--primary);
    color:white;
    padding:40px 20px;
    }

    .footer-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
    }

    .footer-logo h2{
    color:white;
    }

    .footer-logo p{
    color:white;
    font-size:14px;
    }

    .footer-socials{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    }

    .footer-socials a{
    color:white;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:8px;
    transition:0.3s;
    }

    .footer-socials a:hover{
    color:var(--secondary);
    }

    .footer-socials i{
    font-size:20px;
    }

    .copyright{
    text-align:center;
    color:white;
    font-size:14px;
    } */

    footer{
    background:var(--primary);
    color:white;
    padding:50px 20px;
    }

    .footer-content{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:40px;
    }

    .footer-logo h2{
    margin-bottom:5px;
    }

    .footer-logo p{
    color:white;
    font-size:14px;
    }

    .footer-section{
    display:flex;
    flex-direction:column;
    gap:10px;
    }

    .footer-section h3{
    margin-bottom:10px;
    font-size:16px;
    }

    .footer-section a{
    color:white;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:10px;
    transition:0.3s;
    }

    .footer-section a:hover{
    color:var(--secondary);
    }

    .footer-section i{
    font-size:18px;
    width:20px;
    }

    .copyright{
    text-align:center;
    color:white;
    font-size:14px;
    margin-top:20px;
    }

    /* Mobile */
    @media(max-width:768px){
    .footer-content{
        flex-direction:column;
    }
    }



    /* RESPONSIVE */
    @media(max-width:768px){
    .hero h1{
        font-size:32px;
    }
    }

    .lang-switch a{
    padding:6px 12px;
    border:1px solid var(--primary);
    border-radius:20px;
    font-size:14px;
    transition:0.3s;
    }

    .lang-switch a:hover{
    background:var(--primary);
    color:white !important;
    }



/* </style> */