/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#000;
    color:#fff;
    overflow-x:hidden;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:20px 70px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(0,0,0,.35);
    backdrop-filter:blur(12px);
    z-index:1000;
}

.logo img{
    height:55px;
}

.navbar ul{
    display:flex;
    list-style:none;
    gap:35px;
}

.navbar ul li a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
    font-size:15px;
}

.navbar ul li a:hover{
    color:#d4af37;
}

.btn{
    text-decoration:none;
    background:#d4af37;
    color:#000;
    padding:13px 28px;
    border-radius:40px;
    font-weight:bold;
    transition:.3s;
}

.btn:hover{
    background:#fff;
}

/* =========================
   HERO
========================= */

.hero{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

.hero video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:-2;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    z-index:-1;
}

.hero-content{
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    max-width:650px;
    padding-left:80px;
}

.hero-content h1{
    font-size:68px;
    line-height:1.1;
    margin-bottom:20px;
}

.hero-content p{
    font-size:18px;
    color:#eee;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-btn{
    display:inline-block;
    width:fit-content;
    text-decoration:none;
    background:#d4af37;
    color:#000;
    padding:16px 35px;
    border-radius:40px;
    font-weight:bold;
    transition:.3s;
}

.hero-btn:hover{
    background:#fff;
}

/* =========================
   SERVICES
========================= */

.services{
    background:#0b0b0b;
    padding:110px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:48px;
    margin-bottom:15px;
}

.section-title p{
    max-width:650px;
    margin:auto;
    color:#bbb;
    line-height:1.8;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.service-card{
    background:#171717;
    border-radius:18px;
    overflow:hidden;
    border:1px solid rgba(212,175,55,.15);
    transition:.35s;
}

.service-card:hover{
    transform:translateY(-8px);
    border-color:#d4af37;
    box-shadow:0 15px 35px rgba(0,0,0,.4);
}

.service-card img{
    width:100%;
    height:140px;
    object-fit:cover;
}

.service-card h3{
    padding:18px 20px 10px;
    color:#d4af37;
    font-size:22px;
}

.service-card p{
    padding:0 20px 22px;
    color:#bdbdbd;
    line-height:1.7;
    font-size:15px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:900px){

    .navbar{
        padding:20px 30px;
    }

    .navbar ul{
        display:none;
    }

    .hero-content{
        padding:0 30px;
        max-width:100%;
    }

    .hero-content h1{
        font-size:46px;
    }

    .hero-content p{
        font-size:16px;
    }

    .services{
        padding:80px 30px;
    }

    .section-title h2{
        font-size:36px;
    }

}
/* =========================
   HOW IT WORKS
========================= */

.how-it-works{
    padding:110px 8%;
    background:#111;
}

.steps{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-top:60px;
}

.step{
    background:#171717;
    padding:35px;
    border-radius:18px;
    border:1px solid rgba(212,175,55,.15);
    transition:.35s;
}

.step:hover{
    transform:translateY(-8px);
    border-color:#d4af37;
}

.number{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#d4af37;
    color:#000;
    font-size:24px;
    font-weight:bold;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:25px;
}

.step h3{
    margin-bottom:15px;
    font-size:22px;
}

.step p{
    color:#bdbdbd;
    line-height:1.8;
}
/* =========================
   FEATURED PACKAGES
========================= */

.packages{
    background:#0b0b0b;
    padding:110px 8%;
}

.package-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-top:60px;
}

.package-card{
    background:#171717;
    border-radius:18px;
    overflow:hidden;
    border:1px solid rgba(212,175,55,.15);
    transition:.35s;
}

.package-card:hover{
    transform:translateY(-8px);
    border-color:#d4af37;
    box-shadow:0 15px 35px rgba(0,0,0,.4);
}

.package-card img{
    width:100%;
    height:200px;
    object-fit:cover;
}

.package-content{
    padding:25px;
}

.package-content h3{
    color:#d4af37;
    margin-bottom:15px;
}

.package-content p{
    color:#bdbdbd;
    line-height:1.7;
    margin-bottom:25px;
}

.package-btn{
    display:inline-block;
    padding:12px 24px;
    background:#d4af37;
    color:#000;
    text-decoration:none;
    border-radius:30px;
    font-weight:bold;
}

.custom-package{
    position:relative;
    margin-top:80px;
    border-radius:20px;
    overflow:hidden;
}

.custom-package img{
    width:100%;
    height:500px;
    object-fit:cover;
    display:block;
}

.custom-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:40px;
}

.custom-overlay h2{
    font-size:48px;
    margin-bottom:20px;
}

.custom-overlay p{
    max-width:700px;
    color:#eee;
    line-height:1.8;
    margin-bottom:35px;
}
/* ===========================
   WHY CHOOSE US
=========================== */

.why-us{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:80px;
    padding:120px 8%;
    background:#111;
    align-items:start;
}

.why-gallery{
    display:grid;
    grid-template-columns:2fr 1fr;
    grid-template-rows:repeat(4,160px);
    gap:15px;
    align-self:start;
}

.why-gallery img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:18px;
    transition:.4s ease;
    display:block;
}

.why-gallery img:nth-child(1){
    grid-row:1 / span 2;
}

.why-gallery img:hover{
    transform:scale(1.04);
    filter:brightness(1.08);
}

.why-text{
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}

.why-text span{
    color:#d4af37;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:10px;
}

.why-text h2{
    font-size:52px;
    line-height:1.2;
    margin-bottom:25px;
}

.why-text > p{
    color:#cfcfcf;
    line-height:1.8;
    margin-bottom:35px;
}

.features{
    display:flex;
    flex-direction:column;
    gap:20px;
    margin-bottom:40px;
}

.feature{
    display:flex;
    gap:18px;
    align-items:flex-start;
    padding:18px;
    background:#171717;
    border-radius:14px;
    border:1px solid rgba(212,175,55,.12);
    transition:.3s;
}

.feature:hover{
    border-color:#d4af37;
    transform:translateX(8px);
}

.feature span{
    font-size:28px;
    width:42px;
    flex-shrink:0;
}

.feature p{
    margin:0;
    color:#bdbdbd;
    line-height:1.7;
}

.feature strong{
    display:block;
    color:#fff;
    font-size:18px;
    margin-bottom:6px;
}

@media(max-width:900px){

    .why-us{
        grid-template-columns:1fr;
        gap:50px;
    }

    .why-gallery{
        grid-template-columns:repeat(2,1fr);
        grid-template-rows:repeat(3,180px);
    }

    .why-gallery img:nth-child(1){
        grid-row:auto;
    }

    .why-text h2{
        font-size:40px;
    }
}
/* ===========================
   LUXURY GALLERY
=========================== */

.gallery{
    padding:120px 8%;
    background:#0b0b0b;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    grid-auto-rows:220px;
    gap:18px;
}

.gallery-grid img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:18px;
    transition:.4s ease;
    cursor:pointer;
}

.gallery-grid img:hover{
    transform:scale(1.04);
    filter:brightness(1.08);
}

/* Luxury Layout */

.gallery-grid img:nth-child(1){
    grid-column:span 2;
    grid-row:span 2;
}

.gallery-grid img:nth-child(6){
    grid-column:span 2;
}

@media(max-width:900px){

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
        grid-auto-rows:180px;
    }

    .gallery-grid img:nth-child(1){
        grid-column:span 2;
        grid-row:span 1;
    }

    .gallery-grid img:nth-child(6){
        grid-column:span 2;
    }

}
/* ===========================
   TESTIMONIALS
=========================== */

.testimonials{
    padding:120px 8%;
    background:#111;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.testimonial-card{
    background:#171717;
    border-radius:18px;
    padding:35px;
    border:1px solid rgba(212,175,55,.15);
    transition:.35s;
}

.testimonial-card:hover{
    transform:translateY(-8px);
    border-color:#d4af37;
}

.stars{
    color:#d4af37;
    font-size:22px;
    margin-bottom:20px;
    letter-spacing:4px;
}

.testimonial-card p{
    line-height:1.8;
    color:#cfcfcf;
    margin-bottom:25px;
    font-style:italic;
}

.testimonial-card h4{
    margin-bottom:5px;
}

.testimonial-card span{
    color:#999;
}
/* ===========================
   FAQ
=========================== */

.faq{
    padding:120px 8%;
    background:#0b0b0b;
}

.faq-container{
    max-width:900px;
    margin:60px auto 0;
}

.faq details{
    background:#171717;
    margin-bottom:18px;
    border-radius:16px;
    border:1px solid rgba(212,175,55,.15);
    overflow:hidden;
    transition:.35s ease;
}

.faq summary{
    padding:24px 28px;
    cursor:pointer;
    font-size:18px;
    font-weight:600;
    list-style:none;
    transition:.35s ease;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.faq summary::-webkit-details-marker{
    display:none;
}

.faq summary::after{
    content:"+";
    color:#d4af37;
    font-size:28px;
    font-weight:300;
    transition:.35s ease;
}

.faq details[open] summary::after{
    transform:rotate(45deg);
}

.faq details p{
    padding:0 25px 22px;
    color:#cfcfcf;
    line-height:1.8;
}
.faq details:hover{
    border-color:#d4af37;
    transform:translateX(8px);
}

.faq summary:hover{
    color:#d4af37;
}

.faq details[open]{
    border-color:#d4af37;
    box-shadow:0 15px 35px rgba(0,0,0,.35);
}
/* ===========================
   PLAN YOUR BALI JOURNEY
=========================== */

.contact{
    padding:120px 8%;
    background:#111;
    text-align:center;
}

.contact-wrapper{
    max-width:850px;
    margin:auto;
}



.contact-divider{
    width:120px;
    height:2px;
    background:#d4af37;
    margin:55px auto;
}

.contact-wrapper h4{
    font-size:24px;
    margin-bottom:35px;
}

.social-icons{
    display:flex;
    justify-content:center;
    gap:35px;
    flex-wrap:wrap;
}

.social-icons a{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    transition:.35s ease;
}

.social-icons i{
    width:75px;
    height:75px;
    border-radius:50%;
    background:#171717;
    border:1px solid rgba(212,175,55,.2);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:32px;
    color:#d4af37;
    transition:.35s ease;
}

.social-icons span{
    margin-top:12px;
    font-size:15px;
    color:#cfcfcf;
}

.social-icons a:hover i{
    background:#d4af37;
    color:#000;
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(212,175,55,.25);
}

.social-icons a:hover span{
    color:#d4af37;
}

@media(max-width:768px){

    .contact{
        padding:90px 8%;
    }

    .contact-wrapper h3{
        font-size:32px;
    }

    .contact-intro{
        font-size:16px;
    }

    .social-icons{
        gap:25px;
    }

    .social-icons i{
        width:65px;
        height:65px;
        font-size:28px;
    }

}
/*==================================
BUILD MY TRIP
==================================*/

.trip-hero{

margin-top:90px;
padding:120px 8%;
background:linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
url("../assets/images/luxury.jpg");

background-size:cover;
background-position:center;

text-align:center;

}

.trip-content span{

color:#d4af37;

letter-spacing:3px;

font-size:14px;

font-weight:bold;

}

.trip-content h1{

font-size:64px;

margin:20px 0;

}

.trip-content p{

max-width:650px;

margin:auto;

color:#ddd;

line-height:1.8;

}

.trip-progress{

padding:60px 8%;

background:#0b0b0b;

}

.progress-text{

font-weight:bold;

margin-bottom:18px;

}

.progress-bar{

height:10px;

background:#222;

border-radius:50px;

overflow:hidden;

}

.progress-fill{

width:12.5%;

height:100%;

background:#d4af37;

border-radius:50px;

}

.trip-builder{

padding:100px 8%;

background:#111;

}

.trip-card{

max-width:800px;

margin:auto;

background:#171717;

padding:50px;

border-radius:20px;

border:1px solid rgba(212,175,55,.15);

}

.trip-card h2{

font-size:42px;

margin-bottom:15px;

}

.trip-subtitle{

color:#bbb;

margin-bottom:40px;

line-height:1.8;

}

.form-group{

margin-bottom:28px;

}

.form-group label{

display:block;

margin-bottom:10px;

font-weight:bold;

color:#d4af37;

}

.form-group input,

.form-group select{

width:100%;

padding:18px;

background:#0f0f0f;

border:1px solid rgba(212,175,55,.2);

border-radius:12px;

color:#fff;

font-size:16px;

outline:none;

}

.form-group input:focus,

.form-group select:focus{

border-color:#d4af37;

}

.step-buttons{

display:flex;

justify-content:flex-end;

margin-top:40px;

}
/*==================================
OPTION CARDS
==================================*/

.option-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:25px;

margin-top:40px;

}

.option-card{

display:block;

background:#1a1a1a;

border:2px solid transparent;

border-radius:18px;

overflow:hidden;

cursor:pointer;

transition:.35s;

}

.option-card:hover{

transform:translateY(-8px);

border-color:#d4af37;

}

.option-card img{

width:100%;

height:180px;

object-fit:cover;

}

.option-content{

padding:20px;

}

.option-content h3{

margin-bottom:10px;

color:#d4af37;

}

.option-content p{

color:#bdbdbd;

line-height:1.7;

font-size:15px;

}

.option-card input{

display:none;

}

.option-card:has(input:checked){

border:2px solid #d4af37;

box-shadow:0 0 30px rgba(212,175,55,.35);

}

.btn-secondary{

background:#333;

color:#fff;

border:none;

padding:15px 32px;

border-radius:40px;

font-weight:bold;

cursor:pointer;

transition:.3s;

}

.btn-secondary:hover{

background:#555;

}

.step-buttons{

display:flex;

justify-content:space-between;

align-items:center;

margin-top:50px;

}
.hero-btn:disabled{
    background:#bdbdbd;
    cursor:not-allowed;
    opacity:.6;
    pointer-events:none;
}

@media(max-width:900px){

.option-grid{

grid-template-columns:1fr;

}

}
.category-title{
    margin:50px 0 25px;
    color:#d4af37;
    font-size:28px;
    font-weight:700;
}
/*==============================
CONCIERGE ADD-ONS
==============================*/

.addon-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:25px;

margin-top:40px;

}

.addon-card{

background:#1b1b1b;

border:2px solid rgba(212,175,55,.15);

border-radius:18px;

padding:30px;

cursor:pointer;

transition:.35s;

text-align:center;

}

.addon-card:hover{

transform:translateY(-8px);

border-color:#d4af37;

}

.addon-card input{

display:none;

}

.addon-icon{

font-size:46px;

margin-bottom:20px;

}

.addon-card h3{

color:#d4af37;

margin-bottom:12px;

}

.addon-card p{

color:#bdbdbd;

line-height:1.7;

}

.addon-card:has(input:checked){

border-color:#d4af37;

background:#222;

box-shadow:0 0 25px rgba(212,175,55,.3);

}

@media(max-width:900px){

.addon-grid{

grid-template-columns:1fr;

}

}
.form-group textarea{

    resize:vertical;

    min-height:220px;

}
.form-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}

@media(max-width:900px){

    .form-row{

        grid-template-columns:1fr;

    }

}
/*==================================
THANK YOU PAGE
==================================*/

.thank-you{

padding:120px 8%;

background:#111;

display:flex;

justify-content:center;

}

.thank-you-card{

max-width:750px;

background:#171717;

padding:60px;

border-radius:24px;

border:1px solid rgba(212,175,55,.2);

text-align:center;

}

.success-icon{

width:120px;

height:120px;

background:#d4af37;

color:#111;

font-size:60px;

font-weight:bold;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

margin:auto;

margin-bottom:35px;

}

.thank-you-card h2{

font-size:48px;

margin-bottom:20px;

}

.thank-you-card p{

color:#bdbdbd;

line-height:1.8;

margin-bottom:20px;

}

.thank-you-box{

margin:45px 0;

padding:35px;

background:#1f1f1f;

border-radius:18px;

text-align:left;

}

.thank-you-box h3{

color:#d4af37;

margin-bottom:20px;

}

.thank-you-box ul{

list-style:none;

padding:0;

}

.thank-you-box li{

margin-bottom:15px;

color:#ddd;

font-size:17px;

}
/* ===== Hide Inactive Booking Steps ===== */

.step {
    display: none;
}

.step.active {
    display: block;
}
.company-attribution {
    text-align: center;
    padding: 20px 15px;
    font-size: 14px;
    color: #777;
}

.company-attribution strong {
    color: #333;
}

.company-attribution a {
    color: inherit;
    text-decoration: none;
}

.company-attribution a:hover {
    text-decoration: underline;
}