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

:root{

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

    --secondary:#0D1B2A;

    --white:#ffffff;
    --light:#F7FAFC;

    --gray:#64748B;
    --border:#E5E7EB;
    --text:#1F2937;


    --shadow-sm:
    0 8px 20px rgba(0,0,0,.05);

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

    --shadow-lg:
    0 25px 60px rgba(0,0,0,.15);


    --radius-md:18px;
    --radius-lg:24px;
    --radius-xl:40px;
    --radius-pill:999px;


    --transition:.35s ease;


    --container-width:1200px;

}



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


*,
*::before,
*::after{

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

    height:auto;

    display:block;

}



a{

    text-decoration:none;

}



ul{

    list-style:none;

}




.container{

    width:min(90%,var(--container-width));

    margin:auto;

}








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


#header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    padding:20px 0;

}





.navbar{

    display:flex;

    align-items:center;

    justify-content:space-between;


    padding:18px 30px;


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


    backdrop-filter:blur(12px);


    border-radius:var(--radius-xl);


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


}





/* LOGO */


.logo h2{

    font-size:28px;

    font-weight:800;

    color:var(--secondary);

}



.logo span{

    color:var(--primary);

}







/* DESKTOP MENU */


.nav-menu{

    display:flex;

    align-items:center;

    gap:35px;


}



.nav-menu a{

    color:var(--text);

    font-size:15px;

    font-weight:600;

    transition:.3s;

}



.nav-menu a:hover,
.nav-menu .active{


    color:var(--primary);

}







/* HEADER BUTTON */


.header-btn{


    display:flex;

    align-items:center;

    gap:10px;


    padding:14px 28px;


    border-radius:var(--radius-pill);


    background:var(--primary);


    color:white;


    font-weight:600;


    transition:.3s;


}


.header-btn:hover{

    background:var(--primary-dark);

}





/* HAMBURGER */


.menu-toggle{


    display:none;


    font-size:26px;


    cursor:pointer;


    color:var(--secondary);


}







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


@media(max-width:992px){



#header{

    padding:15px 0;

}



.navbar{


    padding:15px 22px;

}



.header-btn{

    display:none;

}




.menu-toggle{


    display:flex;


    align-items:center;


    justify-content:center;


}



/* MOBILE MENU */


.nav-menu{


    position:fixed;


    top:90px;


    left:50%;


    transform:translateX(-50%) translateY(-20px);


    width:90%;


    max-width:420px;



    background:white;


    padding:30px;


    border-radius:25px;


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



    flex-direction:column;


    align-items:flex-start;


    gap:0;


    opacity:0;


    visibility:hidden;



    transition:.35s ease;


}



/* OPEN STATE */


.nav-menu.active{


    opacity:1;


    visibility:visible;


    transform:translateX(-50%)
    translateY(0);


}




.nav-menu li{


    width:100%;

}



.nav-menu a{


    display:block;

    width:100%;


    padding:15px 0;


    border-bottom:1px solid #eee;


}



}







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


@media(max-width:480px){


.navbar{

    padding:14px 18px;

}



.logo h2{

    font-size:24px;

}



.nav-menu{

    width:92%;

}


}
/*==================================================
GLOBAL SECTION
==================================================*/


section{

    scroll-margin-top:100px;

}



.section-subtitle{


    display:inline-block;


    font-size:14px;


    font-weight:700;


    letter-spacing:2px;


    color:var(--primary);


}



.section-header{


    max-width:700px;


    margin:0 auto 60px;


    text-align:center;


}



.section-header h2{


    font-size:clamp(28px,4vw,38px);


    line-height:1.3;


    color:var(--secondary);


    margin:15px 0;


}



.section-header p{


    color:var(--gray);


    line-height:1.8;


    font-size:16px;


}









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


.tour-hero{


    padding:

    170px 0 100px;


    background:

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


}




.tour-wrapper{


    display:grid;


    grid-template-columns:

    repeat(2,1fr);



    gap:70px;


    align-items:center;


}







/* CONTENT */


.tour-content h1{


    font-size:

    clamp(36px,5vw,52px);



    line-height:1.15;


    font-weight:800;


    color:var(--secondary);


    margin:20px 0 25px;


}



.tour-content p{


    font-size:18px;


    line-height:1.8;


    color:var(--gray);


    max-width:550px;


}









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


.tour-buttons{


    display:flex;


    gap:20px;


    margin-top:35px;


    flex-wrap:wrap;


}





.btn-primary{


    display:inline-flex;


    align-items:center;


    justify-content:center;


    gap:10px;


    padding:16px 35px;


    background:var(--primary);


    color:white;


    border-radius:var(--radius-pill);


    font-weight:600;


    transition:.35s;


}



.btn-primary:hover{


    background:var(--primary-dark);


    transform:translateY(-3px);


}





.btn-outline{


    display:flex;


    align-items:center;


    justify-content:center;


    padding:16px 35px;


    border-radius:var(--radius-pill);


    border:

    1px solid var(--primary);



    color:var(--primary);


    font-weight:600;


    transition:.35s;


}



.btn-outline:hover{


    background:var(--primary);


    color:white;


}










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


.tour-stat{


    display:flex;


    gap:45px;


    margin-top:50px;


    flex-wrap:wrap;


}



.tour-stat div{


    display:flex;


    flex-direction:column;


}



.tour-stat strong{


    font-size:

    clamp(24px,4vw,32px);


    color:var(--primary);


}



.tour-stat span{


    margin-top:8px;


    font-size:14px;


    color:var(--gray);


}











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


.tour-image{


    position:relative;


}



.tour-image img{


    width:100%;


    height:550px;


    object-fit:cover;


    border-radius:var(--radius-xl);


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


}







.tour-card{


    position:absolute;


    left:-30px;


    bottom:35px;


    display:flex;


    align-items:center;


    gap:15px;


    background:white;


    padding:20px 25px;


    border-radius:var(--radius-lg);


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


}



.tour-card i{


    width:55px;


    height:55px;


    display:flex;


    justify-content:center;


    align-items:center;


    border-radius:50%;


    background:

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



    color:var(--primary);


    font-size:24px;


}



.tour-card h4{


    color:var(--secondary);


    margin-bottom:5px;


}



.tour-card p{


    font-size:13px;


    color:var(--gray);


}









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


@media(max-width:992px){



.tour-hero{


    padding:

    130px 0 80px;


}




.tour-wrapper{


    grid-template-columns:1fr;


    gap:50px;


}



.tour-content{


    text-align:center;


}



.tour-content p{


    margin:auto;


}



.tour-buttons{


    justify-content:center;


}



.tour-stat{


    justify-content:center;


}




.tour-image{


    max-width:700px;


    margin:auto;


}




.tour-image img{


    height:500px;


}



.tour-card{


    left:20px;


    bottom:25px;


}



}









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


@media(max-width:768px){



.tour-hero{


    padding:

    120px 0 70px;


}




.tour-content h1{


    font-size:34px;


}



.tour-content p{


    font-size:16px;


    line-height:1.7;


}





.tour-buttons{


    flex-direction:column;


    width:100%;


}



.btn-primary,
.btn-outline{


    width:100%;


    padding:15px 25px;


}




.tour-stat{


    gap:25px;


}



.tour-stat div{


    min-width:90px;


}



.tour-image img{


    height:380px;


}



.tour-card{


    position:relative;


    left:0;


    bottom:0;


    margin-top:20px;


    padding:18px;


}



.tour-card i{


    width:45px;


    height:45px;


    font-size:20px;


}



}








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


@media(max-width:480px){



.tour-content h1{


    font-size:30px;


}



.section-header{


    margin-bottom:40px;


}




.tour-stat{


    justify-content:center;


}



.tour-image img{


    height:320px;


}



.tour-card{


    flex-direction:column;


    text-align:center;


}



}
/*==================================================
WHY SECTION
==================================================*/


.why-section{


    padding:100px 0;


}






.card-grid{


    display:grid;


    grid-template-columns:

    repeat(3,1fr);


    gap:30px;


}






.service-card{


    padding:40px 30px;


    background:white;


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


    border-radius:var(--radius-lg);


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


    transition:.35s ease;


}





.service-card:hover{


    transform:translateY(-8px);


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


}







.icon-box{


    width:65px;


    height:65px;


    display:flex;


    justify-content:center;


    align-items:center;


    background:

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



    color:var(--primary);


    font-size:26px;


    border-radius:var(--radius-md);


    margin-bottom:25px;


}





.service-card h3{


    font-size:22px;


    color:var(--secondary);


    margin-bottom:15px;


}





.service-card p{


    color:var(--gray);


    line-height:1.8;


    font-size:16px;


}









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


.destination-section{


    padding:100px 0;


}







.destination-grid{


    display:grid;


    grid-template-columns:

    repeat(3,1fr);


    gap:30px;


}






.destination-card{


    position:relative;


    height:420px;


    overflow:hidden;


    border-radius:var(--radius-xl);


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


}





.destination-card img{


    width:100%;


    height:100%;


    object-fit:cover;


    transition:.45s ease;


}





.destination-card:hover img{


    transform:scale(1.1);


}






.destination-overlay{


    position:absolute;


    bottom:0;


    left:0;


    width:100%;


    padding:35px 25px;



    background:

    linear-gradient(
        transparent,
        rgba(13,27,42,.85)
    );



    color:white;


}






.destination-overlay h3{


    font-size:24px;


    margin-bottom:8px;


}





.destination-overlay p{


    font-size:14px;


    line-height:1.6;


}











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


@media(max-width:992px){



.why-section,
.destination-section{


    padding:80px 0;


}




.card-grid{


    grid-template-columns:

    repeat(2,1fr);


}





.destination-grid{


    grid-template-columns:

    repeat(2,1fr);


}





.destination-card{


    height:380px;


}



}











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


@media(max-width:768px){



.why-section,
.destination-section{


    padding:70px 0;


}





.card-grid{


    grid-template-columns:1fr;


    gap:25px;


}





.service-card{


    padding:35px 25px;


    text-align:center;


}




.icon-box{


    margin:

    0 auto 25px;


}





.destination-grid{


    grid-template-columns:1fr;


    gap:25px;


}





.destination-card{


    height:360px;


}





.destination-overlay{


    padding:30px 20px;


}





.destination-overlay h3{


    font-size:22px;


}



}









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


@media(max-width:480px){



.service-card{


    padding:30px 20px;


}




.service-card h3{


    font-size:20px;


}




.destination-card{


    height:320px;


}





.destination-overlay p{


    font-size:13px;


}



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


.package-section{


    padding:100px 0;


    background:var(--light);


}





.package-grid{


    display:grid;


    grid-template-columns:

    repeat(3,1fr);


    gap:30px;


}






.package-card{


    background:white;


    padding:40px 35px;


    border-radius:var(--radius-lg);


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


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


    transition:.35s ease;


    display:flex;


    flex-direction:column;


    justify-content:space-between;


}





.package-card:hover{


    transform:translateY(-8px);


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


}






.package-card.featured{


    background:var(--secondary);


    color:white;


    transform:translateY(-15px);


}





.package-card.featured:hover{


    transform:translateY(-20px);


}








.package-card h3{


    font-size:25px;


    color:var(--secondary);


    margin-bottom:25px;


}





.package-card.featured h3{


    color:white;


}







.package-card ul{


    list-style:none;


    margin-bottom:35px;


}





.package-card li{


    margin-bottom:15px;


    color:var(--gray);


    line-height:1.6;


}





.package-card.featured li{


    color:#CBD5E1;


}






.package-card a{


    display:inline-flex;


    justify-content:center;


    align-items:center;


    width:max-content;


    

    padding:14px 28px;


    background:var(--primary);


    color:white;


    border-radius:var(--radius-pill);


    font-weight:600;


    transition:.35s;


}





.package-card a:hover{


    background:var(--primary-dark);


}










/*==================================================
PROCESS SECTION
==================================================*/


.process-section{


    padding:100px 0;


}






.process-grid{


    display:grid;


    grid-template-columns:

    repeat(3,1fr);


    gap:35px;


}






.process-card{


    padding:40px 30px;


    text-align:center;


    background:var(--light);


    border-radius:var(--radius-lg);


    transition:.35s;


}





.process-card:hover{


    transform:translateY(-8px);


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


}







.number{


    width:70px;


    height:70px;


    display:flex;


    justify-content:center;


    align-items:center;


    margin:0 auto 25px;


    background:var(--primary);


    color:white;


    font-size:25px;


    font-weight:700;


    border-radius:50%;


}






.process-card h3{


    color:var(--secondary);


    margin-bottom:15px;


    font-size:22px;


}





.process-card p{


    color:var(--gray);


    line-height:1.8;


}











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


@media(max-width:992px){



.package-section,
.process-section{


    padding:80px 0;


}





.package-grid{


    grid-template-columns:

    repeat(2,1fr);


}





.package-card.featured{


    transform:none;


}



.package-card.featured:hover{


    transform:translateY(-8px);


}





.process-grid{


    grid-template-columns:

    repeat(2,1fr);


}




}









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


@media(max-width:768px){



.package-section,
.process-section{


    padding:70px 0;


}





.package-grid{


    grid-template-columns:1fr;


    gap:25px;


}





.package-card{


    padding:35px 25px;


}





.package-card h3{


    font-size:22px;


}





.package-card a{


    width:100%;


}





.package-card.featured{


    transform:none;


}




.process-grid{


    grid-template-columns:1fr;


    gap:25px;


}





.process-card{


    padding:35px 25px;


}



.number{


    width:65px;


    height:65px;


    font-size:22px;


}



}









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


@media(max-width:480px){



.package-card{


    padding:30px 20px;


}





.package-card h3{


    font-size:20px;


}





.package-card li{


    font-size:14px;


}




.process-card h3{


    font-size:20px;


}




.process-card p{


    font-size:14px;


}



}
/*==================================
FLOATING WHATSAPP
==================================*/

.whatsapp-float{

    position:fixed;

    right:30px;

    bottom:30px;

    width:68px;

    height:68px;

    border-radius:50%;

    background:#25D366;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:34px;

    text-decoration:none;

    box-shadow:0 18px 45px rgba(37,211,102,.35);

    z-index:9999;

    transition:.35s ease;

    animation:waPulse 2s infinite;

}

.whatsapp-float:hover{

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

    background:#1EBE5B;

}

.whatsapp-float i{

    position:relative;

    z-index:2;

}

/*==================================
TOOLTIP
==================================*/

.wa-tooltip{

    position:absolute;

    right:82px;

    background:#fff;

    color:#1F2937;

    font-size:14px;

    font-weight:600;

    white-space:nowrap;

    padding:12px 18px;

    border-radius:50px;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

    opacity:0;

    visibility:hidden;

    transform:translateX(15px);

    transition:.35s;

}

.wa-tooltip::after{

    content:"";

    position:absolute;

    right:-7px;

    top:50%;

    transform:translateY(-50%) rotate(45deg);

    width:14px;

    height:14px;

    background:#fff;

}

.whatsapp-float:hover .wa-tooltip{

    opacity:1;

    visibility:visible;

    transform:translateX(0);

}

/*==================================
PULSE
==================================*/

.whatsapp-float::before{

    content:"";

    position:absolute;

    inset:-10px;

    border-radius:50%;

    border:2px solid rgba(37,211,102,.45);

    animation:waRing 2s infinite;

}

@keyframes waRing{

    0%{

        transform:scale(.8);

        opacity:1;

    }

    100%{

        transform:scale(1.5);

        opacity:0;

    }

}

@keyframes waPulse{

    0%,100%{

        box-shadow:0 18px 45px rgba(37,211,102,.35);

    }

    50%{

        box-shadow:0 18px 55px rgba(37,211,102,.6);

    }

}

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

@media(max-width:992px){

.whatsapp-float{

    width:62px;

    height:62px;

    right:22px;

    bottom:22px;

    font-size:30px;

}

}

/*==================================
PHONE
==================================*/

@media(max-width:576px){

.whatsapp-float{

    width:58px;

    height:58px;

    right:18px;

    bottom:18px;

    font-size:28px;

}

.wa-tooltip{

    display:none;

}

}
/*==================================================
PHASE 5
RESPONSIVE MOBILE OPTIMIZATION
==================================================*/


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

@media(max-width:1200px){


.tour-wrapper{

    gap:40px;

}



.tour-content h1{

    font-size:44px;

}



.tour-image img{

    height:480px;

}



.card-grid,
.package-grid,
.process-grid,
.destination-grid{


    gap:25px;

}



.footer-grid{

    grid-template-columns:
    1.5fr
    1fr
    1fr;


}


}





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


@media(max-width:992px){



.container{

    width:92%;

}



/* HEADER */

#header{

    padding:15px 0;

}



.navbar{

    padding:15px 20px;

}



.logo h2{

    font-size:24px;

}



/* HERO */


.tour-hero{

    padding:140px 0 80px;

}



.tour-wrapper{

    grid-template-columns:1fr;

    text-align:center;

}



.tour-content p{

    margin:auto;

}



.tour-buttons{

    justify-content:center;

}



.tour-stat{

    justify-content:center;

}



.tour-image{

    margin-top:30px;

}



.tour-image img{

    height:450px;

}



.tour-card{


    left:20px;


}



/* SECTION */


.section-header h2{


    font-size:32px;


}



.card-grid,
.destination-grid,
.package-grid,
.process-grid{


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


}



.package-card.featured{


    transform:none;

}



}





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


@media(max-width:768px){



.container{


    width:90%;


}



/* HEADER */


.navbar{


    border-radius:22px;


}



.menu-toggle{

    display:flex;

}



.nav-menu{

    top:85px;

}




/* HERO */


.tour-hero{


    padding:120px 0 60px;


}



.tour-content h1{


    font-size:36px;


}



.tour-content p{


    font-size:16px;


}



.tour-buttons{


    flex-direction:column;


    width:100%;


}



.btn-primary,
.btn-outline{


    width:100%;

    justify-content:center;


}



.tour-stat{


    flex-direction:column;


    gap:25px;


}



.tour-image img{


    height:380px;


    border-radius:30px;


}



.tour-card{


    position:relative;


    left:0;


    bottom:0;


    margin-top:-40px;


    width:90%;


    margin-left:auto;


    margin-right:auto;


}





/* SECTION */


.why-section,
.destination-section,
.package-section,
.process-section{


    padding:70px 0;


}



.section-header{


    margin-bottom:40px;


}



.section-header h2{


    font-size:28px;


}





.card-grid,
.destination-grid,
.package-grid,
.process-grid{


    grid-template-columns:1fr;


}





.service-card,
.package-card,
.process-card{


    padding:30px 25px;


}





.destination-card{


    height:350px;


}



/* CTA */


.tour-cta{


    padding:70px 20px;


}



.tour-cta h2{


    font-size:32px;


}




.footer-grid{


    grid-template-columns:1fr;


}



.footer-bottom{


    flex-direction:column;


    text-align:center;


}



}





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


@media(max-width:480px){



.container{


    width:88%;


}



/* HEADER */


.navbar{


    padding:14px 18px;


}



.logo h2{


    font-size:22px;


}



/* HERO */


.tour-content h1{


    font-size:30px;


    line-height:1.25;


}



.section-subtitle{


    font-size:12px;


}



.tour-image img{


    height:320px;


}



.tour-card{


    padding:15px;


}



.tour-card i{


    width:45px;

    height:45px;


    font-size:18px;


}



.tour-card h4{


    font-size:15px;


}



/* CARD */


.icon-box{


    width:55px;


    height:55px;


    font-size:22px;


}



.service-card h3{


    font-size:20px;


}



.destination-card{


    height:300px;


}



.destination-overlay{


    padding:25px 20px;


}



.destination-overlay h3{


    font-size:20px;


}



.package-card h3{


    font-size:22px;


}



/* FOOTER */


.footer{


    padding-top:60px;


}



.footer-logo{


    width:140px;


}



.footer-column h3{


    font-size:18px;


}




.whatsapp{


    width:55px;


    height:55px;


    font-size:25px;


    right:15px;


    bottom:15px;


}



#topButton{


    width:45px;


    height:45px;


    right:15px;


    bottom:85px;


}



}






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


@media(max-width:360px){



.tour-content h1{


    font-size:26px;


}



.tour-content p{


    font-size:14px;


}



.tour-stat strong{


    font-size:26px;


}



.btn-primary,
.btn-outline{


    padding:14px 20px;


}



.destination-card{


    height:260px;


}


}
/*==================================================
PHASE 6 HEADER SCROLL EFFECT
==================================================*/


#header.scrolled{


    padding:10px 0;


}


#header.scrolled .navbar{


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


}





/*==================================================
MENU ANIMATION
==================================================*/


.menu-toggle i{


    transition:.3s ease;


}



.menu-toggle.open i{


    transform:rotate(180deg);


}







/*==================================================
MOBILE MENU FIX
==================================================*/


@media(max-width:992px){


.nav-menu{


    visibility:hidden;


    opacity:0;


    transform:
    translateY(-20px);


}



.nav-menu.active{


    visibility:visible;


    opacity:1;


    transform:
    translateY(0);


}



}
/*==================================================
PHASE 7
CTA SECTION FINAL
==================================================*/


.tour-cta{

    position:relative;

    padding:100px 20px;

    text-align:center;

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

    overflow:hidden;

}



.tour-cta::before{


    content:"";


    position:absolute;


    width:500px;

    height:500px;


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


    border-radius:50%;


    top:-250px;

    right:-200px;


}





.tour-cta .container{


    position:relative;

    z-index:2;


}




.tour-cta h2{


    font-size:42px;

    font-weight:800;

    color:white;

    margin-bottom:20px;


}



.tour-cta p{


    color:rgba(255,255,255,.85);

    font-size:18px;

    line-height:1.8;

    max-width:650px;

    margin:

    0 auto 35px;


}




.tour-cta .btn-primary{


    background:white;

    color:#1696E8;


}



.tour-cta .btn-primary:hover{


    background:#F1F5F9;

    color:#0F6DA8;


}







/*==================================================
FOOTER FINAL
==================================================*/


.footer{


    background:#08131F;

    padding:90px 0 30px;

    color:white;

    position:relative;

}



.footer::before{


    content:"";


    position:absolute;

    top:0;

    left:0;


    width:100%;


    height:4px;


    background:

    linear-gradient(
        90deg,
        #1696E8,
        #4AD1FF
    );


}





.footer-grid{


    display:grid;


    grid-template-columns:

    2fr
    1fr
    1fr
    1.4fr;


    gap:50px;


}





.footer-logo{


    width:170px;


    margin-bottom:20px;


}




.footer-column p{


    color:#B5C1CF;

    line-height:1.9;

    font-size:15px;


}





.footer-column h3{


    font-size:21px;

    margin-bottom:25px;

    color:white;


}





.footer-column ul{


    list-style:none;


    padding:0;


}



.footer-column ul li{


    margin-bottom:14px;


}




.footer-column ul li a{


    color:#B5C1CF;

    text-decoration:none;

    transition:.3s;


}



.footer-column ul li a:hover{


    color:white;

    padding-left:8px;


}







/* SOCIAL */


.footer-social{


    display:flex;


    gap:12px;


    margin-top:25px;


}



.footer-social a{


    width:45px;


    height:45px;


    border-radius:50%;


    display:flex;


    align-items:center;


    justify-content:center;


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


    color:white;


    transition:.35s;


}



.footer-social a:hover{


    background:#1696E8;


    transform:
    translateY(-5px);


}







/* CONTACT */


.footer-contact{


    display:flex;

    flex-direction:column;

    gap:18px;


}



.footer-contact div{


    display:flex;


    align-items:center;

    gap:15px;


}




.footer-contact i{


    width:38px;


    height:38px;


    display:flex;


    align-items:center;


    justify-content:center;


    border-radius:50%;


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


    color:#1696E8;


}



.footer-contact span{


    color:#B5C1CF;

    font-size:14px;


}






/* FOOTER BOTTOM */


.footer-bottom{


    margin-top:50px;


    padding-top:25px;


    border-top:

    1px solid rgba(255,255,255,.1);


    display:flex;


    justify-content:space-between;


    align-items:center;


}




.footer-copy{


    color:#94A3B8;


    font-size:14px;


}



.footer-bottom-links{


    display:flex;


    gap:25px;


}




.footer-bottom-links a{


    color:#94A3B8;

    text-decoration:none;


}



.footer-bottom-links a:hover{


    color:white;


}









/*==================================================
RESPONSIVE CTA + FOOTER
==================================================*/


@media(max-width:992px){



.tour-cta h2{


    font-size:36px;


}




.footer-grid{


    grid-template-columns:

    repeat(2,1fr);


}



.footer-bottom{


    flex-direction:column;

    gap:20px;

    text-align:center;


}


}






@media(max-width:768px){



.tour-cta{


    padding:70px 20px;


}



.tour-cta h2{


    font-size:30px;


}



.tour-cta p{


    font-size:16px;


}



.footer{


    padding:70px 0 25px;


}



.footer-grid{


    grid-template-columns:1fr;


    gap:35px;


}



.footer-logo{


    width:150px;


}



.footer-bottom-links{


    justify-content:center;

    flex-wrap:wrap;


}



}






@media(max-width:480px){



.tour-cta h2{


    font-size:26px;


}



.tour-cta p{


    font-size:14px;


}



.footer-column h3{


    font-size:18px;


}



.footer-contact span{


    font-size:13px;


}



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

}

}



