/*==================================================
ROOT
==================================================*/

:root{

    --primary:#1696E8;
    --primary-dark:#0F6DA8;

    --secondary:#0D1B2A;

    --text:#1F2937;

    --gray:#64748B;

    --white:#FFFFFF;

    --light:#F7FAFC;

    --border:#E5E7EB;


    --shadow-sm:
    0 10px 25px rgba(0,0,0,.06);


    --shadow-md:
    0 20px 50px rgba(0,0,0,.12);


    --shadow-lg:
    0 30px 70px rgba(0,0,0,.18);


    --radius:24px;

    --transition:.35s ease;

}


*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}


body{

    font-family:
    "Inter",
    Arial,
    sans-serif;

    color:var(--text);

    background:var(--white);

}



.container{

    width:min(1200px,90%);

    margin:auto;

}


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

#header{

    position:fixed;

    top:20px;

    left:50%;

    transform:translateX(-50%);

    width:95%;

    max-width:1320px;

    z-index:9999;

    transition:.35s ease;

}

#header.sticky{

    top:12px;

}

/*==================================================
NAVBAR
==================================================*/

.navbar{

    height:82px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 35px;

    background:#FFFFFF;

    border-radius:999px;

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

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}

/*==================================================
LOGO
==================================================*/

.logo{

    display:flex;

    align-items:center;

    gap:14px;

    text-decoration:none;

}

.logo img{

    width:52px;

    display:block;

}

.logo-text{

    display:flex;

    flex-direction:column;

}

.logo-text h2{

    font-size:24px;

    font-weight:700;

    color:var(--secondary);

    line-height:1.2;

}

.logo-text span{

    font-size:11px;

    color:var(--gray);

    letter-spacing:.5px;

}

/*==================================================
RIGHT AREA
==================================================*/

.nav-right{

    display:flex;

    align-items:center;

    gap:28px;

}
/*==================================================
LOGO
==================================================*/

.logo{

    display:flex;

    align-items:center;

    gap:14px;

    text-decoration:none;

    flex-shrink:0;

}

.logo img{

    width:58px;

    height:58px;

    object-fit:contain;

    transition:.35s ease;

}

.logo-text{

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.logo-text h2{

    margin:0;

    font-size:24px;

    font-weight:800;

    line-height:1.1;

    color:var(--secondary);

}

.logo-text span{

    margin-top:4px;

    font-size:12px;

    font-weight:500;

    letter-spacing:.5px;

    color:var(--gray);

}

/* Hover */

.logo:hover img{

    transform:scale(1.05);

}

.logo:hover .logo-text h2{

    color:var(--primary);

}
/*==================================================
TABLET
==================================================*/

@media(max-width:992px){

.logo{

    gap:12px;

}

.logo img{

    width:48px;

    height:48px;

}

.logo-text h2{

    font-size:20px;

}

.logo-text span{

    font-size:10px;

}

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

@media(max-width:576px){

.logo{

    gap:10px;

}

.logo img{

    width:42px;

    height:42px;

}

.logo-text h2{

    font-size:18px;

}

.logo-text span{

    font-size:9px;

    letter-spacing:.3px;

}

}
/*==================================================
MENU
==================================================*/

.nav-menu{

    display:flex;

    align-items:center;

    gap:34px;

    list-style:none;

}

.nav-menu li{

    list-style:none;

}

.nav-menu a{

    position:relative;

    display:block;

    color:var(--secondary);

    font-size:15px;

    font-weight:600;

    text-decoration:none;

    transition:.3s;

}

.nav-menu a:hover,

.nav-menu a.active{

    color:var(--primary);

}

.nav-menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    border-radius:10px;

    background:var(--primary);

    transition:.35s;

}

.nav-menu a:hover::after,

.nav-menu a.active::after{

    width:100%;

}

/*==================================================
BOOK BUTTON
==================================================*/

.btn-book{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:14px 28px;

    background:var(--primary);

    color:#FFFFFF;

    text-decoration:none;

    border-radius:999px;

    font-weight:600;

    transition:.35s;

}

.btn-book:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

}

/*==================================================
HAMBURGER
==================================================*/

.menu-toggle{

    width:46px;

    height:46px;

    display:none;

    justify-content:center;

    align-items:center;

    border:none;

    background:none;

    cursor:pointer;

    color:var(--secondary);

    font-size:28px;

    transition:.35s;

}

.menu-toggle:hover{

    color:var(--primary);

}

.menu-toggle i{

    pointer-events:none;

}

/*==================================================
TABLET
==================================================*/

@media (max-width:992px){

#header{

    width:96%;

    top:15px;

}

.navbar{

    height:74px;

    padding:0 22px;

}

.logo img{

    width:46px;

}

.logo-text h2{

    font-size:21px;

}

.logo-text span{

    font-size:10px;

}

.btn-book{

    display:none;

}

.menu-toggle{

    display:flex;

}

.nav-menu{

    position:absolute;

    top:90px;

    left:0;

    width:100%;

    background:#FFFFFF;

    border-radius:24px;

    box-shadow:0 20px 45px rgba(0,0,0,.10);

    padding:20px 25px;

    display:flex;

    flex-direction:column;

    align-items:flex-start;

    gap:0;

    opacity:0;

    visibility:hidden;

    transform:translateY(-20px);

    transition:.35s ease;

}

.nav-menu.active{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.nav-menu li{

    width:100%;

}

.nav-menu a{

    width:100%;

    padding:16px 0;

    border-bottom:1px solid #EEEEEE;

}

.nav-menu a::after{

    display:none;

}

}

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

@media (max-width:576px){

#header{

    width:94%;

    top:10px;

}

.navbar{

    height:68px;

    padding:0 18px;

}

.logo{

    gap:10px;

}

.logo img{

    width:40px;

}

.logo-text h2{

    font-size:18px;

}

.logo-text span{

    font-size:9px;

}

.menu-toggle{

    width:42px;

    height:42px;

    font-size:25px;

}

.nav-menu{

    top:82px;

    padding:18px;

}

.nav-menu a{

    padding:15px 0;

}

}
/*==================================================
VIP HERO
==================================================*/


.vip-hero{

    padding:100px 0;

    background:

    linear-gradient(
        135deg,
        #F8FCFF,
        #FFFFFF
    );

}


.hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}



.hero-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:

    rgba(22,150,232,.12);

    color:var(--primary);

    padding:12px 22px;

    border-radius:50px;

    font-weight:600;

    margin-bottom:25px;

}



.hero-content h1{

    font-size:3.2rem;

    line-height:1.2;

    color:var(--secondary);

    margin-bottom:25px;

}



.hero-content p{

    color:var(--gray);

    line-height:1.9;

    font-size:1.05rem;

    margin-bottom:35px;

}



.hero-feature{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

    margin-bottom:35px;

}


.hero-feature div{

    display:flex;

    align-items:center;

    gap:12px;

    padding:15px;

    background:#fff;

    border-radius:18px;

    border:1px solid var(--border);

    font-weight:500;

}


.hero-feature i{

    width:40px;

    height:40px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#EAF7FF;

    color:var(--primary);

}



.btn-primary{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:16px 35px;

    background:

    linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    color:#fff;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

}


.btn-primary:hover{

    transform:translateY(-5px);

    box-shadow:var(--shadow-md);

}



/*==================================================
IMAGE
==================================================*/


.hero-image{

    position:relative;

}


.hero-image img{

    width:100%;

    height:520px;

    object-fit:cover;

    border-radius:35px;

    box-shadow:var(--shadow-lg);

}



.price-card{

    position:absolute;

    bottom:30px;

    left:30px;

    background:#fff;

    padding:25px 35px;

    border-radius:25px;

    box-shadow:var(--shadow-md);

}



.price-card span{

    color:var(--gray);

}


.price-card h2{

    color:var(--primary);

    font-size:2rem;

    margin:8px 0;

}



/*==================================================
SECTION HEADER
==================================================*/


.section{

    padding:100px 0;

}


.section-header{

    text-align:center;

    max-width:700px;

    margin:auto;

    margin-bottom:60px;

}


.section-subtitle{

    color:var(--primary);

    font-weight:700;

    letter-spacing:1px;

}


.section-header h2{

    font-size:2.5rem;

    color:var(--secondary);

    margin:15px 0;

}



/*==================================================
PACKAGE CARD
==================================================*/


.package-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}


.package-card{

    background:#fff;

    padding:40px 30px;

    border-radius:30px;

    border:1px solid var(--border);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}


.package-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-md);

}


.package-card > i{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:22px;

    background:

    linear-gradient(
        135deg,
        var(--primary),
        #42C8FF
    );

    color:white;

    font-size:30px;

    margin-bottom:25px;

}



.package-card h3{

    font-size:1.5rem;

    color:var(--secondary);

    margin-bottom:20px;

}



.package-card ul{

    list-style:none;

}


.package-card li{

    padding:10px 0;

    color:var(--gray);

    border-bottom:1px dashed var(--border);

}



/*==================================================
FEATURE GRID
==================================================*/


.bg-light{

    background:var(--light);

}



.feature-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}



.feature-card{

    background:#fff;

    text-align:center;

    padding:40px 30px;

    border-radius:30px;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}



.feature-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}



.feature-card i{

    font-size:40px;

    color:var(--primary);

    margin-bottom:20px;

}


.feature-card h3{

    color:var(--secondary);

    margin-bottom:15px;

}



.feature-card p{

    color:var(--gray);

    line-height:1.8;

}



/*==================================================
CTA
==================================================*/


.cta-section{

    padding:100px 0;

    text-align:center;

    color:white;

    background:

    linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

}



.cta-section h2{

    font-size:2.8rem;

    margin-bottom:20px;

}


.cta-section p{

    max-width:650px;

    margin:auto;

    line-height:1.8;

    margin-bottom:35px;

}



.btn-whatsapp{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:18px 45px;

    background:#25D366;

    color:#fff;

    border-radius:50px;

    font-weight:700;

    transition:.3s;

}


.btn-whatsapp:hover{

    transform:translateY(-5px);

    box-shadow:var(--shadow-md);

}



/*==================================================
RESPONSIVE
==================================================*/


@media(max-width:1024px){


    .hero-grid{

        grid-template-columns:1fr;

    }


    .hero-image{

        order:-1;

    }


    .package-grid,

    .feature-grid{

        grid-template-columns:repeat(2,1fr);

    }


}



@media(max-width:768px){


    .vip-hero{

        padding:70px 0;

    }


    .hero-content h1{

        font-size:2.2rem;

    }


    .hero-feature{

        grid-template-columns:1fr;

    }


    .hero-image img{

        height:350px;

    }


    .price-card{

        left:15px;

        bottom:15px;

        padding:20px;

    }


    .price-card h2{

        font-size:1.5rem;

    }


    .package-grid,

    .feature-grid{

        grid-template-columns:1fr;

    }


    .section{

        padding:70px 0;

    }


    .section-header h2{

        font-size:2rem;

    }


    .cta-section h2{

        font-size:2rem;

    }


}



@media(max-width:480px){


    .hero-content h1{

        font-size:1.8rem;

    }


    .hero-content p{

        font-size:.95rem;

    }


    .btn-primary,

    .btn-whatsapp{

        width:100%;

        justify-content:center;

    }


    .package-card{

        padding:30px 22px;

    }


}


.footer{

    position:relative;

    background:#08131F;

    color:#fff;

    padding:100px 0 35px;

    overflow:hidden;

}

/*==================================================
BACKGROUND
==================================================*/

.footer::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:linear-gradient(
        90deg,
        var(--primary),
        #4AD1FF
    );

}

.footer::after{

    content:"";

    position:absolute;

    right:-250px;
    top:-250px;

    width:550px;
    height:550px;

    border-radius:50%;

    background:rgba(22,150,232,.05);

}

/*==================================================
CONTAINER
==================================================*/

.footer .container{

    position:relative;

    z-index:2;

}

/*==================================================
GRID
==================================================*/

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.4fr;

    gap:60px;

    margin-bottom:60px;

}

/*==================================================
LOGO
==================================================*/

.footer-logo{

    width:170px;

    margin-bottom:22px;

}

.footer-description{

    color:#B5C1CF;

    line-height:1.9;

    margin-bottom:28px;

    max-width:380px;

}

/*==================================================
TITLE
==================================================*/

.footer-column h3{

    position:relative;

    font-size:22px;

    margin-bottom:30px;

    padding-bottom:12px;

}

.footer-column h3::after{

    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:45px;
    height:3px;

    background:var(--primary);

    border-radius:30px;

}

/*==================================================
LINK
==================================================*/

.footer-column ul{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.footer-column ul li{

    list-style:none;

}

.footer-column ul li a{

    color:#B5C1CF;

    transition:.35s;

}

.footer-column ul li a:hover{

    color:#fff;

    padding-left:8px;

}

/*==================================================
CONTACT
==================================================*/

.footer-contact{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.footer-contact div{

    display:flex;

    align-items:flex-start;

    gap:15px;

}

.footer-contact i{

    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(22,150,232,.12);

    color:var(--primary);

    flex-shrink:0;

}

.footer-contact span{

    color:#B5C1CF;

    line-height:1.8;

}

/*==================================================
SOCIAL
==================================================*/

.footer-social{

    display:flex;

    gap:14px;

    margin-top:30px;

}

.footer-social a{

    width:48px;

    height:48px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:#fff;

    transition:.35s;

}

.footer-social a:hover{

    background:var(--primary);

    transform:translateY(-6px);

}

/*==================================================
BOTTOM
==================================================*/

.footer-bottom{

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

    padding-top:28px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:25px;

}

.footer-copy{

    color:#98A5B5;

    font-size:14px;

}

.footer-bottom-links{

    display:flex;

    gap:24px;

    flex-wrap:wrap;

}

.footer-bottom-links a{

    color:#98A5B5;

    transition:.35s;

}

.footer-bottom-links a:hover{

    color:#fff;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px){

.footer-grid{

    gap:40px;

}

}

@media(max-width:992px){

.footer{

    padding:80px 0 30px;

}

.footer-grid{

    grid-template-columns:repeat(2,1fr);

    gap:45px;

}

.footer-bottom{

    flex-direction:column;

    text-align:center;

}

.footer-bottom-links{

    justify-content:center;

}

}

@media(max-width:768px){

.footer{

    padding:70px 0 25px;

}

.footer-grid{

    grid-template-columns:1fr;

    gap:40px;

}

.footer-logo{

    width:150px;

}

.footer-column h3{

    font-size:20px;

}

.footer-social{

    justify-content:flex-start;

}

}

@media(max-width:480px){

.footer{

    padding:60px 0 25px;

}

.footer-grid{

    gap:35px;

}

.footer-column h3{

    font-size:18px;

}

.footer-description{

    font-size:15px;

}

.footer-contact span{

    font-size:14px;

}

.footer-bottom-links{

    gap:16px;

}

.footer-copy{

    font-size:13px;

}

}
/*==================================================
PHASE 3.2
FLOATING BUTTON
==================================================*/

.whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:64px;

    height:64px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#25D366;

    color:#fff;

    font-size:30px;

    z-index:999;

    text-decoration:none;

    box-shadow:0 18px 40px rgba(0,0,0,.22);

    transition:.35s ease;

    animation:whatsappFloat 3s infinite;

}

.whatsapp:hover{

    transform:translateY(-8px) scale(1.08);

    box-shadow:0 28px 55px rgba(0,0,0,.28);

}

/*==================================================
BACK TO TOP
==================================================*/

#topButton{

    position:fixed;

    right:25px;

    bottom:105px;

    width:56px;

    height:56px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:18px;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:.35s ease;

    z-index:998;

    box-shadow:0 16px 35px rgba(22,150,232,.35);

}

#topButton.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

#topButton:hover{

    background:var(--primary-dark);

    transform:translateY(-6px);

}

/*==================================================
FLOAT ANIMATION
==================================================*/

@keyframes whatsappFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-6px);

    }

    100%{

        transform:translateY(0);

    }

}

/*==================================================
SCROLL ANIMATION
==================================================*/

.fade-up{

    opacity:0;

    transform:translateY(60px);

    transition:all .8s cubic-bezier(.22,.61,.36,1);

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}

.fade-left{

    opacity:0;

    transform:translateX(-60px);

    transition:all .8s cubic-bezier(.22,.61,.36,1);

}

.fade-left.show{

    opacity:1;

    transform:translateX(0);

}

.fade-right{

    opacity:0;

    transform:translateX(60px);

    transition:all .8s cubic-bezier(.22,.61,.36,1);

}

.fade-right.show{

    opacity:1;

    transform:translateX(0);

}

.zoom-in{

    opacity:0;

    transform:scale(.9);

    transition:.8s;

}

.zoom-in.show{

    opacity:1;

    transform:scale(1);

}

/*==================================================
IMAGE EFFECT
==================================================*/

img{

    transition:.45s ease;

}

.destination-card:hover img,
.hotel-card:hover img,
.hero-travel:hover img,
.about-image:hover img{

    transform:scale(1.06);

}

/*==================================================
BUTTON EFFECT
==================================================*/

.btn-primary,
.btn-book,
.btn-outline{

    position:relative;

    overflow:hidden;

}

.btn-primary::before,
.btn-book::before,
.btn-outline::before{

    content:"";

    position:absolute;

    left:-120%;

    top:0;

    width:100%;

    height:100%;

    background:rgba(255,255,255,.18);

    transform:skewX(-30deg);

    transition:.6s;

}

.btn-primary:hover::before,
.btn-book:hover::before,
.btn-outline:hover::before{

    left:130%;

}

/*==================================================
CARD HOVER
==================================================*/

.service-card,
.destination-card,
.fleet-card,
.hotel-card,
.why-card{

    will-change:transform;

}

.service-card:hover,
.destination-card:hover,
.fleet-card:hover,
.hotel-card:hover,
.why-card:hover{

    transform:translateY(-10px);

}

/*==================================================
SECTION SPACING
==================================================*/

section{

    scroll-margin-top:100px;

}

/*==================================================
TEXT SELECTION
==================================================*/

::selection{

    background:var(--primary);

    color:#fff;

}

/*==================================================
CUSTOM SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#EDF4FA;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:30px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-dark);

}

/*==================================================
FOCUS ACCESSIBILITY
==================================================*/

a:focus,
button:focus{

    outline:none;

    box-shadow:0 0 0 4px rgba(22,150,232,.25);

}

/*==================================================
SMALL TABLET
==================================================*/

@media(max-width:768px){

.whatsapp{

    width:58px;

    height:58px;

    font-size:26px;

    right:18px;

    bottom:18px;

}

#topButton{

    width:50px;

    height:50px;

    right:18px;

    bottom:88px;

}

}

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

@media(max-width:480px){

.whatsapp{

    width:54px;

    height:54px;

    font-size:24px;

}

#topButton{

    width:46px;

    height:46px;

    font-size:16px;

    bottom:80px;

}

section{

    scroll-margin-top:80px;

}

}

/*==================================================
EXTRA SMALL
==================================================*/

@media(max-width:360px){

.whatsapp{

    right:12px;

}

#topButton{

    right:12px;

}

}