/*==================================================
PHASE 1.1
ROOT
==================================================*/

:root{

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

    --secondary:#0D1B2A;

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

    --light:#F8FAFC;
    --white:#FFFFFF;

    --border:#E5E7EB;

    --shadow-sm:0 10px 25px rgba(0,0,0,.06);
    --shadow-md:0 20px 50px rgba(0,0,0,.10);
    --shadow-lg:0 30px 70px rgba(0,0,0,.18);

    --radius:24px;

    --transition:.35s ease;

}
/*==================================================
CONTACT SECTION
==================================================*/

.contact-section{

    padding:110px 0;

    background:var(--light);

}

.contact-wrapper{

    display:grid;

    grid-template-columns:1.2fr 1fr;

    gap:40px;

    margin-top:60px;

}

/*=====================
MAP
=====================*/

.map-box{

    overflow:hidden;

    border-radius:var(--radius);

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

    min-height:580px;

}

.map-box iframe{

    width:100%;

    height:100%;

    border:none;

}

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

.contact-card{

    background:var(--white);

    padding:45px;

    border-radius:var(--radius);

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

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

    transition:var(--transition);

}

.contact-card:hover{

    transform:translateY(-8px);

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

}

.contact-card h3{

    font-size:32px;

    color:var(--secondary);

    margin-bottom:18px;

}

.contact-card>p{

    color:var(--gray);

    line-height:1.8;

    margin-bottom:35px;

}

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

.contact-list{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.contact-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

}

.contact-icon{

    width:60px;

    height:60px;

    flex-shrink:0;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

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

    color:var(--primary);

    font-size:22px;

    transition:.35s;

}

.contact-item:hover .contact-icon{

    background:var(--primary);

    color:#fff;

    transform:rotate(-10deg);

}

.contact-item strong{

    display:block;

    color:var(--secondary);

    font-size:17px;

    margin-bottom:6px;

}

.contact-item span{

    color:var(--gray);

    line-height:1.7;

}

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

.contact-btn{

    margin-top:40px;

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:16px 34px;

    border-radius:50px;

    background:var(--primary);

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.contact-btn:hover{

    background:var(--primary-dark);

    transform:translateY(-4px);

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

}

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

@media(max-width:992px){

.contact-wrapper{

    grid-template-columns:1fr;

}

.map-box{

    min-height:420px;

}

.contact-card{

    padding:35px;

}

}

@media(max-width:576px){

.contact-section{

    padding:80px 0;

}

.contact-card{

    padding:28px;

}

.contact-card h3{

    font-size:26px;

}

.contact-icon{

    width:50px;

    height:50px;

    font-size:18px;

}

.contact-btn{

    width:100%;

    justify-content:center;

}

.map-box{

    min-height:320px;

}

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

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    color:var(--text);
    background:var(--white);

    overflow-x:hidden;

    line-height:1.7;
}

img{
    display:block;
    max-width:100%;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

button{
    border:none;
    background:none;
    cursor:pointer;
    font-family:inherit;
}

input,
textarea{
    font-family:inherit;
}

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

.container{

    width:100%;
    max-width:1240px;

    margin:auto;

    padding:0 20px;

}

/*==================================================
COMMON SECTION
==================================================*/

.section{

    position:relative;
    padding:100px 0;

}

.section-header{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.section-subtitle{

    display:inline-block;

    margin-bottom:15px;

    color:var(--primary);

    font-size:14px;
    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.section-header h2{

    font-size:44px;

    color:var(--secondary);

    line-height:1.25;

    margin-bottom:18px;

}

.section-header p{

    color:var(--gray);

    font-size:16px;

    line-height:1.9;

}

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

.btn-primary{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    gap:10px;

    padding:16px 34px;

    background:var(--primary);

    color:#fff;

    border-radius:999px;

    font-weight:600;

    transition:var(--transition);

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

}

.btn-outline{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    gap:10px;

    padding:16px 34px;

    border:2px solid rgba(255,255,255,.45);

    border-radius:999px;

    color:#fff;

    transition:var(--transition);

}

.btn-outline:hover{

    background:#fff;

    color:var(--primary);

}

/*==================================================
UTILITY
==================================================*/

.text-center{
    text-align:center;
}

.mt-30{
    margin-top:30px;
}

.mt-50{
    margin-top:50px;
}

.mb-50{
    margin-bottom:50px;
}

.rounded{
    border-radius:var(--radius);
}

.shadow{
    box-shadow:var(--shadow-md);
}

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

#header{

    position:fixed;

    top:18px;

    left:50%;

    transform:translateX(-50%);

    width:95%;

    max-width:1320px;

    z-index:999;

    border-radius:999px;

    transition:.35s ease;

    background:rgba(255, 255, 255, 0.599);

    backdrop-filter:blur(16px);

}

#header.sticky{

    background:#fff;

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

}

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

.navbar{

    height:82px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 28px;

}

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

.logo{

    display:flex;

    align-items:center;

    gap:15px;

}

.logo img{

    width:54px;

    transition:.3s;

}

.logo-text h2{

    color:var(--secondary);

    font-size:24px;

    font-weight:700;

    line-height:1.2;

    transition:.3s;

}

.logo-text span{

    display:block;

    color:var(--primary);

    font-size:11px;

    letter-spacing:.5px;

}

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

.nav-right{

    display:flex;

    align-items:center;

    gap:35px;

}

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

.nav-menu{

    display:flex;

    align-items:center;

    gap:35px;

}

.nav-menu li{

    list-style:none;

}

.nav-menu a{

    position:relative;

    color:var(--secondary);

    font-weight:500;

    transition:.3s;

    padding:6px 0;

}

.nav-menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.35s;

}

.nav-menu a:hover,

.nav-menu a.active{

    color:var(--primary);

}

.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:13px 28px;

    background:var(--primary);

    color:#fff;

    border-radius:999px;

    font-weight:600;

    transition:.35s;

}

.btn-book:hover{

    background:var(--primary-dark);

    transform:translateY(-2px);

}

.btn-book i{

    font-size:17px;

}

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

.mobile-menu{

    display:none;

    color:var(--secondary);

    font-size:30px;

    cursor:pointer;

    transition:.3s;

}

.mobile-menu:hover{

    color:var(--primary);

}

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

@media (max-width:992px){

.container{

    padding:0 24px;

}

#header{

    width:96%;

    top:14px;

    border-radius:24px;

}

.navbar{

    height:74px;

    padding:0 20px;

}

.logo img{

    width:46px;

}

.logo-text h2{

    font-size:21px;

}

.logo-text span{

    font-size:10px;

}

.mobile-menu{

    display:block;

}

.btn-book{

    display:none;

}

.nav-menu{

    position:fixed;

    top:95px;

    left:-100%;

    width:96%;

    margin:0 2%;

    background:#fff;

    border-radius:24px;

    display:flex;

    flex-direction:column;

    align-items:flex-start;

    gap:0;

    padding:20px;

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

    transition:.35s;

}

.nav-menu.active{

    left:0;

}

.nav-menu li{

    width:100%;

}

.nav-menu a{

    display:block;

    width:100%;

    padding:18px 0;

    border-bottom:1px solid #eee;

}

.nav-menu a::after{

    display:none;

}

}

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

@media (max-width:576px){

.container{

    padding:0 18px;

}

#header{

    width:94%;

    top:12px;

}

.navbar{

    height:68px;

    padding:0 16px;

}

.logo{

    gap:10px;

}

.logo img{

    width:40px;

}

.logo-text h2{

    font-size:18px;

}

.logo-text span{

    font-size:9px;

}

.mobile-menu{

    font-size:27px;

}

.nav-menu{

    top:84px;

}

}
/*==================================================
PHASE 1.2
HOME HERO
==================================================*/

.home-hero{

    position:relative;

    padding:180px 0 120px;

    overflow:hidden;

    background:
    linear-gradient(rgba(11, 31, 60, 0.68),rgba(8,25,48,.68)),
    url("../img/hero/batam-bg.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

}

/* Decoration */

.home-hero::before{

    content:"";

    position:absolute;

    top:-180px;
    right:-180px;

    width:520px;
    height:520px;

    border-radius:50%;

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

}

.home-hero::after{

    content:"";

    position:absolute;

    left:-220px;
    bottom:-220px;

    width:450px;
    height:450px;

    border-radius:50%;

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

}

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

.home-wrapper{

    position:relative;
    z-index:2;

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:70px;

    align-items:center;

}

/*==================================================
LEFT CONTENT
==================================================*/

.home-content h1{

    font-size:clamp(46px,5vw,64px);

    line-height:1.15;

    color:#fff;

    font-weight:800;

    margin-bottom:25px;

}

.home-content h1 span{

    color:#45CCFF;

}

.home-content p{

    max-width:560px;

    color:#E2E8F0;

    font-size:17px;

    line-height:1.9;

}

/*==================================================
BUTTONS
==================================================*/

.hero-buttons{

    display:flex;

    align-items:center;

    flex-wrap:wrap;

    gap:18px;

    margin-top:40px;

}

.hero-buttons .btn-primary{

    min-width:190px;

}

.hero-buttons .btn-outline{

    min-width:190px;

}

/*==================================================
STATISTIC
==================================================*/

.hero-stat{

    display:flex;

    flex-wrap:wrap;

    gap:45px;

    margin-top:55px;

}

.stat-item strong{

    display:block;

    font-size:34px;

    font-weight:700;

    color:#fff;

}

.stat-item span{

    color:#CBD5E1;

    font-size:14px;

}

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

.home-image{

    position:relative;

    height:560px;

}

/* Main Image */

.hero-travel{

    position:absolute;

    top:0;
    right:0;

    width:100%;

    border-radius:32px;

    overflow:hidden;

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

}

.hero-travel img{

    width:100%;

    height:500px;

    object-fit:cover;

}

/* Car */

.hero-car{

    position:absolute;

    left:-35px;

    bottom:5px;

    width:360px;

    animation:floatCar 4s ease-in-out infinite;

}

.hero-car img{

    filter:drop-shadow(0 20px 30px rgba(0,0,0,.30));

}

/* Floating Card */

.hero-card{

    position:absolute;

    right:-10px;

    bottom:40px;

    display:flex;

    align-items:center;

    gap:15px;

    background:#fff;

    padding:18px 22px;

    border-radius:22px;

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

}

.hero-icon{

    width:60px;
    height:60px;

    display:flex;

    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:#EAF6FD;

    color:var(--primary);

    font-size:24px;

}

.hero-card h4{

    font-size:18px;

    color:var(--secondary);

    margin-bottom:3px;

}

.hero-card p{

    font-size:13px;

    color:var(--gray);

}

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

@keyframes floatCar{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0);
    }

}

/*==================================================
LAPTOP
==================================================*/

@media(max-width:1200px){

.home-wrapper{

    gap:55px;

}

.hero-car{

    width:320px;

}

.hero-travel img{

    height:460px;

}

}

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

@media(max-width:992px){

.home-hero{

    padding:150px 0 90px;

}

.home-wrapper{

    grid-template-columns:1fr;

    gap:60px;

    text-align:center;

}

.home-content{

    order:1;

}

.home-content p{

    max-width:100%;

}

.hero-buttons{

    justify-content:center;

}

.hero-stat{

    justify-content:center;

}

.home-image{

    order:2;

    height:auto;

}

.hero-travel{

    position:relative;

}

.hero-travel img{

    height:420px;

}

.hero-car{

    width:270px;

    left:50%;

    transform:translateX(-50%);

    bottom:-15px;

}

.hero-card{

    right:20px;

    bottom:20px;

}

}

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

@media(max-width:768px){

.home-hero{

    padding:130px 0 80px;

}

.home-content h1{

    font-size:40px;

}

.home-content p{

    font-size:16px;

}

.hero-buttons{

    flex-direction:column;

}

.hero-buttons a{

    width:100%;

    justify-content:center;

}

.hero-stat{

    display:grid;

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

    gap:18px;

}

.stat-item strong{

    font-size:28px;

}

.hero-travel img{

    height:320px;

}

.hero-car{

    width:220px;

}

.hero-card{

    position:relative;

    right:auto;

    bottom:auto;

    margin-top:25px;

}

}

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

@media(max-width:576px){

.home-hero{

    padding:120px 0 70px;

}

.home-content h1{

    font-size:32px;

}

.home-content p{

    font-size:15px;

}

.hero-stat{

    grid-template-columns:1fr;

    gap:15px;

}

.hero-travel{

    border-radius:22px;

}

.hero-travel img{

    height:240px;

}

.hero-car{

    width:170px;

    bottom:-10px;

}

.hero-card{

    flex-direction:column;

    text-align:center;

    padding:18px;

}

.hero-icon{

    width:55px;
    height:55px;

    font-size:20px;

}

.hero-card h4{

    font-size:16px;

}

.hero-card p{

    font-size:12px;

}

}
/*==================================================
PHASE 1.3
GLOBAL RESPONSIVE
==================================================*/

/* Prevent Image Overflow */

img{
    max-width:100%;
    height:auto;
}

/* Better Section */

.section{
    overflow:hidden;
}

/* Better Flex */

.hero-buttons,
.cta-buttons,
.footer-bottom,
.hero-stat{
    flex-wrap:wrap;
}

/* Grid Auto Height */

.services-grid,
.destination-grid,
.fleet-grid,
.hotel-grid,
.why-grid{

    align-items:stretch;

}

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

    height:100%;

}

/* Better Button */

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

    white-space:nowrap;

}

/*==================================================
LARGE DESKTOP
==================================================*/

@media (max-width:1400px){

.container{

    max-width:1180px;

}

.home-content h1{

    font-size:56px;

}

.section-header h2{

    font-size:42px;

}

}

/*==================================================
LAPTOP
==================================================*/

@media (max-width:1200px){

.container{

    max-width:1020px;

}

.section{

    padding:90px 0;

}

.section-header{

    margin-bottom:60px;

}

.section-header h2{

    font-size:38px;

}

.home-content h1{

    font-size:48px;

}

.about-wrapper{

    gap:50px;

}

}

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

@media (max-width:992px){

.container{

    padding:0 24px;

}

/* Typography */

.section-header h2{

    font-size:34px;

}

.section-header p{

    font-size:15px;

}

.home-content h1{

    font-size:42px;

}

/* Section */

.section{

    padding:80px 0;

}

/* Grid */

.about-wrapper,
.home-wrapper{

    grid-template-columns:1fr;

    gap:55px;

}

/* 2 Columns */

.services-grid,
.destination-grid,
.fleet-grid,
.hotel-grid,
.why-grid{

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

    gap:25px;

}

/* About */

.about-image{

    order:1;

}

.about-content{

    order:2;

    text-align:center;

}

.about-feature{

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

}

.hero-buttons{

    justify-content:center;

}

.hero-stat{

    justify-content:center;

}

}

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

@media (max-width:768px){

.container{

    padding:0 20px;

}

/* Section */

.section{

    padding:70px 0;

}

/* Heading */

.section-header{

    margin-bottom:45px;

}

.section-header h2{

    font-size:30px;

}

.section-header p{

    font-size:15px;

}

/* All Grid */

.services-grid,
.destination-grid,
.fleet-grid,
.hotel-grid,
.why-grid,
.about-feature{

    grid-template-columns:1fr;

}

/* Card Padding */

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

    padding:28px;

}

/* Fleet */

.fleet-content,
.destination-content{

    padding:25px;

}

/* CTA */

.cta-buttons{

    flex-direction:column;

    align-items:center;

}

.cta-buttons a{

    width:100%;

    max-width:320px;

    justify-content:center;

}

/* Footer */

.footer-grid{

    grid-template-columns:1fr;

    gap:35px;

}

.footer-bottom{

    flex-direction:column;

    text-align:center;

    gap:18px;

}

.footer-bottom-links{

    justify-content:center;

    flex-wrap:wrap;

}

/* Floating Button */

.whatsapp{

    width:58px;

    height:58px;

}

#topButton{

    width:50px;

    height:50px;

}

}

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

@media (max-width:576px){

.container{

    padding:0 18px;

}

/* Typography */

.section-header h2{

    font-size:26px;

}

.section-header p{

    font-size:14px;

}

.home-content h1{

    font-size:32px;

}

/* Button */

.btn-primary,
.btn-outline{

    width:100%;

    justify-content:center;

}

/* About */

.feature-item{

    padding:14px;

}

/* Service */

.service-card h3{

    font-size:22px;

}

.destination-content h3,
.fleet-content h3{

    font-size:20px;

}

.why-card h3{

    font-size:20px;

}

/* CTA */

.home-cta h2{

    font-size:28px;

}

/* Footer */

.footer{

    padding:60px 0 25px;

}

.footer-column h3{

    font-size:20px;

}

.footer-copy{

    font-size:13px;

}

}

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

@media (max-width:400px){

.navbar{

    padding:0 12px;

}

.logo img{

    width:36px;

}

.logo-text h2{

    font-size:16px;

}

.section{

    padding:55px 0;

}

.home-content h1{

    font-size:28px;

}

.section-header h2{

    font-size:24px;

}

.btn-primary,
.btn-outline{

    padding:14px 20px;

}

.whatsapp{

    right:18px;
    bottom:20px;

}

#topButton{

    right:18px;
    bottom:90px;

}

}
/*==================================================
PHASE 1.3
GLOBAL RESPONSIVE
==================================================*/

/* Prevent Image Overflow */

img{
    max-width:100%;
    height:auto;
}

/* Better Section */

.section{
    overflow:hidden;
}

/* Better Flex */

.hero-buttons,
.cta-buttons,
.footer-bottom,
.hero-stat{
    flex-wrap:wrap;
}

/* Grid Auto Height */

.services-grid,
.destination-grid,
.fleet-grid,
.hotel-grid,
.why-grid{

    align-items:stretch;

}

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

    height:100%;

}

/* Better Button */

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

    white-space:nowrap;

}

/*==================================================
LARGE DESKTOP
==================================================*/

@media (max-width:1400px){

.container{

    max-width:1180px;

}

.home-content h1{

    font-size:56px;

}

.section-header h2{

    font-size:42px;

}

}

/*==================================================
LAPTOP
==================================================*/

@media (max-width:1200px){

.container{

    max-width:1020px;

}

.section{

    padding:90px 0;

}

.section-header{

    margin-bottom:60px;

}

.section-header h2{

    font-size:38px;

}

.home-content h1{

    font-size:48px;

}

.about-wrapper{

    gap:50px;

}

}

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

@media (max-width:992px){

.container{

    padding:0 24px;

}

/* Typography */

.section-header h2{

    font-size:34px;

}

.section-header p{

    font-size:15px;

}

.home-content h1{

    font-size:42px;

}

/* Section */

.section{

    padding:80px 0;

}

/* Grid */

.about-wrapper,
.home-wrapper{

    grid-template-columns:1fr;

    gap:55px;

}

/* 2 Columns */

.services-grid,
.destination-grid,
.fleet-grid,
.hotel-grid,
.why-grid{

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

    gap:25px;

}

/* About */

.about-image{

    order:1;

}

.about-content{

    order:2;

    text-align:center;

}

.about-feature{

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

}

.hero-buttons{

    justify-content:center;

}

.hero-stat{

    justify-content:center;

}

}

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

@media (max-width:768px){

.container{

    padding:0 20px;

}

/* Section */

.section{

    padding:70px 0;

}

/* Heading */

.section-header{

    margin-bottom:45px;

}

.section-header h2{

    font-size:30px;

}

.section-header p{

    font-size:15px;

}

/* All Grid */

.services-grid,
.destination-grid,
.fleet-grid,
.hotel-grid,
.why-grid,
.about-feature{

    grid-template-columns:1fr;

}

/* Card Padding */

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

    padding:28px;

}

/* Fleet */

.fleet-content,
.destination-content{

    padding:25px;

}

/* CTA */

.cta-buttons{

    flex-direction:column;

    align-items:center;

}

.cta-buttons a{

    width:100%;

    max-width:320px;

    justify-content:center;

}

/* Footer */

.footer-grid{

    grid-template-columns:1fr;

    gap:35px;

}

.footer-bottom{

    flex-direction:column;

    text-align:center;

    gap:18px;

}

.footer-bottom-links{

    justify-content:center;

    flex-wrap:wrap;

}

/* Floating Button */

.whatsapp{

    width:58px;

    height:58px;

}

#topButton{

    width:50px;

    height:50px;

}

}

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

@media (max-width:576px){

.container{

    padding:0 18px;

}

/* Typography */

.section-header h2{

    font-size:26px;

}

.section-header p{

    font-size:14px;

}

.home-content h1{

    font-size:32px;

}

/* Button */

.btn-primary,
.btn-outline{

    width:100%;

    justify-content:center;

}

/* About */

.feature-item{

    padding:14px;

}

/* Service */

.service-card h3{

    font-size:22px;

}

.destination-content h3,
.fleet-content h3{

    font-size:20px;

}

.why-card h3{

    font-size:20px;

}

/* CTA */

.home-cta h2{

    font-size:28px;

}

/* Footer */

.footer{

    padding:60px 0 25px;

}

.footer-column h3{

    font-size:20px;

}

.footer-copy{

    font-size:13px;

}

}

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

@media (max-width:400px){

.navbar{

    padding:0 12px;

}

.logo img{

    width:36px;

}

.logo-text h2{

    font-size:16px;

}

.section{

    padding:55px 0;

}

.home-content h1{

    font-size:28px;

}

.section-header h2{

    font-size:24px;

}

.btn-primary,
.btn-outline{

    padding:14px 20px;

}

.whatsapp{

    right:18px;
    bottom:20px;

}

#topButton{

    right:18px;
    bottom:90px;

}

}
/*==================================================
PHASE 2.1
ABOUT COMPANY
==================================================*/

.about-home{
    position:relative;
    padding:120px 0;
    background:#fff;
    overflow:hidden;
}

/* Background Decoration */

.about-home::before{
    content:"";
    position:absolute;
    top:-220px;
    right:-220px;
    width:480px;
    height:480px;
    border-radius:50%;
    background:rgba(22,150,232,.05);
}

.about-home::after{
    content:"";
    position:absolute;
    left:-180px;
    bottom:-180px;
    width:380px;
    height:380px;
    border-radius:50%;
    background:rgba(15,109,168,.05);
}

.about-home .container{
    position:relative;
    z-index:2;
}

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

.about-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

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

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    border-radius:32px;

    object-fit:cover;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

    transition:.45s;

}

.about-image:hover img{

    transform:scale(1.03);

}

/* Floating Badge */

.about-badge{

    position:absolute;

    right:-25px;

    bottom:35px;

    background:#fff;

    border-radius:24px;

    padding:22px 26px;

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

    text-align:center;

}

.about-badge strong{

    display:block;

    color:var(--primary);

    font-size:34px;

    line-height:1;

    margin-bottom:8px;

}

.about-badge span{

    color:var(--gray);

    font-size:14px;

}

/*==================================================
CONTENT
==================================================*/

.about-content{

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.about-content h2{

    font-size:46px;

    line-height:1.3;

    color:var(--secondary);

    margin:18px 0 25px;

}

.about-content p{

    color:var(--gray);

    line-height:1.9;

    margin-bottom:18px;

}

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

.about-feature{

    display:grid;

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

    gap:18px;

    margin:40px 0;

}

.feature-item{

    display:flex;

    align-items:center;

    gap:15px;

    padding:18px;

    background:#F8FBFD;

    border:1px solid #EEF3F8;

    border-radius:18px;

    transition:.35s;

}

.feature-item:hover{

    transform:translateY(-5px);

    background:#EAF6FD;

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

}

.feature-item i{

    width:46px;

    height:46px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    font-size:18px;

    flex-shrink:0;

}

.feature-item span{

    font-weight:600;

    color:var(--secondary);

    line-height:1.5;

}

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

.about-content .btn-primary{

    width:max-content;

    margin-top:10px;

}

/*==================================================
LAPTOP
==================================================*/

@media(max-width:1200px){

.about-wrapper{

    gap:60px;

}

.about-content h2{

    font-size:40px;

}

}

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

@media(max-width:992px){

.about-home{

    padding:100px 0;

}

.about-wrapper{

    grid-template-columns:1fr;

    gap:60px;

}

.about-image{

    max-width:700px;

    margin:auto;

}

.about-content{

    text-align:center;

}

.about-content h2{

    font-size:38px;

}

.about-content p{

    max-width:720px;

    margin-left:auto;

    margin-right:auto;

}

.about-feature{

    max-width:700px;

    margin:40px auto;

}

.about-content .btn-primary{

    margin:auto;

}

.about-badge{

    right:20px;

}

}

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

@media(max-width:768px){

.about-home{

    padding:80px 0;

}

.about-content h2{

    font-size:32px;

}

.about-feature{

    grid-template-columns:1fr;

    gap:16px;

}

.feature-item{

    padding:16px;

}

.feature-item i{

    width:42px;

    height:42px;

}

.about-badge{

    position:relative;

    right:auto;

    bottom:auto;

    width:220px;

    margin:25px auto 0;

}

.about-content .btn-primary{

    width:100%;

    justify-content:center;

}

}

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

@media(max-width:480px){

.about-home{

    padding:70px 0;

}

.about-content h2{

    font-size:28px;

}

.about-content p{

    font-size:15px;

}

.about-image img{

    border-radius:22px;

}

.about-badge{

    width:180px;

    padding:18px;

}

.about-badge strong{

    font-size:28px;

}

.feature-item{

    gap:12px;

}

.feature-item span{

    font-size:14px;

}

}

/*==================================================
OUR SERVICES SECTION
==================================================*/

.services{

    padding:110px 0;

    background:#f8fafc;

}



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


.section-header{

    max-width:760px;

    margin:0 auto 60px;

    text-align:center;

}


.section-subtitle{

    display:inline-block;

    color:var(--primary);

    font-size:13px;

    font-weight:800;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:15px;

}



.section-header h2{

    font-size:42px;

    font-weight:800;

    color:var(--secondary);

    line-height:1.2;

    margin-bottom:20px;

}



.section-header p{

    color:var(--gray);

    font-size:17px;

    line-height:1.8;

}





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


.services-grid{

    display:grid;

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

    gap:30px;

}





/*==================================================
SERVICE CARD
==================================================*/


.service-card{


    position:relative;

    background:white;


    padding:35px 30px;


    border-radius:28px;


    overflow:hidden;


    border:1px solid rgba(22,150,232,.08);


    box-shadow:

    0 15px 45px rgba(0,0,0,.06);


    transition:.45s cubic-bezier(.4,0,.2,1);


}





/* Animated background */

.service-card::before{


    content:"";


    position:absolute;


    width:180px;


    height:180px;


    right:-80px;


    top:-80px;


    background:

    radial-gradient(
        circle,
        rgba(22,150,232,.18),
        transparent 70%
    );


    transition:.5s;


}





.service-card:hover{


    transform:

    translateY(-12px);


    box-shadow:

    0 30px 70px rgba(0,0,0,.13);


}




.service-card:hover::before{


    transform:scale(1.4);


}







/*==================================================
SERVICE ICON
==================================================*/


.service-icon{


    width:78px;

    height:78px;


    display:flex;


    align-items:center;


    justify-content:center;


    border-radius:24px;


    background:

    linear-gradient(
        135deg,
        rgba(22,150,232,.18),
        rgba(22,150,232,.05)
    );


    color:var(--primary);


    font-size:34px;


    margin-bottom:25px;


    transition:.45s ease;


}





.service-card:hover .service-icon{


    background:

    linear-gradient(
        135deg,
        var(--primary),
        #38bdf8
    );


    color:white;


    transform:

    translateY(-8px)
    rotate(-8deg);


    box-shadow:

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


}





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


.service-card h3{


    color:var(--secondary);


    font-size:23px;


    font-weight:800;


    margin-bottom:15px;


}





/*==================================================
DESCRIPTION
==================================================*/


.service-card p{


    color:var(--gray);


    font-size:15px;


    line-height:1.8;


    margin-bottom:30px;


    min-height:85px;


}







/*==================================================
SERVICE BUTTON PREMIUM
==================================================*/


.service-btn{


    position:relative;


    display:inline-flex;


    align-items:center;


    justify-content:center;


    gap:12px;


    padding:14px 28px;


    border-radius:50px;


    text-decoration:none;


    color:white;


    font-size:15px;


    font-weight:700;


    overflow:hidden;


    background:


    linear-gradient(
        135deg,
        var(--primary),
        #38bdf8
    );


    box-shadow:


    0 12px 30px rgba(22,150,232,.3);


    transition:.4s ease;


}






/* Button Shine */

.service-btn::before{


    content:"";


    position:absolute;


    top:0;


    left:-120%;


    width:80%;


    height:100%;


    background:


    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.55),
        transparent
    );


    transform:skewX(-25deg);


    transition:.7s;


}




.service-btn:hover::before{


    left:140%;


}




.service-btn span,
.service-btn i{


    position:relative;


    z-index:2;


}





.service-btn i{


    transition:.35s ease;


}





.service-btn:hover{


    transform:

    translateY(-5px);


    box-shadow:


    0 20px 45px rgba(22,150,232,.45);


}




.service-btn:hover i{


    transform:

    translateX(8px);


}




.service-btn:active{


    transform:

    scale(.96);


}







/*==================================================
CARD ENTRY ANIMATION
==================================================*/


.service-card{


    animation:

    serviceFade .8s ease both;


}



.service-card:nth-child(2){

    animation-delay:.1s;

}


.service-card:nth-child(3){

    animation-delay:.2s;

}


.service-card:nth-child(4){

    animation-delay:.3s;

}


.service-card:nth-child(5){

    animation-delay:.4s;

}


.service-card:nth-child(6){

    animation-delay:.5s;

}




@keyframes serviceFade{


from{

    opacity:0;

    transform:
    translateY(40px);

}


to{

    opacity:1;

    transform:
    translateY(0);

}


}








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


@media(max-width:992px){


.services{

    padding:90px 0;

}


.services-grid{


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


}


.section-header h2{

    font-size:34px;

}


}







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


@media(max-width:768px){


.services{

    padding:75px 0;

}


.section-header h2{

    font-size:28px;

}


.section-header p{

    font-size:15px;

}



.services-grid{


    grid-template-columns:1fr;

    gap:22px;


}




.service-card{


    padding:30px 25px;


}




.service-icon{


    width:65px;

    height:65px;

    font-size:28px;


}




.service-card h3{

    font-size:21px;

}



.service-card p{

    min-height:auto;

}





.service-btn{


    width:100%;


    padding:15px;


}


}





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


@media(max-width:480px){


.section-header h2{

    font-size:25px;

}


.service-card{

    border-radius:22px;

}


}




/*==================================================
PHASE 2.3
POPULAR DESTINATION
==================================================*/

.home-destination{
    position:relative;
    padding:120px 0;
    background:#F8FBFD;
    overflow:hidden;
}

.home-destination::before{
    content:"";
    position:absolute;
    top:-220px;
    right:-220px;
    width:480px;
    height:480px;
    border-radius:50%;
    background:rgba(22,150,232,.05);
}

.home-destination .container{
    position:relative;
    z-index:2;
}

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

.destination-grid{

    display:grid;

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

    gap:32px;

}

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

.destination-card{

    display:flex;

    flex-direction:column;

    height:100%;

    overflow:hidden;

    border-radius:28px;

    background:#fff;

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

    transition:.45s;

}

.destination-card:hover{

    transform:translateY(-12px);

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

}

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

.destination-image{

    position:relative;

    overflow:hidden;

}

.destination-image img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:.55s;

}

.destination-card:hover img{

    transform:scale(1.08);

}

/*==================================================
BADGE
==================================================*/

.destination-badge{

    position:absolute;

    top:20px;

    left:20px;

    padding:8px 18px;

    border-radius:999px;

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

    color:var(--primary);

    font-size:13px;

    font-weight:600;

}

/*==================================================
CONTENT
==================================================*/

.destination-content{

    display:flex;

    flex-direction:column;

    flex:1;

    padding:30px;

}

.destination-content h3{

    font-size:28px;

    color:var(--secondary);

    margin-bottom:16px;

}

.destination-content p{

    color:var(--gray);

    line-height:1.9;

    margin-bottom:28px;

    flex:1;

}

.destination-content a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--primary);

    font-weight:600;

    transition:.35s;

}

.destination-content a:hover{

    gap:18px;

}

/*==================================================
PHASE 2.3
POPULAR DESTINATION
==================================================*/


.home-destination{

    position:relative;

    padding:120px 0;

    background:#F8FBFD;

    overflow:hidden;

}



.home-destination::before{

    content:"";

    position:absolute;

    top:-220px;

    right:-220px;

    width:480px;

    height:480px;

    border-radius:50%;

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

}



.home-destination .container{

    position:relative;

    z-index:2;

}





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


.destination-grid{

    display:grid;

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

    gap:32px;

}





/*==================================================
DESTINATION CARD
==================================================*/


.destination-card{

    display:flex;

    flex-direction:column;

    height:100%;

    overflow:hidden;

    background:#ffffff;

    border-radius:28px;

    box-shadow:

    0 18px 40px rgba(0,0,0,.06);

    transition:.45s ease;

}



.destination-card:hover{

    transform:translateY(-12px);

    box-shadow:

    0 35px 70px rgba(22,150,232,.15);

}





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


.destination-image{

    position:relative;

    width:100%;

    overflow:hidden;

}



.destination-image img{

    display:block;

    width:100%;

    height:280px;

    object-fit:cover;

    transition:.55s ease;

}



.destination-card:hover .destination-image img{

    transform:scale(1.08);

}





/*==================================================
BADGE
==================================================*/


.destination-badge{

    position:absolute;

    top:20px;

    left:20px;

    padding:8px 18px;

    border-radius:999px;

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

    color:var(--primary);

    font-size:13px;

    font-weight:600;

}





/*==================================================
CONTENT
==================================================*/


.destination-content{

    display:flex;

    flex-direction:column;

    flex:1;

    padding:30px;

}



.destination-content h3{

    font-size:24px;

    font-weight:800;

    line-height:1.3;

    color:var(--secondary);

    margin-bottom:16px;

}



.destination-content p{

    flex:1;

    color:var(--gray);

    font-size:15px;

    line-height:1.9;

    margin-bottom:28px;

}





/*==================================================
DESTINATION BUTTON
MODERN OUTLINE STYLE
==================================================*/


.destination-content a{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;


    width:100%;


    padding:13px 20px;


    border-radius:12px;


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


    background:transparent;


    color:var(--primary);


    font-size:14px;


    font-weight:700;


    text-decoration:none;


    transition:.35s ease;


    overflow:hidden;

}





.destination-content a::before{

    content:"";

    position:absolute;

    inset:0;

    width:0;

    background:var(--primary);

    transition:.35s ease;

    z-index:-1;

}





.destination-content a::after{

    content:"→";

    transition:.35s ease;

}





.destination-content a:hover{

    color:#ffffff;

}





.destination-content a:hover::before{

    width:100%;

}



.destination-content a:hover::after{

    transform:translateX(5px);

}





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


@media(max-width:1200px){


    .destination-grid{

        gap:25px;

    }



    .destination-content{

        padding:26px;

    }



    .destination-content h3{

        font-size:25px;

    }


}





@media(max-width:992px){


    .home-destination{

        padding:100px 0;

    }



    .destination-grid{

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

    }



    .destination-image img{

        height:260px;

    }



    .destination-content h3{

        font-size:24px;

    }



}





@media(max-width:768px){


    .home-destination{

        padding:80px 0;

    }



    .destination-grid{

        grid-template-columns:1fr;

        gap:25px;

    }



    .destination-card{

        border-radius:24px;

    }



    .destination-image img{

        height:280px;

    }



    .destination-content{

        padding:25px;

    }



    .destination-content h3{

        font-size:24px;

    }



}





@media(max-width:480px){


    .home-destination{

        padding:70px 0;

    }



    .home-destination::before{

        width:300px;

        height:300px;

        top:-150px;

        right:-150px;

    }



    .destination-card{

        border-radius:20px;

    }



    .destination-image img{

        height:220px;

    }



    .destination-content{

        padding:22px;

    }



    .destination-content h3{

        font-size:22px;

    }



    .destination-content p{

        font-size:14px;

    }



    .destination-content a{

        padding:12px;

    }


}

/*==================================================
PREMIUM FLEET
==================================================*/


.home-fleet{

    position:relative;

    padding:120px 0;

    background:#ffffff;

    overflow:hidden;

}



.home-fleet::after{

    content:"";

    position:absolute;

    bottom:-220px;

    left:-220px;

    width:480px;

    height:480px;

    border-radius:50%;

    background:rgba(15,109,168,.05);

}



.home-fleet .container{

    position:relative;

    z-index:2;

}





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


.fleet-grid{

    display:grid;

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

    gap:32px;

}





/*==================================================
FLEET CARD
==================================================*/


.fleet-card{

    display:flex;

    flex-direction:column;

    height:100%;

    overflow:hidden;

    background:#ffffff;

    border-radius:28px;

    border:1px solid #EEF2F7;

    transition:.45s ease;

    box-shadow:

    0 15px 35px rgba(0,0,0,.06);

}



.fleet-card:hover{

    transform:translateY(-12px);

    box-shadow:

    0 35px 70px rgba(22,150,232,.14);

}





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


.fleet-image{

    width:100%;

    padding:0;

    margin:0;

    overflow:hidden;

    background:#F8FBFD;

}



.fleet-image img{

    display:block;

    width:100%;

    height:280px;

    object-fit:cover;

    transition:.45s ease;

}



.fleet-card:hover .fleet-image img{

    transform:scale(1.06);

}





/*==================================================
CONTENT
==================================================*/


.fleet-content{

    display:flex;

    flex-direction:column;

    flex:1;

    padding:30px;

    background:#ffffff;

}



.fleet-content h3{

    font-size:26px;

    font-weight:800;

    line-height:1.3;

    color:var(--secondary);

    margin-bottom:12px;

}





.fleet-content span{

    display:inline-flex;

    width:max-content;

    padding:8px 18px;

    margin-bottom:25px;

    border-radius:999px;

    background:#EAF6FD;

    color:var(--primary);

    font-size:13px;

    font-weight:600;

}





/*==================================================
SPECIFICATION
==================================================*/


.fleet-content ul{

    list-style:none;

    padding:0;

    margin:0 0 30px;

}



.fleet-content ul li{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:14px;

    color:var(--gray);

    font-size:15px;

}



.fleet-content ul li i{

    width:18px;

    color:var(--primary);

}





/*==================================================
VIEW DETAIL BUTTON
==================================================*/


.fleet-content a{

    margin-top:auto;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;


    padding:14px 20px;


    border-radius:12px;


    background:var(--primary);


    color:#ffffff;


    font-size:14px;


    font-weight:700;


    text-decoration:none;


    transition:.35s ease;


}



.fleet-content a::after{

    content:"→";

    transition:.3s ease;

}



.fleet-content a:hover{

    background:var(--primary-dark);

}



.fleet-content a:hover::after{

    transform:translateX(5px);

}





/*==================================================
VIEW ALL BUTTON
==================================================*/


.section-button{

    margin-top:60px;

    text-align:center;

}



.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;


    padding:14px 32px;


    border-radius:12px;


    background:var(--primary);


    color:#ffffff;


    font-size:15px;


    font-weight:700;


    text-decoration:none;


    transition:.35s ease;

}



.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

}





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


@media(max-width:1200px){


    .fleet-grid{

        gap:25px;

    }


    .fleet-content{

        padding:26px;

    }


}





@media(max-width:992px){


    .home-fleet{

        padding:100px 0;

    }



    .fleet-grid{

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

    }



    .fleet-image img{

        height:250px;

    }


}





@media(max-width:768px){


    .home-fleet{

        padding:80px 0;

    }



    .fleet-grid{

        grid-template-columns:1fr;

    }



    .fleet-content{

        padding:24px;

    }



    .fleet-content h3{

        font-size:24px;

    }



    .fleet-image img{

        height:230px;

    }



    .section-button{

        margin-top:45px;

    }


}





@media(max-width:480px){


    .home-fleet{

        padding:70px 0;

    }



    .fleet-card{

        border-radius:22px;

    }



    .fleet-content h3{

        font-size:22px;

    }



    .fleet-image img{

        height:210px;

    }



    .fleet-content a{

        width:100%;

    }


}

/*==================================================
PHASE 2.4
WHY CHOOSE US
==================================================*/

.why-home{

    position:relative;

    padding:120px 0;

    background:#F8FBFD;

    overflow:hidden;

}

.why-home::before{

    content:"";

    position:absolute;

    top:-250px;

    right:-250px;

    width:520px;

    height:520px;

    border-radius:50%;

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

}

.why-home::after{

    content:"";

    position:absolute;

    left:-250px;

    bottom:-250px;

    width:500px;

    height:500px;

    border-radius:50%;

    background:rgba(15,109,168,.05);

}

.why-home .container{

    position:relative;

    z-index:2;

}

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

.why-grid{

    display:grid;

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

    gap:30px;

    margin-top:70px;

}

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

.why-card{

    position:relative;

    background:#fff;

    padding:45px 30px;

    border-radius:30px;

    text-align:center;

    transition:.45s;

    overflow:hidden;

    border:1px solid rgba(0,0,0,.05);

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

}

.why-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

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

    transform:scaleX(0);

    transition:.4s;

    transform-origin:left;

}

.why-card:hover::before{

    transform:scaleX(1);

}

.why-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 60px rgba(22,150,232,.15);

}

/*==================================================
ICON
==================================================*/

.why-card i{

    width:90px;

    height:90px;

    margin:auto;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    font-size:34px;

    color:#fff;

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

    transition:.45s;

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

}

.why-card:hover i{

    transform:rotateY(180deg);

}

.why-card h3{

    margin:28px 0 16px;

    font-size:24px;

    color:var(--secondary);

}

.why-card p{

    color:var(--gray);

    line-height:1.9;

}

/*==================================================
CALL TO ACTION
==================================================*/

.home-cta{

    position:relative;

    padding:120px 0;

    overflow:hidden;

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

    color:#fff;

    text-align:center;

}

.home-cta::before{

    content:"";

    position:absolute;

    top:-180px;

    right:-180px;

    width:420px;

    height:420px;

    border-radius:50%;

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

}

.home-cta::after{

    content:"";

    position:absolute;

    bottom:-200px;

    left:-200px;

    width:460px;

    height:460px;

    border-radius:50%;

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

}

.cta-wrapper{

    position:relative;

    z-index:2;

    max-width:820px;

    margin:auto;

}

.home-cta h2{

    font-size:48px;

    line-height:1.3;

    margin:18px 0;

}

.home-cta p{

    max-width:720px;

    margin:auto;

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

    line-height:1.9;

}

.cta-buttons{

    margin-top:45px;

    display:flex;

    justify-content:center;

    gap:20px;

}

.home-cta .btn-outline{

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

}

.home-cta .btn-outline:hover{

    background:#fff;

    color:var(--primary);

}

/*==================================================
HOTEL PARTNER
==================================================*/

.home-hotels{

    position:relative;

    padding:120px 0;

    background:#fff;

}

.hotel-grid{

    display:grid;

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

    gap:30px;

}

.hotel-card{

    position:relative;

    overflow:hidden;

    border-radius:30px;

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

    transition:.45s;

}

.hotel-card:hover{

    transform:translateY(-10px);

}

.hotel-card img{

    width:100%;

    height:430px;

    object-fit:cover;

    transition:.55s;

}

.hotel-card:hover img{

    transform:scale(1.08);

}

.hotel-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:35px;

    background:linear-gradient(

        to top,

        rgba(0,0,0,.88),

        rgba(0,0,0,.05)

    );

}

.hotel-overlay h3{

    color:#fff;

    font-size:28px;

    margin-bottom:10px;

}

.hotel-overlay span{

    color:#EAF6FD;

    font-size:15px;

}

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

@media(max-width:1200px){

.why-grid{

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

}

}

@media(max-width:992px){

.why-home,
.home-hotels,
.home-cta{

    padding:100px 0;

}

.hotel-grid{

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

}

.home-cta h2{

    font-size:40px;

}

}

@media(max-width:768px){

.why-home,
.home-hotels,
.home-cta{

    padding:80px 0;

}

.why-grid,
.hotel-grid{

    grid-template-columns:1fr;

}

.why-card{

    padding:35px 28px;

}

.why-card h3{

    font-size:22px;

}

.why-card i{

    width:80px;

    height:80px;

    font-size:30px;

}

.hotel-card img{

    height:320px;

}

.home-cta h2{

    font-size:32px;

}

.cta-buttons{

    flex-direction:column;

    align-items:center;

}

.cta-buttons a{

    width:100%;

    max-width:320px;

    justify-content:center;

}

}

@media(max-width:480px){

.home-cta h2{

    font-size:28px;

}

.hotel-card{

    border-radius:22px;

}

.hotel-card img{

    height:260px;

}

.hotel-overlay{

    padding:25px;

}

.hotel-overlay h3{

    font-size:22px;

}

.hotel-overlay span{

    font-size:14px;

}

}
/*==================================================
PHASE 3.1
PREMIUM FOOTER
==================================================*/

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

}

}