*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#faf6f2;
    color:#222;
}

.navbar{
    width:100%;
    padding:20px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:fixed;
    z-index:1000;
    background:rgba(0,0,0,0.5);
    backdrop-filter:blur(10px);
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    color:white;
    font-weight:600;
}

.logo img{
    width:50px;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:30px;
}

.nav-links a{
    text-decoration:none;
    color:white;
    transition:0.3s;
}

.nav-links a:hover{
    color:orange;
}

.btn-nav{
    background:orange;
    color:white;
    padding:12px 25px;
    border-radius:30px;
    text-decoration:none;
}

.hero{
    width:100%;
    height:100vh;
    background:url('../images/hero.jpg');
    background-size:cover;
    background-position:center;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
}

.hero-content{
    position:relative;
    color:white;
    text-align:center;
    z-index:2;
}

.hero-content h1{
    font-size:70px;
    margin-bottom:20px;
}

.hero-content p{
    font-size:24px;
}

.hero-info{
    margin-top:30px;
    display:flex;
    gap:20px;
    justify-content:center;
}

.hero-info span{
    background:rgba(255,255,255,0.2);
    padding:10px 20px;
    border-radius:30px;
}

.hero-btn{
    margin-top:40px;
}

.btn-primary,
.btn-secondary{
    padding:15px 35px;
    text-decoration:none;
    border-radius:30px;
    margin:10px;
}

.btn-primary{
    background:orange;
    color:white;
}

.btn-secondary{
    border:2px solid white;
    color:white;
}

section{
    padding:100px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:40px;
}

.about{
    display:flex;
    align-items:center;
    gap:50px;
}

.about-image img{
    width:500px;
    border-radius:20px;
}

.about-text p{
    margin-top:20px;
    line-height:1.8;
}

.business-list{
    margin-top:30px;
    display:flex;
    gap:20px;
}

.business-card{
    background:orange;
    color:white;
    padding:15px 20px;
    border-radius:15px;
}

.schedule-container,
.armada-container,
.agent-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

/* =========================
   SCHEDULE PREMIUM
========================= */

.schedule{
    background:#f8f9fc;
}

.schedule-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

    margin-top:50px;
}

/* CARD */

.schedule-card{

    position:relative;

    padding:40px 35px;

    border-radius:30px;

    overflow:hidden;

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,0.9),
        rgba(255,255,255,0.75)
    );

    backdrop-filter:blur(15px);

    box-shadow:
    0 10px 35px rgba(0,0,0,0.08);

    transition:0.5s;

    border:1px solid rgba(255,255,255,0.3);
}

/* TOP GLOW */

.schedule-card::before{

    content:"";

    position:absolute;

    width:180px;
    height:180px;

    background:rgba(255,165,0,0.15);

    border-radius:50%;

    top:-70px;
    right:-70px;
}

/* HOVER */

.schedule-card:hover{

    transform:translateY(-12px);

    box-shadow:
    0 20px 45px rgba(255,165,0,0.18);
}

/* TOP */

.schedule-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:30px;
}

.schedule-top i{

    font-size:28px;

    color:orange;
}

.schedule-top span{

    background:rgba(255,165,0,0.12);

    color:orange;

    padding:10px 18px;

    border-radius:50px;

    font-size:13px;

    font-weight:600;
}

/* TITLE */

.schedule-card h3{

    font-size:32px;

    margin-bottom:35px;

    color:#222;

    line-height:1.3;
}

/* TIME LIST */

.time-list{

    display:flex;

    gap:20px;

    margin-bottom:35px;
}

/* TIME BOX */

.time-box{

    flex:1;

    background:white;

    padding:25px 20px;

    border-radius:20px;

    text-align:center;

    box-shadow:
    0 8px 20px rgba(0,0,0,0.05);

    transition:0.4s;
}

.time-box:hover{

    transform:scale(1.05);
}

/* JAM */

.time-box p{

    font-size:32px;

    font-weight:700;

    color:orange;

    margin-bottom:5px;
}

/* KETERANGAN */

.time-box span{

    font-size:13px;

    letter-spacing:1px;

    color:#666;

    font-weight:600;
}

/* FOOTER */

.schedule-footer{

    display:flex;

    align-items:center;

    gap:10px;

    color:#666;

    font-size:14px;

    font-weight:500;
}

.schedule-footer i{
    color:orange;
}

.armada-card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
    transition:0.4s;
}

.armada-card:hover{
    transform:translateY(-10px);
}

.armada-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.armada-content{
    padding:25px;
}

.armada-info{
    display:flex;
    gap:10px;
    margin-top:20px;
}

.armada-info span{
    background:#f5f5f5;
    padding:8px 15px;
    border-radius:20px;
}

.facilities-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:30px;
}

/* =========================
   FACILITIES PREMIUM
========================= */

.facilities{

    background:
    linear-gradient(
        to bottom,
        #ffffff,
        #f8f9fc
    );

    position:relative;

    overflow:hidden;
}

/* TITLE */

.facilities .section-title h2{

    font-size:45px;

    margin-bottom:15px;

    color:#222;
}

.facilities .section-title p{

    color:#777;

    font-size:17px;
}

/* GRID */

.facilities-container{

    margin-top:70px;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(260px,1fr));

    gap:35px;
}

/* CARD */

.facility{

    position:relative;

    padding:45px 35px;

    border-radius:30px;

    background:
    rgba(255,255,255,0.75);

    backdrop-filter:blur(15px);

    border:
    1px solid rgba(255,255,255,0.3);

    overflow:hidden;

    transition:0.5s;

    box-shadow:
    0 10px 35px rgba(0,0,0,0.08);

    text-align:center;
}

/* GLOW EFFECT */

.facility::before{

    content:"";

    position:absolute;

    width:220px;
    height:220px;

    background:
    rgba(255,165,0,0.12);

    border-radius:50%;

    top:-100px;
    right:-100px;

    transition:0.5s;
}

/* HOVER */

.facility:hover{

    transform:
    translateY(-15px);

    box-shadow:
    0 20px 45px rgba(255,165,0,0.18);
}

.facility:hover::before{

    transform:scale(1.2);
}

/* ICON WRAPPER */

.facility-icon{

    width:95px;
    height:95px;

    margin:auto;

    border-radius:50%;

    display:flex;

    justify-content:center;
    align-items:center;

    background:
    linear-gradient(
        135deg,
        orange,
        #ff5722
    );

    box-shadow:
    0 10px 30px rgba(255,165,0,0.35);

    margin-bottom:30px;

    transition:0.4s;
}

/* ICON */

.facility-icon i{

    font-size:40px;

    color:white;
}

/* ICON HOVER */

.facility:hover .facility-icon{

    transform:
    rotate(10deg)
    scale(1.08);
}

/* TITLE */

.facility h3{

    font-size:24px;

    margin-bottom:15px;

    color:#222;
}

/* TEXT */

.facility p{

    color:#666;

    line-height:1.8;

    font-size:15px;
}

/* RESPONSIVE */



/* =========================
   GALLERY PREMIUM
========================= */

.gallery{

    background:
    linear-gradient(
        to bottom,
        #ffffff,
        #f8f9fc
    );
}

/* TITLE */

.gallery .section-title h2{

    font-size:45px;

    margin-bottom:15px;

    color:#222;
}

.gallery .section-title p{

    color:#777;

    font-size:17px;
}

/* GRID */

.gallery-container{

    margin-top:60px;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:30px;
}

/* CARD */

.gallery-card{

    position:relative;

    overflow:hidden;

    border-radius:30px;

    height:320px;

    cursor:pointer;

    box-shadow:
    0 10px 35px rgba(0,0,0,0.12);

    transition:0.5s;
}

/* IMAGE */

.gallery-card img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:0.7s;
}

/* OVERLAY */

.gallery-overlay{

    position:absolute;

    bottom:0;
    left:0;

    width:100%;

    padding:30px;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.1)
    );

    color:white;

    transform:translateY(100px);

    transition:0.5s;
}

/* TITLE */

.gallery-overlay h3{

    font-size:28px;

    margin-bottom:10px;
}

/* TEXT */

.gallery-overlay p{

    font-size:15px;

    line-height:1.7;

    color:#ddd;
}

/* HOVER EFFECT */

.gallery-card:hover img{

    transform:scale(1.12);
}

/* CARD FLOAT */

.gallery-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 45px rgba(0,0,0,0.2);
}

/* OVERLAY SHOW */

.gallery-card:hover .gallery-overlay{

    transform:translateY(0);
}

/* RESPONSIVE */

@media(max-width:768px){

    .gallery .section-title h2{

        font-size:35px;
    }

    .gallery-card{

        height:280px;
    }

    .gallery-overlay h3{

        font-size:24px;
    }

}

.agent-card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.agent-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.agent-content{
    padding:25px;
}

.agent-content a{
    display:inline-block;
    margin-top:20px;
    background:orange;
    color:white;
    padding:12px 25px;
    border-radius:30px;
    text-decoration:none;
}

footer{
    background:#111;
    color:white;
    text-align:center;
    padding:50px 20px;
}

.footer-logo img{
    width:80px;
}

.socials{
    margin-top:20px;
}

.socials a{
    color:white;
    font-size:25px;
    margin:0 10px;
}

.copy{
    margin-top:20px;
    color:#aaa;
}

.nav-links a.active{
    color:orange;
}

.about,
.schedule-card,
.armada-card,
.facility,
.gallery-container img,
.agent-card{

    opacity:0;
    transform:translateY(60px);
    transition:1s;
}

.show{
    opacity:1 !important;
    transform:translateY(0px) !important;
}

.navbar.sticky{
    background:#111;
    padding:15px 8%;
    transition:0.4s;
}

.progress-bar{
    position:fixed;
    top:0;
    left:0;
    width:0%;
    height:5px;
    background:orange;
    z-index:99999;
}


.mobile-active{
    display:flex !important;
    flex-direction:column;
}


.btn-primary,
.btn-secondary,
.btn-nav{
    transition:0.4s;
}


.hero{
    width:100%;
    height:100vh;
    position:relative;
    overflow:hidden;
}

.hero-slider{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:1.5s ease-in-out;
}

.slide.active{
    opacity:1;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
    padding:20px;
}

.hero-content h1{
    font-size:80px;
    font-weight:700;
    margin-bottom:20px;
    letter-spacing:2px;
}

.hero-content p{
    font-size:28px;
    margin-bottom:30px;
}

.hero-info{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    justify-content:center;
}

.hero-info span{
    background:rgba(255,255,255,0.15);
    backdrop-filter:blur(10px);
    padding:12px 25px;
    border-radius:50px;
    border:1px solid rgba(255,255,255,0.2);
}

.hero-btn{
    margin-top:40px;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;

    flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{

    display:flex;
    align-items:center;
    justify-content:center;

    min-width:190px;

    padding:15px 28px;

    border-radius:50px;

    text-decoration:none;

    font-size:15px;
    font-weight:600;

    transition:0.4s;
}


.btn-primary{
    background:orange;
    color:white;
    border:none;
}

.btn-primary:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(255,165,0,0.4);
}

.btn-secondary{
    border:2px solid white;
    color:white;
    background:transparent;
}

.btn-secondary:hover{
    background:white;
    color:black;
    transform:translateY(-5px);
}
.socials{
    margin-top:25px;
    display:flex;
    justify-content:center;
    gap:20px;
}

.socials a{
    width:55px;
    height:55px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    color:white;
    font-size:22px;
    transition:0.4s;
    text-decoration:none;
    backdrop-filter:blur(10px);
}

.socials a:hover{
    transform:translateY(-8px) scale(1.1);
    background:orange;
    box-shadow:0 10px 25px rgba(255,165,0,0.5);
}

.map-btn{
    background:#ff5722;
}

.map-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 20px rgba(255,87,34,0.4);
}

.hamburger{
    display:none;
    flex-direction:column;
    cursor:pointer;
    gap:6px;
}

.hamburger span{
    width:28px;
    height:3px;
    background:white;
    border-radius:10px;
    transition:0.4s;
}












.navbar{
    width:100%;
    padding:12px 7%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;

    background:rgba(29, 29, 29, 0.217);
    backdrop-filter:blur(10px);

    transition:0.4s;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    color:white;
    font-weight:600;
}

.logo img{
    width:42px;
}

.logo span{
    font-size:17px;
    letter-spacing:1px;
}
.nav-links{
    display:flex;
    list-style:none;
    gap:22px;
}

.nav-links a{
    text-decoration:none;
    color:white;
    font-size:15px;
    font-weight:500;
    transition:0.3s;
}
.btn-nav{
    background:orange;
    color:white;
    padding:10px 22px;
    border-radius:40px;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
    transition:0.4s;
}
.navbar.sticky{
    padding:10px 7%;
    background:rgba(0,0,0,0.85);
    box-shadow:0 5px 20px rgba(0,0,0,0.2);
}


/* =========================
   TABLET & MOBILE
========================= */

@media(max-width:991px){

    .navbar{

        padding:20px 5%;
        position:fixed;
        width:100%;
        top:0;
        left:0;

    }

    /* HIDE MENU */

    .nav-links{

        position:absolute;
        top:100%;
        left:0;

        width:100%;
        background:#111;

        flex-direction:column;

        align-items:center;

        gap:25px;

        padding:40px 0;

        display:none;
    }

    /* ACTIVE MOBILE MENU */

    .nav-links.active{
        display:flex;
    }

    /* HIDE BUTTON */

    .btn-nav{
        display:none;
    }

    /* SHOW HAMBURGER */

    .hamburger{
        display:flex;
    }

    .logo span{
        font-size:16px;
    }

}

@media(max-width:900px){

    .navbar{
        flex-direction:column;
        gap:20px;
    }

    .about{
        flex-direction:column;
    }

    .about-image img{
        width:100%;
    }

    .hero-content h1{
        font-size:45px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
    }

}


@media(max-width:480px){

    .hero-btn{

        display:flex;
        flex-direction:row;

        justify-content:center;
        align-items:center;

        gap:10px;

        flex-wrap:nowrap;
    }

    .btn-primary,
    .btn-secondary{

        width:auto;
        min-width:140px;

        padding:12px 18px;

        font-size:13px;
    }

}
@media(max-width:768px){

    .facilities .section-title h2{

        font-size:35px;
    }

    .facility{

        padding:40px 25px;
    }

}
.scroll-hint{
  position:absolute;
  bottom:20px;
  left:50%;
  transform:translateX(-50%);
  animation: bounce 1.5s infinite;
}

@keyframes bounce{
  0%,100%{
    transform:translateX(-50%) translateY(0);
  }
  50%{
    transform:translateX(-50%) translateY(10px);
  }
}
.footer-bottom{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    flex-wrap:wrap;

    margin-top:20px;
}

/* copyright */

.copy{

    margin:0;

    color:#d7deea;

    font-size:14px;
}

/* badge */

.radazdev-badge{

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    transition:0.4s;
}

/* image */

.radazdev-badge img{

    width:120px;

    height:auto;

    object-fit:contain;

    border-radius:12px;

    transition:0.4s;

    filter:
    drop-shadow(0 8px 20px rgba(77,168,255,0.18));
}

/* hover */

.radazdev-badge:hover{

    transform:
    translateY(-4px);
}

.radazdev-badge:hover img{

    transform:
    scale(1.05);
}

/* mobile */

@media(max-width:768px){

    .footer-bottom{

        flex-direction:column;

        gap:12px;
    }

    .radazdev-badge img{

        width:105px;
    }

}