*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    background:#020b22;
    color:white;
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

/* NAVBAR */

.navbar{
    position:fixed;
    top:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 5%;
    z-index:999;
    background:rgba(0,0,0,0.35);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(255,255,255,0.08);
    transition:0.4s;
}

.logo-box{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo-box img{
    width:60px;
    height:60px;
    border-radius:50%;
}

.logo-box h2{
    font-family:'Cinzel',serif;
    color:#f0be4c;
    font-size:24px;
}

.logo-box p{
    font-size:12px;
    letter-spacing:3px;
}

.nav-links{
    display:flex;
    gap:35px;
}

.nav-links a{
    text-decoration:none;
    color:white;
    font-weight:500;
}

.nav-btn{
    background:#f0be4c;
    color:black;
    text-decoration:none;
    padding:14px 26px;
    border-radius:40px;
    font-weight:600;
}

/* HERO */

.hero{
    height:100vh;
    background:
    linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),
    url('https://images.unsplash.com/photo-1477587458883-47145ed94245?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
    position:relative;
}

.hero-content{
    z-index:2;
    max-width:950px;
    animation:fadeUp 1.2s ease;
}

.hero-logo{
    width:220px;
    margin:auto;
    margin-bottom:25px;
}

.hero h1{
    font-size:90px;
    font-family:'Cinzel',serif;
    color:#f0be4c;
}

.hero p{
    font-size:24px;
    margin-top:20px;
    line-height:1.7;
}

.premium-tag{
    display:inline-block;
    border:1px solid rgba(255,255,255,0.2);
    padding:10px 20px;
    border-radius:40px;
    margin-bottom:30px;
    color:#f0be4c;
    letter-spacing:3px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:40px;
    flex-wrap:wrap;
}

.btn{
    padding:18px 36px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
}

.gold-btn{
    background:#f0be4c;
    color:black;
}

.dark-btn{
    border:1px solid #f0be4c;
    color:#f0be4c;
}

/* SECTION */

section{
    padding:110px 7%;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#f0be4c;
    letter-spacing:4px;
}

.section-title h2{
    font-size:55px;
    margin-top:15px;
    font-family:'Cinzel',serif;
}

/* ABOUT */

.about{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image{
    background:#07132f;
    padding:30px;
    border-radius:30px;
}

.about-image img{
    border-radius:20px;
}

.about-content span{
    color:#f0be4c;
    letter-spacing:4px;
}

.about-content h2{
    font-size:60px;
    margin:20px 0;
    font-family:'Cinzel',serif;
}

.about-content p{
    line-height:2;
    color:#d6d6d6;
    margin-bottom:20px;
}

.about-stats{
    display:flex;
    justify-content:space-between;
    margin-top:40px;
}

.about-stats h3{
    color:#f0be4c;
    font-size:40px;
}

/* SERVICES */

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.service-card{
    background:#07132f;
    padding:40px;
    border-radius:30px;
    transition:0.4s;
    border:1px solid rgba(255,255,255,0.08);
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 30px rgba(240,190,76,0.25);
}

.service-card i{
    width:80px;
    height:80px;
    background:#f0be4c;
    color:black;
    border-radius:20px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:35px;
    margin-bottom:25px;
}

.service-card h3{
    font-size:30px;
    margin-bottom:15px;
    font-family:'Cinzel',serif;
}

.service-card p{
    color:#d3d3d3;
    line-height:1.8;
}

/* TRIPS */

.trip-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

.trip-card{
    background:#07132f;
    border-radius:30px;
    overflow:hidden;
    transition:0.4s;
}

.trip-card:hover{
    transform:translateY(-10px);
}

.trip-card img{
    height:260px;
    object-fit:cover;
}

.trip-content{
    padding:30px;
}

.trip-content h3{
    font-size:28px;
    color:#f0be4c;
    font-family:'Cinzel',serif;
}

.trip-time{
    margin:15px 0;
    color:#ffffff;
    font-weight:600;
}

.trip-content ul{
    margin-left:20px;
    line-height:2;
    margin-bottom:30px;
}

.trip-content a{
    display:inline-block;
    background:#f0be4c;
    color:black;
    padding:14px 26px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
}

/* CONTACT */

.contact-box{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.contact-box a{
    background:#07132f;
    padding:20px 30px;
    border-radius:20px;
    text-decoration:none;
    color:white;
    font-size:18px;
}

.contact-box i{
    color:#f0be4c;
    margin-right:10px;
}

/* FOOTER */

footer{
    text-align:center;
    padding:60px 20px;
    border-top:1px solid rgba(255,255,255,0.08);
}

footer h2{
    font-size:40px;
    color:#f0be4c;
    font-family:'Cinzel',serif;
}

footer p{
    margin-top:15px;
}

.branding{
    margin-top:25px;
    color:#cfcfcf;
}

/* FLOAT BUTTONS */

.whatsapp-float,
.call-float{
    position:fixed;
    right:20px;
    width:65px;
    height:65px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:32px;
    color:white;
    z-index:999;
    text-decoration:none;
}

.whatsapp-float{
    bottom:20px;
    background:#25d366;
}

.call-float{
    bottom:100px;
    background:#f0be4c;
    color:black;
}

/* ANIMATION */

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(60px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* MOBILE */

/* =========================
   MOBILE RESPONSIVE DESIGN
========================= */

@media(max-width:991px){

    /* NAVBAR */

    .navbar{
        position:fixed;
        bottom:0;
        top:auto;
        left:0;
        width:100%;
        padding:12px 8px;
        background:#020b22;
        border-top:1px solid rgba(255,255,255,0.1);
        border-bottom:none;
        z-index:9999;
        justify-content:center;
    }

    .logo-box{
        display:none;
    }

    .nav-btn{
        display:none;
    }

    .nav-links{
        width:100%;
        display:flex;
        justify-content:space-around;
        align-items:center;
        gap:5px;
    }

    .nav-links a{
        font-size:12px;
        font-weight:600;
    }

    /* HERO */

    .hero{
        height:auto;
        min-height:100vh;
        padding:110px 20px 120px;
        background-position:center;
    }

    .premium-tag{
        font-size:11px;
        letter-spacing:2px;
        padding:10px 18px;
        margin-bottom:22px;
    }

    .hero-logo{
        width:140px;
        margin-bottom:20px;
    }

    .hero h1{
        font-size:42px;
        line-height:1.3;
    }

    .hero p{
        font-size:16px;
        line-height:1.8;
        margin-top:18px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
        gap:15px;
        margin-top:35px;
    }

    .btn{
        width:100%;
        max-width:280px;
        text-align:center;
        padding:16px 20px;
    }

    /* COMMON SECTION */

    section{
        padding:80px 20px;
    }

    .section-title{
        margin-bottom:40px;
    }

    .section-title span{
        font-size:12px;
        letter-spacing:3px;
    }

    .section-title h2{
        font-size:32px;
        line-height:1.4;
    }

    /* ABOUT */

    .about{
        grid-template-columns:1fr;
        gap:40px;
    }

    .about-image{
        padding:20px;
        border-radius:24px;
    }

    .about-content h2{
        font-size:38px;
        line-height:1.3;
    }

    .about-content p{
        font-size:16px;
        line-height:1.9;
    }

    .about-stats{
        flex-direction:column;
        gap:25px;
        margin-top:30px;
    }

    .about-stats div{
        text-align:center;
    }

    .about-stats h3{
        font-size:30px;
    }

    /* SERVICES */

    .service-grid{
        grid-template-columns:1fr;
        gap:22px;
    }

    .service-card{
        padding:30px 24px;
        border-radius:24px;
    }

    .service-card i{
        width:70px;
        height:70px;
        font-size:28px;
        border-radius:18px;
        margin-bottom:20px;
    }

    .service-card h3{
        font-size:26px;
        line-height:1.4;
    }

    .service-card p{
        font-size:15px;
        line-height:1.8;
    }

    /* TRIPS */

    .trip-grid{
        grid-template-columns:1fr;
        gap:24px;
    }

    .trip-card{
        border-radius:24px;
    }

    .trip-card img{
        height:220px;
    }

    .trip-content{
        padding:24px;
    }

    .trip-content h3{
        font-size:24px;
        line-height:1.4;
    }

    .trip-time{
        font-size:14px;
    }

    .trip-content ul{
        line-height:1.9;
        font-size:14px;
    }

    .trip-content a{
        width:100%;
        text-align:center;
        padding:15px;
    }

    /* CONTACT */

    .contact h2{
        font-size:34px;
        line-height:1.4;
    }

    .contact-box{
        flex-direction:column;
        gap:18px;
    }

    .contact-box a{
        width:100%;
        text-align:center;
        font-size:15px;
        padding:18px 14px;
    }

    /* FOOTER */

    footer h2{
        font-size:30px;
    }

    footer p{
        font-size:15px;
        line-height:1.8;
    }

    .branding{
        font-size:14px;
        line-height:1.8;
    }

    /* FLOAT BUTTONS */

    .whatsapp-float{
        width:60px;
        height:60px;
        font-size:30px;
        right:15px;
        bottom:85px;
    }

    .call-float{
        width:60px;
        height:60px;
        font-size:28px;
        right:15px;
        bottom:160px;
    }

}