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

body{
    background:#edf1f7;
    font-family:'Poppins',sans-serif;
    display:flex;
    justify-content:center;
}

.wrapper{
    width:100%;
    max-width:500px;
    min-height:100vh;
    margin:0 auto;
    position:relative;
    padding-bottom:120px;

    background-image: url('/assets/HD-wallpaper-mesh-texture-dark-shape.jpg');
    background-repeat: repeat;
    background-size: 380px 380px;   /* ⬅️ ATUR POLA DI SINI */
    background-position: center;
    background-attachment: scroll; /* ⬅️ WAJIB scroll (lihat catatan) */
}

/* HEADER */

.header{
    background:linear-gradient(78deg, #7d0202, #FF0000);
    padding:25px 15px 20px;
    color:white;
}

.top-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.location{
    display:flex;
    align-items:center;
    gap:12px;
}

.loc-icon{
    width:50px;
    height:50px;
    border-radius:18px;
    background:rgba(255,255,255,0.15);
    display:flex;
    align-items:center;
    justify-content:center;
}

.loc-text h3{
    font-size:18px;
}

.profile{
    width:50px;
    height:50px;
    border-radius:50%;
    overflow:hidden;
    background:white;
}

.profile img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.title{
    margin-top:30px;
}

.title h1{
    font-size:30px;
    line-height: 28px;
}

.title p{
    margin-top:8px;
    opacity:.8;
    font-size: 14px;
}

.sub-text {
    color: #b3b3b3;
    font-size: 14px;
    margin-bottom: 15px;
}

p {
    font-size: 14px;
}

/* SEARCH */

.search-box{
    background:white;
    height:40px;
    border-radius:14px;

    display:flex;
    align-items:center;
    gap:10px;

    padding:0px 5px 0px 10px;

    width:100%;
    overflow:hidden;
}

.search-box i{
    color:#666;
    font-size:14px;
}


.search-box input{
    flex:1;
    min-width:0;

    border:none;
    outline:none;

    font-size:12px;
    font-family:'Poppins',sans-serif;
}

.filter-btn{
    border:none;
    border-radius:10px;
    background:#FF0000;
    color:white;

    padding:0 12px;
    height:30px;

    font-family:'Poppins',sans-serif;
    font-size:12px;

    flex-shrink:0;
}

.filter-btn i{
    color:white;
}


.reset-search{
    width:35px;
    height:35px;
    border-radius:10px;
    background:#f1f5f9;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    margin-right:10px;
}

.reset-search i{
    color:#666;
    font-size:14px;
}

.follow-text {
    color: #fff;
    text-align: center;
}

/* =========================================
   STICKY SEARCH
========================================= */

.sticky-search{
    position: sticky;
    top: 0;
    z-index: 999;
    background: linear-gradient(135deg, #7d0202, #FF0000);
    border-radius: 0 0 35px 35px;
    padding: 15px;
    border: none;

    transition: .3s ease;
}

.sticky-search.is-sticky{
    border-radius: 0;
}

/* PROMO */

.promo-wrap{
    display:flex;
    gap:15px;
    overflow-x:auto;
    padding-top:20px;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
    margin-left: 10px;
}

.promo-wrap::-webkit-scrollbar{
    display:none;
}

.promo{
    max-width:260px;
    width: 260px;
    height:170px;
    border-radius:28px;
    overflow:hidden;
    position:relative;
    flex-shrink:0;
    scroll-snap-align:start;
    box-shadow:0 4px 15px rgba(0,0,0,0.06);
}

.promo,
.promo:visited,
.promo:hover{
    text-decoration:none;
    color:inherit;
}

.promo.small{
    max-width:260px;
    width: 260px;
}

.promo img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.4);
    color:white;
    padding:18px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
}

.badge{
    background:linear-gradient(135deg, #7d0202, #FF0000);
    width:max-content;
    padding:6px 12px;
    border-radius:10px;
    font-size:11px;
    margin-bottom:10px;
}

/* SECTION */

.section{
    padding:0 10px;
    margin-top:30px;
}

.section-title{
    font-size:18px;
    margin-bottom:10px;
    color: #fff;
}

/* =========================================
   SECTION HEAD
========================================= */

.section-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:10px;
}

.section-head .section-title{
    margin-bottom:0;
}

.lihat-semua{
    text-decoration:none;
    color:#fff;
    font-size:13px;
    font-weight:600;
}

/* BENEFIT SLIDER */

.benefit-slider{
    display:flex;
    gap:15px;
    overflow-x:auto;
    scrollbar-width:none;
}

.benefit-slider::-webkit-scrollbar{
    display:none;
}

.benefit-card{
    width:200px;
    max-width:200px;
    background:#131617;
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    border-radius:24px;
    padding:20px;
    flex-shrink:0;
    box-shadow:0 4px 15px rgba(0,0,0,0.06);
}

.benefit-card i{
    font-size:20px;
    color: #FF0000;
    background: #ffffff24;
    padding: 10px;
    border-radius: 12px;
}

.benefit-card h4{
    margin-top:15px;
    font-size:16px;
}

.benefit-card p{
    margin-top:8px;
    font-size:12px;
    color:#b3b3b3;
    line-height:20px;
}

/* ARMADA */

.car-wrap{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.card{
    background:#131617;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius:28px;
    padding:15px;
    position:relative;
    box-shadow:0 4px 15px rgba(0,0,0,0.06);
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.card img{
    width:100%;
    height:100px;
    object-fit:contain;
}

.label{
    position:absolute;
    top:15px;
    right:15px;
    background:#FF0000;
    color:#fff;
    padding:6px 12px;
    border-radius:10px;
    font-size:11px;
    font-weight: 700;
}

.card h3{
    margin-top:0px;
    font-size:18px;
    line-height:26px;
    color: #fff;
}

.spec{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    margin-top: 10px;
    font-size: 10px;
    color: #b3b3b3;
}

.spec div{
    display:flex;
    align-items:center;
    gap:6px;
}

.bottom{
    margin-top:10px;
}

.price{
    color:#FF0000;
    font-size:18px;
    font-weight:700;
}

.price small{
    color:#777;
    font-size:10px;
    font-weight:400;
}

.btn{
    display:block;
    margin-top:12px;
    background:linear-gradient(135deg, #7d0202, #FF0000);
    color:white;
    text-align:center;
    text-decoration:none;
    padding:13px;
    border-radius:16px;
    font-size:14px;
}

/* BOTTOM NAV */

.bottom-nav{
    position:fixed;
    bottom:0;
    width:100%;
    max-width:500px;
    height:65px;
    
    background:rgba(23, 27, 28, 0.75);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        
        border-top: 1px solid rgba(255,255,255,0.08);
            
    
    display:flex;
    justify-content:space-around;
    align-items:center;
    border-radius:30px 30px 0 0;
    box-shadow:0 -5px 20px rgba(0,0,0,0.08);
    z-index:999;
}

.nav-item{
    width:65px;
    text-decoration:none;
    color:#888;
    font-size:11px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;
    text-align:center;
}

.nav-item i{
    font-size:20px;
}

.active{
    color:#FF0000;
}

/* WA */

.wa-center{
    width:75px;
    display:flex;
    justify-content:center;
}

.wa-button{
    width:60px;
    height:60px;
    border-radius:50%;
    background:linear-gradient(135deg, #7d0202, #FF0000);
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:30px;
    position:relative;
    top:-15px;
    box-shadow:0 10px 25px rgb(255 7 7 / 34%);
    text-decoration: none;
}


/* ======== EMPTY DATA ==========*/
.empty-data{
    background:rgba(23, 27, 28, 0.75);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        
        border: 1px solid rgba(255,255,255,0.08);
    
    border-radius:25px;
    padding:40px 20px;
    text-align:center;
    grid-column:1/-1;
}

.empty-data i{
    font-size:50px;
    color:#FF0000;
}

.empty-data h3{
    margin-top:20px;
    font-size:22px;
    color:#fff;
}

.empty-data p{
    margin-top:8px;
    color:#777;
}

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

@media(max-width:500px){

    .wrapper{
        max-width:100%;
    }

    .benefit-card{
        width:215px;
        max-width:215px;
    }

    .car-wrap{
        gap:12px;
    }

    .card{
        padding:12px;
    }

    .card h3{
        font-size:15px;
        font-weight: 700;
        line-height: 20px;
    }

    .price{
        font-size:16px;
    }

    .btn{
        padding:10px;
        font-size:12px;
        border-radius: 12px;
    }
    
    .benefit-card.footer-card {
        min-width: 100%;
    }

}


/*======== Filter Mobil ========*/
.filter-wrap{
    display:flex;
    gap:12px;
    overflow-x:auto;
    padding:20px 10px 20px;
    scrollbar-width:none;
}

.filter-wrap::-webkit-scrollbar{
    display:none;
}

.filter-item{
    background: none;
    padding: 12px 18px;
    border-radius: 14px;
    border: 1px solid #FF0000;
    text-decoration: none;
    color: #FFF;
    font-size: 14px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.active-filter{
    background:linear-gradient(135deg, #7d0202, #FF0000);
    color:white;
}



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

.header-page{
    height:65px;
    background:linear-gradient(135deg, #7d0202, #FF0000);
    display:flex;
    align-items:center;
    gap:15px;
    padding:0 18px;
    color:white;
    position:sticky;
    top:0;
    z-index:99;
}

.back-btn{
    color:white;
    text-decoration:none;
    font-size:20px;
}

.header-page h3{
    font-size:18px;
    font-weight:600;
}

/* =========================================
   PAGE CONTENT
========================================= */

.page-content{
    padding:12px;
}

/* =========================================
   ABOUT CARD
========================================= */


.about-card{
    background:#131617;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius:24px;
    padding:25px;
    box-shadow:0 4px 15px rgba(0,0,0,0.06);
    margin-bottom:18px;
}

.about-icon{
    margin:0 auto 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
}

.about-icon img{
    width:85px;
    height:85px;
    object-fit:contain;
}

.about-card h2{
    text-align:center;
    font-size:20px;
    margin-bottom:8px;
    color:#fff;
}

.about-subtitle{
    text-align:center;
    color:#666;
    margin-bottom:25px;
    font-size:13px;
    color:#fff;
}

.about-card p{
    color:#fff;
    margin-bottom:18px;
}

/* =========================================
   INFO LIST
========================================= */

.info-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.info-item{
    display:flex;
    gap:15px;
    align-items:flex-start;
}

.info-icon{
    width:50px;
    height:50px;
    min-width:50px;
    border-radius:14px;
    background:linear-gradient(135deg, #7d0202, #FF0000);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.info-text h4{
    font-size:17px;
    margin-bottom:4px;
    color:#fff;
}

.info-text p{
    color:#fff;
    line-height:24px;
    margin:0;
}

.info-item{
    text-decoration:none;
}
/* =========================================
   SOCIAL MEDIA
========================================= */

.social-media{
    margin-top:30px;
    display:flex;
    justify-content:space-evenly;
    gap:15px;
}

.social-media a{
    width:50px;
    height:50px;
    border-radius:16px;
    background:linear-gradient(135deg, #7d0202, #FF0000);
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:20px;
}


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

.footer-info{
    width:100%;
    background:#131617;
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:20px;
    text-align:center;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
}

.footer-info i{
    font-size:20px;
    color:#FF0000;
    background:#ffffff24;
    padding:10px;
    border-radius:12px;
}

.footer-info h4{
    margin-top:15px;
    margin-bottom:5px;
    color:#fff;
}

.footer-info p{
    color:#b3b3b3;
    font-size:13px;
}

.footer-line{
    width:100%;
    height:1px;
    background:rgba(255,255,255,.08);
    margin:18px 0;
}

.dev-text strong{
    color:#FF0000;
}

.visitor-box{
    margin-top:18px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:14px;
    padding:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    color:#fff;
    font-size:13px;
}

.visitor-box i{
    color:#FF0000;
    font-size:16px;
    background:none;
    padding:0;
}


/*====================================*/
/*============= GALERI ===============*/
/*====================================*/

.gallery-wrap{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
}

.gallery-card{
    display:block;
    overflow:hidden;

    background:#131617;
    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    box-shadow:0 4px 15px rgba(0,0,0,.06);
}

.gallery-card img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
    display:block;

    transition:.3s;
}

.gallery-card:hover img{
    transform:scale(1.08);
}

@media(max-width:500px){

    .gallery-wrap{
        gap:8px;
    }

}

/*====================================*/
/*=========== CLIENT CARD ============*/
/*====================================*/

.client-card{
    width:100%;
    background:#131617;
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:22px;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
}

.client-item{
    display:flex;
    align-items:center;
    gap:18px;
}

.client-item + .client-item{
    margin-top:18px;
}

.client-item img{
    width:58px;
    height:58px;
    border-radius:50%;
    object-fit:cover;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    flex-shrink:0;
}

.client-item span{
    color:#fff;
    font-size:18px;
    font-weight:600;
    letter-spacing:.5px;
}


.viewer {
    text-align: center;
    color: #cfcfcf;
    font-size: 14px;
}


/*=========================================
        TOUR WISATA
=========================================*/

.tour-wrap{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.tour-banner{
    margin-bottom:20px;
    overflow:hidden;
    border-radius:22px;
    border:1px solid rgba(255,255,255,.08);
}

.tour-banner img{
    width:100%;
    display:block;
}

/* CARD */

.tour-card{

    display:flex;
    gap:14px;

    background:#131617;

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:10px;

    align-items:center;
}

/* FOTO */

.tour-thumb{

    width:42%;

    flex-shrink:0;

}

.tour-thumb img{

    width:100%;

    aspect-ratio:1/1;

    object-fit:cover;

    border-radius:18px;

    display:block;

}

/* KANAN */

.tour-info{

    flex:1;

    display:flex;

    flex-direction:column;

    min-width:0;

}

/* JUDUL */

.tour-info h3{

    color:#fff;

    font-weight:700;

    font-size:clamp(15px,3.7vw,16px);

    line-height:1.25;

    margin-bottom:6px;

}

/* BINTANG */

.tour-rating{

    display:flex;

    gap:3px;

    margin-bottom:8px;

}

.tour-rating i{

    color:#ffc107;

    font-size:clamp(11px,2.8vw,14px);

}

/* CATATAN */

.tour-note{
    display:flex;
    align-items:center;
    gap:6px;
    color:#b3b3b3;
    font-size:clamp(10px,2.4vw,12px);
    margin-bottom:10px;
}

.tour-note i{
    color:#b3b3b3;
}

/* HARGA */

.tour-info .price{
    color:#ff0000;
    font-weight:700;
    font-size:clamp(18px,5vw,18px);
    line-height:1.1;
    margin-bottom:12px;
}

.tour-info .price small{
    color:#8e8e8e;
    font-size:clamp(11px,2.8vw,13px);
    font-weight:400;

}

/* BUTTON */

.tour-info .btn{
    margin-top:auto;
    width:fit-content;
    text-align:center;
    text-decoration:none;
    padding:10px 20px;
    border-radius:12px;
    background:linear-gradient(135deg,#7d0202,#ff0000);
    color:#fff;
    font-weight:600;
    font-size:clamp(12px,3vw,14px);
}

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

@media (max-width:500px){

    .tour-card{
        gap:10px;
        padding:8px;
        border-radius:18px;
    }

    .tour-thumb{
        width:40%;

    }

}