/*/*==========================
GLOBAL
==========================*/

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#08152d;
color:#fff;
overflow-x:hidden;
}

.container{
width:90%;
max-width:1300px;
margin:auto;
}

/*==========================
NAVBAR
==========================*/

header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:999;
background:rgba(5,20,45,.75);
backdrop-filter:blur(12px);
}

.nav{
height:85px;
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
font-size:38px;
font-weight:800;
color:#fff;
text-decoration:none;
}

.logo span{
color:#22c55e;
}

.nav-links{
display:flex;
align-items:center;
gap:35px;
list-style:none;
}

.nav-links a{
color:#fff;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.nav-links a:hover{
color:#22c55e;
}

.desktop-buttons{
display:flex;
gap:15px;
}

.call-btn,
.whatsapp-btn{
padding:12px 22px;
border-radius:40px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.call-btn{
border:2px solid #22c55e;
color:#fff;
}

.call-btn:hover{
background:#22c55e;
}

.whatsapp-btn{
background:#22c55e;
color:#fff;
}

.whatsapp-btn:hover{
transform:translateY(-3px);
}

.menu-btn{
display:none;
font-size:30px;
cursor:pointer;
color:#fff;
}

.mobile-buttons{
display:none;
}

/*==========================
HERO
==========================*/

.hero{
position:relative;
min-height:100vh;
display:flex;
align-items:center;
background:url("images/bg.png") center/cover;
}

.hero-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.55);
}

.hero-content{
position:relative;
z-index:2;
display:flex;
justify-content:space-between;
align-items:center;
gap:60px;
padding-top:100px;
}

.hero-left{
flex:1;
}

.hero-right{
flex:1;
text-align:center;
}

.hero-right img{
width:100%;
max-width:600px;
animation:float 4s ease-in-out infinite;
}

@keyframes float{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-15px);
}

100%{
transform:translateY(0);
}

}

.hero-badge{
display:inline-block;
padding:12px 25px;
background:#22c55e;
border-radius:40px;
font-weight:600;
margin-bottom:25px;
}

.hero h1{
font-size:70px;
line-height:1.1;
margin-bottom:20px;
}

.hero h1 span{
color:#22c55e;
}

.hero p{
font-size:20px;
line-height:1.8;
color:#ddd;
margin-bottom:35px;
max-width:650px;
}

.hero-buttons{
display:flex;
gap:20px;
margin-bottom:35px;
flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
padding:16px 35px;
border-radius:50px;
font-weight:600;
text-decoration:none;
transition:.3s;
}

.btn-primary{
background:#22c55e;
color:#fff;
}

.btn-primary:hover{
transform:translateY(-4px);
}

.btn-secondary{
border:2px solid #fff;
color:#fff;
}

.btn-secondary:hover{
background:#fff;
color:#08152d;
}

.hero-routes{
display:flex;
flex-wrap:wrap;
gap:12px;
}

.hero-routes span{
padding:10px 18px;
border-radius:30px;
border:1px solid #22c55e;
background:rgba(34,197,94,.15);
}

/*==========================
MOBILE
==========================*/

@media(max-width:991px){

.hero-content{
flex-direction:column-reverse;
text-align:center;
padding-top:120px;
}

.hero h1{
font-size:48px;
}

.hero p{
font-size:17px;
margin:auto;
margin-bottom:30px;
}

.hero-buttons{
justify-content:center;
}

.hero-routes{
justify-content:center;
}

.hero-right img{
max-width:360px;
}

.desktop-buttons{
display:none;
}

.menu-btn{
display:block;
}

.nav-links{
position:fixed;
top:85px;
right:-100%;
width:280px;
height:100vh;
background:#08152d;
display:flex;
flex-direction:column;
padding:40px 30px;
gap:25px;
transition:.4s;
}

.nav-links.active{
right:0;
}

.mobile-buttons{
display:flex;
flex-direction:column;
gap:15px;
width:100%;
margin-top:20px;
}

.mobile-buttons a{
text-align:center;
}

}

@media(max-width:576px){

.hero{
padding-bottom:60px;
}

.hero h1{
font-size:38px;
}

.hero-right img{
max-width:280px;
}

.hero-buttons{
flex-direction:column;
}

.btn-primary,
.btn-secondary{
width:100%;
text-align:center;
}

.hero-routes span{
font-size:13px;
padding:8px 14px;
}

.logo{
font-size:30px;
}

}


/*=========================================
            OUR FLEET
=========================================*/

.fleet{

    background:#111827;

}

.fleet-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(330px,1fr));

    gap:35px;

}

.fleet-card{

    background:#1f2937;

    border-radius:20px;

    overflow:hidden;

    transition:.4s;

    box-shadow:0 10px 30px rgba(0,0,0,.25);

}

.fleet-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(34,197,94,.25);

}

.fleet-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.4s;

}

.fleet-card:hover img{

    transform:scale(1.08);

}

.fleet-content{

    padding:25px;

}

.fleet-content h3{

    font-size:28px;

    margin-bottom:12px;

}

.fleet-content p{

    color:#cbd5e1;

    margin-bottom:18px;

}

.fleet-content ul{

    margin-bottom:25px;

}

.fleet-content ul li{

    margin-bottom:10px;

    color:#d1d5db;

}

.fleet-content ul li i{

    color:#22c55e;

    margin-right:8px;

}

.fleet-btn{

    display:inline-block;

    background:#22c55e;

    color:#fff;

    padding:13px 28px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.fleet-btn:hover{

    background:#16a34a;

}

/*==============================
      STATISTICS
==============================*/

.stats{

    background:#16a34a;

    color:#fff;

    padding:70px 0;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

    text-align:center;

}

.stat-box h2{

    font-size:55px;

    font-weight:700;

}

.stat-box p{

    margin-top:10px;

    font-size:18px;

}
/*==============================
     TESTIMONIALS
==============================*/

.testimonials{

    background:#111827;

}

.testimonial-slider{

    max-width:850px;

    margin:auto;

    position:relative;

}

.testimonial{

    display:none;

    background:#1f2937;

    padding:40px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.3);

}

.testimonial.active{

    display:block;

}

.testimonial p{

    font-size:20px;

    line-height:1.8;

    margin-bottom:20px;

}

.testimonial h3{

    color:#22c55e;

    margin-bottom:8px;

}

.testimonial span{

    color:#d1d5db;

}


/*==============================
      DESTINATIONS
==============================*/

.destinations{

    background:#111827;

}

.destination-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(330px,1fr));

    gap:35px;

}

.destination-card{

    background:#1f2937;

    border-radius:18px;

    overflow:hidden;

    transition:.4s;

}

.destination-card:hover{

    transform:translateY(-10px);

    box-shadow:0 15px 40px rgba(34,197,94,.25);

}

.destination-card img{

    width:100%;

    height:240px;

    object-fit:cover;

}

.destination-content{

    padding:25px;

}

.destination-content h3{

    font-size:28px;

    margin-bottom:10px;

}

.destination-content p{

    margin-bottom:10px;

    color:#d1d5db;

}

.destination-content a{

    display:inline-block;

    margin-top:15px;

    background:#22c55e;

    color:#fff;

    padding:12px 25px;

    border-radius:8px;

    font-weight:600;

}


/*=========================================
        MOBILE RESPONSIVE
=========================================*/

@media (max-width:768px){

    .section-title h2{
        font-size:34px;
    }

    .hero{
        min-height:100vh;
        padding:120px 20px 60px;
    }

    .hero-content{
        width:100%;
        text-align:center;
    }

    .hero h1{
        font-size:42px;
        line-height:1.2;
    }

    .hero p{
        font-size:18px;
    }

    .hero-badge{
        font-size:14px;
        padding:10px 18px;
    }

    .hero-routes{
        gap:10px;
        justify-content:center;
    }

    .hero-routes span{
        font-size:14px;
        padding:8px 14px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .hero-buttons a{
        width:100%;
        max-width:260px;
    }

    .fare-row{
        grid-template-columns:1fr;
    }

    .stats-grid,
    .fleet-grid,
    .destination-grid,
    .gallery-grid,
    .team-container,
    .contact-container,
    .footer-container{
        grid-template-columns:1fr;
    }

    .fleet-card img,
    .destination-card img,
    .gallery-item img{
        height:220px;
    }

}

/*=========================================
            LOADER
=========================================*/

#loader{

    position:fixed;

    inset:0;

    background:#0f172a;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:99999;

    transition:.5s;

}

.loader-box{

    text-align:center;

}

.loader-box h1{

    color:#22c55e;

    font-size:50px;

}

.loader-box p{

    color:#fff;

    margin-top:15px;

    letter-spacing:3px;

}
/*=========================================
        PREMIUM HOVER EFFECTS
=========================================*/

.fleet-card,
.destination-card,
.team-card,
.stat-box,
.testimonial{

    transition:.35s ease;

}

.fleet-card:hover,
.destination-card:hover,
.team-card:hover,
.stat-box:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 40px rgba(0,0,0,.25);

}

button,
.primary-btn,
.secondary-btn,
.fare-btn,
.fare-book-btn{

    transition:.3s ease;

}

button:hover,
.primary-btn:hover,
.secondary-btn:hover,
.fare-btn:hover,
.fare-book-btn:hover{

    transform:scale(1.05);

}
/* ================= POPULAR ROUTES ================= */

.routes{

    padding:100px 8%;

    background:#08152d;

}

.routes-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

    margin-top:60px;

}

.route-card{

    background:#112240;

    padding:30px;

    border-radius:18px;

    transition:.35s;

    border:1px solid rgba(255,255,255,.08);

}

.route-card:hover{

    transform:translateY(-10px);

    border-color:#22c55e;

    box-shadow:0 20px 40px rgba(0,0,0,.3);

}

.route-card i{

    font-size:28px;

    color:#22c55e;

    margin-bottom:20px;

}

.route-card h3{

    color:#fff;

    margin-bottom:15px;

}

.route-card p{

    color:#cbd5e1;

    line-height:1.8;

}

/* ================= WHY CHOOSE ================= */

.why{

    padding:100px 8%;

    background:#0b1120;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

    margin-top:60px;

}

.why-card{

    background:#112240;

    border-radius:20px;

    padding:35px;

    transition:.35s;

    border:1px solid rgba(255,255,255,.08);

}

.why-card:hover{

    transform:translateY(-10px);

    border-color:#22c55e;

}

.why-card i{

    font-size:35px;

    color:#22c55e;

    margin-bottom:20px;

}

.why-card h3{

    color:#fff;

    margin-bottom:15px;

}

.why-card p{

    color:#cbd5e1;

    line-height:1.8;

}
/* ================= ABOUT ================= */

.about{

    padding:100px 8%;
    background:#08152d;

}

.about-container{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;

}

.about-image img{

    width:100%;
    max-width:450px;
    border-radius:20px;
    display:block;
    margin:auto;
    box-shadow:0 20px 50px rgba(0,0,0,.35);

}

.about-text h5{

    color:#22c55e;
    font-size:18px;
    margin-bottom:10px;

}

.about-text h2{

    font-size:46px;
    color:white;
    margin-bottom:20px;

}

.about-text p{

    color:#d1d5db;
    line-height:1.9;
    margin-bottom:18px;

}

.about-stats{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:35px;

}

.about-box{

    background:#112240;
    padding:25px;
    border-radius:15px;
    text-align:center;
    transition:.3s;

}

.about-box:hover{

    transform:translateY(-8px);

}

.about-box h3{

    color:#22c55e;
    font-size:34px;

}

.about-box p{

    color:white;
    margin-top:8px;

}

@media(max-width:900px){

.about-container{

grid-template-columns:1fr;

}

}
/*=========================================
                ABOUT US
=========================================*/

.leadership-card{

    max-width:1100px;
    margin:60px auto 0;
    background:#112240;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:50px;
    gap:40px;
    border:1px solid rgba(255,255,255,.08);

}

.leader{

    flex:1;
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;
}

.leader img{

    width:170px;
    height:170px;
    border-radius:50%;
    object-fit:cover;
    object-position:center top;
    border:5px solid #22c55e;
    margin-bottom:40px;

}

.leader h3{

    color:#fff;
    font-size:30px;
    margin-bottom:8px;

}

.leader span{

    color:#22c55e;
    font-weight:600;

}

.leader p{

    color:#cbd5e1;
    margin-top:18px;
    line-height:1.8;

}

.divider{

    width:2px;
    align-self:stretch;
    background:rgba(255,255,255,.15);

}

@media(max-width:768px){

.leadership-card{

    flex-direction:column;
    padding:35px;

}

.divider{

    width:100%;
    height:1px;

}

}
.booking-form{
    max-width:900px;
    margin:auto;
    background:#112240;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.35);
}

.form-row{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:20px;
}

.booking-form input,
.booking-form select,
.booking-form textarea{

    width:100%;
    padding:16px;
    border:1px solid rgba(255,255,255,.12);
    background:#0b1b35;
    color:#fff;
    border-radius:12px;
    font-size:16px;
    outline:none;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus{

    border-color:#22c55e;
}

.booking-form textarea{

    height:140px;
    resize:none;
    margin-bottom:20px;
}

.booking-form button{

    width:100%;
    padding:18px;
    background:#22c55e;
    color:#fff;
    border:none;
    border-radius:12px;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.booking-form button:hover{

    background:#16a34a;
}

@media(max-width:768px){

.form-row{

grid-template-columns:1fr;

}

.booking-form{

padding:25px;

}

}
/*=========================================
            CONTACT
=========================================*/

.contact{

    padding:100px 8%;
    background:#08152d;

}

.contact-container{

    display:grid;
    grid-template-columns:420px 1fr;
    gap:60px;
    margin-top:60px;
    align-items:start;

}

.contact-info{

    display:flex;
    flex-direction:column;
    gap:25px;

}

.contact-card{

    display:flex;
    align-items:center;
    gap:20px;
    background:#112240;
    padding:22px;
    border-radius:16px;
    transition:.35s;
    border:1px solid rgba(255,255,255,.08);

}

.contact-card:hover{

    transform:translateX(8px);
    border-color:#22c55e;

}

.contact-card i{

    width:60px;
    height:60px;
    background:#22c55e;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;

}

.contact-card h3{

    color:#fff;
    margin-bottom:8px;

}

.contact-card p{

    color:#cbd5e1;
    line-height:1.7;

}

.contact-map iframe{

    width:100%;
    height:100%;
    min-height:500px;
    border:none;
    border-radius:20px;
    box-shadow:0 20px 45px rgba(0,0,0,.35);

}

@media(max-width:900px){

.contact-container{

grid-template-columns:1fr;

}

.contact-map iframe{

min-height:350px;

}

}
/*=========================================
              FOOTER
=========================================*/

.footer{

    background:#050d1d;

    padding:80px 8% 30px;

}

.footer-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:50px;

}

.footer-box h2{

    color:#fff;

    font-size:34px;

}

.footer-box h2 span{

    color:#22c55e;

}

.footer-box h3{

    color:#fff;

    margin-bottom:20px;

}

.footer-box p{

    color:#cbd5e1;

    line-height:1.9;

    margin-bottom:10px;

}

.footer-box a{

    display:block;

    color:#cbd5e1;

    text-decoration:none;

    margin-bottom:12px;

    transition:.3s;

}

.footer-box a:hover{

    color:#22c55e;

    padding-left:8px;

}

.footer hr{

    border:none;

    border-top:1px solid rgba(255,255,255,.1);

    margin:45px 0 25px;

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.footer-bottom p{

    color:#cbd5e1;

}

.footer-social{

    display:flex;

    gap:15px;

}

.footer-social a{

    width:45px;

    height:45px;

    background:#112240;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    transition:.3s;

    text-decoration:none;

}

.footer-social a:hover{

    background:#22c55e;

    transform:translateY(-5px);

}

@media(max-width:768px){

.footer-bottom{

flex-direction:column;

text-align:center;


}

}


/* ===== Website Notice ===== */

.website-note{
    background:#1a1a1a;
    padding:35px 20px;
    border-top:3px solid #22c55e;
}

.website-note .container{
    max-width:1000px;
    margin:auto;
}

.website-note p{
    color:#d1d5db;
    font-size:17px;
    line-height:1.9;
    text-align:center;
}

.website-note strong{
    color:#22c55e;
    font-size:22px;
}