/*==================================================
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;

}



/*==================================================
RESET
==================================================*/


*{

margin:0;

padding:0;

box-sizing:border-box;

}



html{

scroll-behavior:smooth;

}



body{

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

color:var(--text);

background:#fff;

overflow-x:hidden;

}



img{

max-width:100%;

display:block;

}



a{

text-decoration:none;

}



.container{

width:90%;

max-width:1200px;

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;

}

}

/*==================================================
HERO PRIVATE TOUR
==================================================*/


.private-hero{


padding:170px 0 100px;


background:

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


}





.private-wrapper{


display:grid;


grid-template-columns:1fr 1fr;


gap:70px;


align-items:center;


}






.section-subtitle{


display:inline-block;


font-size:14px;


font-weight:700;


letter-spacing:2px;


color:var(--primary);


margin-bottom:15px;


}





.private-content h1{


font-size:52px;


line-height:1.15;


font-weight:800;


color:var(--secondary);


margin-bottom:25px;


}





.private-content p{


font-size:18px;


line-height:1.9;


color:var(--gray);


max-width:560px;


}





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


.hero-buttons{


display:flex;

gap:20px;


margin-top:35px;


}



.btn-primary{


display:flex;


align-items:center;


gap:10px;


padding:16px 35px;


background:var(--primary);


color:white;


border-radius:50px;


font-weight:600;


transition:.35s;


}



.btn-primary:hover{


background:var(--primary-dark);


transform:translateY(-4px);


}





.btn-outline{


display:flex;


align-items:center;


justify-content:center;


padding:16px 35px;


border-radius:50px;


border:2px solid var(--primary);


color:var(--primary);


font-weight:600;


transition:.35s;


}



.btn-outline:hover{


background:var(--primary);


color:white;


}






/*==================================================
STAT
==================================================*/


.private-stat{


display:flex;


gap:50px;


margin-top:55px;


}



.private-stat strong{


display:block;


font-size:34px;


color:var(--primary);


}



.private-stat span{


color:var(--gray);


font-size:14px;


}








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


.private-image{


position:relative;


}




.private-image img{


height:550px;


width:100%;


object-fit:cover;


border-radius:40px;


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


}







/* FLOAT CARD */


.floating-card{


position:absolute;


left:-35px;


bottom:35px;


display:flex;


align-items:center;


gap:15px;


padding:20px 25px;


background:white;


border-radius:25px;


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


}



.floating-card i{


width:60px;


height:60px;


border-radius:50%;


display:flex;


align-items:center;


justify-content:center;


background:#EAF6FD;


color:var(--primary);


font-size:25px;


}



.floating-card h4{


color:var(--secondary);


}



.floating-card p{


font-size:13px;


color:var(--gray);


}






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


@media(max-width:992px){


#header{

top:12px;

}


.navbar{


padding:15px 25px;


}



.nav-menu{


position:fixed;


top:100px;


left:-100%;


width:90%;


margin:auto;


right:0;


background:white;


border-radius:30px;


padding:25px;


display:flex;


flex-direction:column;


align-items:flex-start;


gap:0;


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


transition:.4s;


}



.nav-menu.active{


left:5%;


}



.nav-menu li{


width:100%;


}



.nav-menu a{


display:block;


padding:15px 0;


border-bottom:1px solid #eee;


}



.header-btn{


display:none;


}



.menu-toggle{


display:block;


}



.private-wrapper{


grid-template-columns:1fr;


}



.private-content h1{


font-size:42px;


}


}





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


@media(max-width:576px){


.container{

width:92%;

}



.navbar{


padding:14px 20px;


border-radius:40px;


}



.logo h2{


font-size:22px;


}



.private-hero{


padding-top:120px;


}



.private-content h1{


font-size:32px;


}



.private-content p{


font-size:16px;


}



.hero-buttons{


flex-direction:column;


}



.btn-primary,

.btn-outline{


width:100%;


justify-content:center;


}



.private-stat{


flex-direction:column;


gap:20px;


}



.private-image img{


height:350px;


}



.floating-card{


left:10px;


bottom:20px;


padding:15px;


}



.floating-card i{


width:45px;


height:45px;


font-size:18px;


}
}
/*==================================================
PRIVATE PACKAGE SECTION
==================================================*/

.package-section{

    padding:100px 0;

    background:#fff;

}



.section-header{

    max-width:750px;

    text-align:center;

    margin:0 auto 60px;

}


.section-header h2{

    font-size:42px;

    color:var(--secondary);

    margin:15px 0;

    line-height:1.3;

}


.section-header p{

    color:var(--gray);

    line-height:1.8;

}




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


.package-grid{


    display:grid;

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

    gap:30px;


}




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


.package-card{


    position:relative;

    padding:40px 30px;


    background:#fff;


    border-radius:30px;


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


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


    transition:.4s ease;


    overflow:hidden;


}



.package-card::before{


    content:"";


    position:absolute;


    top:0;

    left:0;


    width:100%;


    height:5px;


    background:linear-gradient(
        90deg,
        var(--primary),
        #42C8FF
    );


    transform:scaleX(0);


    transform-origin:left;


    transition:.4s;


}



.package-card:hover::before{


    transform:scaleX(1);


}




.package-card:hover{


    transform:translateY(-12px);


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


}




/* ICON */


.package-card .icon-box{


    width:75px;


    height:75px;


    display:flex;


    justify-content:center;


    align-items:center;


    border-radius:22px;


    background:

    linear-gradient(
        135deg,
        #1696E8,
        #42C8FF
    );


    color:white;


    font-size:30px;


    margin-bottom:25px;


    box-shadow:

    0 15px 30px rgba(22,150,232,.25);


}



.package-card h3{


    font-size:26px;


    color:var(--secondary);


    margin-bottom:15px;


}



.package-card p{


    color:var(--gray);


    line-height:1.8;


    margin-bottom:30px;


}



.package-card a{


    display:inline-flex;


    padding:13px 28px;


    border-radius:50px;


    background:var(--primary);


    color:white;


    font-weight:600;


    transition:.3s;


}



.package-card a:hover{


    background:var(--primary-dark);


}






/*==================================================
DESTINATION SECTION
==================================================*/


.destination-section{


    padding:100px 0;


    background:#F8FBFD;


}





.destination-grid{


    display:grid;


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


    gap:30px;


}






.destination-card{


    background:white;


    border-radius:28px;


    overflow:hidden;


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


    transition:.4s;


}





.destination-card:hover{


    transform:translateY(-10px);


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


}





.destination-card img{


    width:100%;


    height:280px;


    object-fit:cover;


    transition:.5s;


}



.destination-card:hover img{


    transform:scale(1.08);


}




.destination-card h3{


    font-size:25px;


    color:var(--secondary);


    padding:25px 25px 10px;


}




.destination-card p{


    padding:0 25px 30px;


    color:var(--gray);


    line-height:1.8;


}







/*==================================================
FLEET SECTION
==================================================*/


.fleet-section{


    padding:100px 0;


    background:white;


}





.fleet-grid{


    display:grid;


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


    gap:30px;


}






.fleet-card{


    border-radius:30px;


    overflow:hidden;


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


    background:white;


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


    transition:.4s;


}





.fleet-card:hover{


    transform:translateY(-12px);


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


}




.fleet-card{
    overflow:hidden;
    border-radius:20px;
}

.fleet-card img{

    width:100%;
    height:260px;

    display:block;

    object-fit:cover;
    object-position:center;

    transition:.45s ease;

}

.fleet-card:hover img{

    transform:scale(1.08);

}


.fleet-card:hover img{


    transform:scale(1.05);


}







.fleet-card h3{


    font-size:24px;


    color:var(--secondary);


    margin:25px 25px 10px;


}




.fleet-card p{


    color:var(--gray);


    line-height:1.8;


    margin:0 25px 30px;


}







/*==================================================
PRIVATE TOUR BENEFIT
==================================================*/


.why-private{


    padding:100px 0;


    background:#F8FBFD;


}




.why-grid{


    display:grid;


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


    gap:30px;


}





.why-card{


    text-align:center;


    padding:45px 30px;


    background:white;


    border-radius:30px;


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


    transition:.4s;


}





.why-card:hover{


    transform:translateY(-10px);


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


}




.why-card i{


    width:85px;


    height:85px;


    display:flex;


    justify-content:center;


    align-items:center;


    margin:auto;


    border-radius:50%;


    background:#EAF6FD;


    color:var(--primary);


    font-size:35px;


}





.why-card h3{


    margin:25px 0 15px;


    color:var(--secondary);


    font-size:24px;


}




.why-card p{


    color:var(--gray);


    line-height:1.8;


}







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


.private-cta{


    padding:100px 0;


    background:

    linear-gradient(
        135deg,
        #1696E8,
        #0F6DA8
    );


    text-align:center;


    color:white;


}



.private-cta h2{


    font-size:45px;


    margin-bottom:20px;


}



.private-cta p{


    margin-bottom:35px;


    font-size:18px;


}



.private-cta a{


    display:inline-flex;


    align-items:center;


    gap:10px;


    padding:16px 35px;


    background:white;


    color:var(--primary);


    border-radius:50px;


    font-weight:700;


    transition:.35s;


}



.private-cta a:hover{


    transform:translateY(-5px);


}







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


@media(max-width:992px){


.package-grid,

.destination-grid,

.fleet-grid{


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


}




.why-grid{


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


}



}





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


@media(max-width:576px){



.package-section,

.destination-section,

.fleet-section,

.why-private,

.private-cta{


    padding:80px 0;


}



.section-header h2{


    font-size:30px;


}



.package-grid,

.destination-grid,

.fleet-grid,

.why-grid{


    grid-template-columns:1fr;


}




.package-card{


    padding:35px 25px;


}




.destination-card img{


    height:220px;


}



.fleet-card img{


    height:220px;


}



.private-cta h2{


    font-size:32px;


}


}

.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;

}

}