/* ==========================================================
   DHARAMSHALA AIRPORT CAB UNION WEBSITE
   MAIN STYLESHEET
   Version: 1.0
========================================================== */


/* ==========================================================
   GLOBAL RESET
========================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#222;
    overflow-x:hidden;
    line-height:1.6;
}

a{
    text-decoration:none;
    transition:0.3s ease;
}

ul{
    list-style:none;
}

img{
    display:block;
    max-width:100%;
}

button{
    border:none;
    outline:none;
    cursor:pointer;
    font-family:inherit;
}


/* ==========================================================
   REUSABLE CONTAINER
========================================================== */

.container{

    max-width:1200px;

    margin:auto;

    padding:0 15px;

}


/* ==========================================================
   HEADER
========================================================== */

.top-header{

    position:sticky;

    top:0;

    left:0;

    width:100%;

    background:#ffffff;

    z-index:9999;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

}

.header-wrapper{

    display:flex;

    align-items:center;

    justify-content:space-between;

    min-height:90px;

}

/* ==========================================================
   GLOBAL SETTINGS
========================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#222;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

img{
    max-width:100%;
    display:block;
}


/* ==========================================================
   HEADER
========================================================== */

.top-header{

    width:100%;

    background:#ffffff;

    position:sticky;

    top:0;

    left:0;

    z-index:9999;

    box-shadow:0 4px 20px rgba(0,0,0,.08);

}

.header-wrapper{

    display:flex;

    align-items:center;

    justify-content:space-between;

    min-height:90px;

}
.mobile-header-actions{
    display:none;
}
/* ==========================================================
   HEADER - LOGO
========================================================== */

.logo img{
    height:70px;
    width:auto;
    transition:0.3s ease;
}

.logo:hover img{
    transform:scale(1.05);
}
.logo-title{
    display:none;
}

/* ==========================================================
   NAVIGATION MENU
========================================================== */

.navbar-custom{
    display:flex;
    align-items:center;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:35px;
    margin:0;
}

.nav-links li{
    position:relative;
}

.nav-links a{
    color:#222;
    font-size:16px;
    font-weight:600;
    padding:10px 0;
    transition:.3s;
}

.nav-links a:hover,
.nav-links a.active{
    color:#f4b400;
}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:0;

    height:2px;

    background:#f4b400;

    transition:.3s;

}

.nav-links a:hover::after,
.nav-links a.active::after{

    width:100%;

}

/* ==========================================================
   HEADER BUTTONS
========================================================== */


/* ==========================================================
   MOBILE MENU ICON
========================================================== */

.menu-toggle{

    display:none;

    font-size:28px;

    cursor:pointer;

    color:#222;

}

/* ==========================================================
   HERO SECTION
========================================================== */

.hero{

    position:relative;

    width:100%;

    height:100vh;

    min-height:700px;

    overflow:hidden;

}


/* ===========================
   Background Slider
=========================== */

.hero-slider{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

}

.slide{

    position:absolute;

    inset:0;

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    opacity:0;

    transition:opacity 1.2s ease;

}

.slide.active{

    opacity:1;

}


/* ===========================
   Dark Overlay
=========================== */

.hero-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.55);

    z-index:1;

}


/* ===========================
   Hero Content
=========================== */

.hero-content{

    position:relative;

    z-index:2;

    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:flex-start;

    color:#ffffff;

}

.hero-tag{

    background:rgba(255,255,255,.15);

    padding:10px 18px;

    border-radius:50px;

    font-size:15px;

    margin-bottom:25px;

}

.hero-content h1{

    font-size:64px;

    font-weight:700;

    line-height:1.15;

    max-width:850px;

    margin-bottom:20px;

}


.hero-content p{

    font-size:22px;

    max-width:700px;

    color:#f2f2f2;

    margin-bottom:35px;

}

/* ==========================================================
   HERO BUTTONS
========================================================== */

.hero-buttons{

    display:flex;

    gap:18px;

    margin-bottom:40px;

}

.hero-book-btn,
.hero-tour-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:50px;

    font-size:17px;

    font-weight:600;

    transition:.35s ease;

}

.hero-book-btn{

    background:#FFD700;

    color:#222;

}

.hero-book-btn:hover{

    background:#ffbf00;

    transform:translateY(-4px);

    color:#222;

}

.hero-tour-btn{

    background:transparent;

    color:#fff;

    border:2px solid #fff;

}

.hero-tour-btn:hover{

    background:#fff;

    color:#222;

}


/* ==========================================================
   TRUST BADGES
========================================================== */

.hero-features{

    display:flex;

    flex-wrap:wrap;

    gap:30px;

}

.hero-features div{

    display:flex;

    align-items:center;

    gap:10px;

    font-size:18px;

}

.hero-features i{

    color:#FFD700;

    font-size:22px;

}

/* ==========================================================
   HERO ARROWS
========================================================== */

.hero-prev,
.hero-next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:58px;

    height:58px;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(8px);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    z-index:20;

    transition:.35s;

    font-size:22px;

}

.hero-prev{

    left:30px;

}

.hero-next{

    right:30px;

}

.hero-prev:hover,
.hero-next:hover{

    background:#FFD700;

    color:#222;

}


/* ==========================================================
   HERO DOTS
========================================================== */

.hero-dots{

    position:absolute;

    left:50%;

    bottom:35px;

    transform:translateX(-50%);

    display:flex;

    gap:12px;

    z-index:20;

}

.dot{

    width:13px;

    height:13px;

    border-radius:50%;

    background:rgba(255,255,255,.45);

    cursor:pointer;

    transition:.35s;

}

.dot.active{

    background:#FFD700;

    transform:scale(1.2);

}

/*==================================================
 WHY CHOOSE US
==================================================*/

.why-us{
    padding:90px 0;
    background:#f8f9fc;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#f4b400;
    font-weight:700;
    letter-spacing:2px;
}

.section-title h2{
    font-size:42px;
    margin:15px 0;
    font-weight:700;
}

.section-title p{
    max-width:750px;
    margin:auto;
    color:#666;
    font-size:18px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.why-card{
    background:#fff;
    border-radius:18px;
    padding:40px 25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:all .35s ease;
    cursor:pointer;
}

.why-card:hover{
    transform:translateY(-12px) scale(1.03);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.why-card i{
    font-size:50px;
    color:#f4b400;
    margin-bottom:20px;
}

.why-card h3{
    font-size:42px;
    font-weight:700;
    color:#0b5ed7;
    margin-bottom:10px;
}

.why-card p{
    font-size:18px;
    color:#555;
    margin:0;
}

/* ==========================================================
   POPULAR AIRPORT ROUTES
========================================================== */

.airport-routes{
    padding:100px 0;
    background:#f8f9fc;
}

.routes-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
    margin-top:60px;
}

.route-card{
    background:#fff;
    color:#222;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.route-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.route-image {
    position:relative;
}

.route-image img{

width:100%;

height:240px;

object-fit:cover;

display:block;

}

.badge{
    position:absolute;
    top:15px;
    left:15px;
    background:#FFD700;
    color:#222;
    font-size:13px;
    font-weight:700;
    padding:8px 14px;
    border-radius:30px;
}

.route-content{
    padding:25px;
}

.route-content h3{
    font-size:22px;
    line-height:1.4;
    color:#0d3b66;
    margin-bottom:15px;
}

.route-price{
    border:1px solid #eee;
    border-radius:12px;
    overflow:hidden;
    margin-bottom:20px;
}

.route-price div{
    display:flex;
    justify-content:space-between;
    padding:14px 18px;
}

.route-price div:first-child{
    border-bottom:1px solid #eee;
}

.route-price strong{
    color:#0d6efd;
    font-size:18px;
}

.route-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.route-bottom span{
    color:#666;
    font-size:15px;
}

.route-bottom a{

display:flex;
align-items:center;
justify-content:center;
gap:10px;

width:100%;

background:#25D366;
color:#fff;

text-decoration:none;

padding:14px;

border-radius:10px;

font-weight:700;

transition:.3s;

}

.route-bottom a:hover{

background:#1ebc59;
color:#fff;

}

.view-more{
    text-align:center;
    margin-top:50px;
}

#viewRoutes{
    background:#0d6efd;
    color:#fff;
    border:none;
    padding:16px 36px;
    border-radius:50px;
    font-size:17px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

#viewRoutes:hover{
    background:#084298;
}

#extraRoutes{
    display:none;
    margin-top:40px;
}

.more-routes {
    display: none;
}

.more-routes.show{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

    width:100%;
    grid-column:1 / -1;
}
.more-routes{
    display:none;
    width:100%;
}

.view-more-wrapper {
    text-align: center;
    margin: 40px 0;
}

.view-more-btn {
    background: #25D366;
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all .3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.route-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:160px;
    margin-top:40px;
}

.services-btn{
    background:#25D366;
    color:#fff;
    border:none;
    padding:16px 40px;
    font-size:18px;
    font-weight:700;
    border-radius:50px;
    cursor:pointer;
    transition:all .3s ease;
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
}

.services-btn:hover{
    background:#1EBE5A;
    color:#fff;
    transform:translateY(-2px);
}

.view-more-btn:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,.2);
}

.outstation-section{
    padding:80px 0;
    background:#f8fbff;
}















































/* =====================================
   SERVICES PAGE V2 PREMIUM DESIGN
===================================== */



.services-hero{

height:85vh;

background:
linear-gradient(
rgba(0,0,0,.65),
rgba(0,0,0,.65)
),
url("../images/service-banner.jpg");

background-size:cover;

background-position:center;

display:flex;

align-items:center;

justify-content:center;

text-align:center;

color:white;

padding-top:80px;

}




.hero-content{

max-width:900px;

padding:20px;

}




.services-hero h1{

font-size:55px;

font-weight:800;

margin-bottom:20px;

}




.services-hero p{

font-size:22px;

}





.hero-buttons{

display:flex;

justify-content:center;

gap:20px;

margin-top:30px;

flex-wrap:wrap;

}




.btn{

padding:14px 35px;

border-radius:40px;

font-weight:700;

text-decoration:none;

display:inline-flex;

align-items:center;

gap:10px;

}





.call{

background:#f5b400;

color:#111;

}




.whatsapp{

background:#25D366;

color:white;

}





/* INTRO */


.service-intro{

padding:70px 8%;

text-align:center;

}



.service-intro h2,
.airport-section h2,
.tour-section h2,
.outstation-section h2,
.why-section h2,
.faq-section h2{

font-size:38px;

font-weight:800;

}





.service-intro p{

font-size:18px;

line-height:1.8;

max-width:900px;

margin:auto;

}





/* AIRPORT SECTION */


.airport-section{

padding:60px 8%;

text-align:center;

}



.airport-section p{

max-width:900px;

margin:20px auto;

font-size:18px;

}





.service-highlights{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:20px;

margin-top:40px;

}



.service-highlights div{

background:white;

padding:25px;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.1);

}



.service-highlights i{

font-size:35px;

color:#f5b400;

}







/* FARE TABLE */


.fare-section{

padding:60px 6%;

background:#f7f7f7;

}



.fare-section h2{

text-align:center;

margin-bottom:30px;

}



.fare-table{

max-width:1100px;

margin:auto;

background:white;

border-radius:20px;

overflow:hidden;

box-shadow:0 10px 30px rgba(0,0,0,.12);

}




.fare-head,
.fare-row{

display:grid;

grid-template-columns:2fr 1fr 1fr 1fr;

padding:16px 20px;

align-items:center;

}




.fare-head{

background:#111;

color:white;

font-weight:700;

}




.fare-row{

border-bottom:1px solid #ddd;

}




.fare-row a{

background:#25D366;

color:white;

padding:8px 18px;

border-radius:20px;

text-decoration:none;

font-size:14px;

}





/* TOUR SECTIONS */


.tour-section{

padding:70px 6%;

text-align:center;

}




.tour-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:30px;

margin-top:40px;

}





.tour-card{

background:white;

border-radius:25px;

padding:30px;

text-align:left;

box-shadow:0 12px 35px rgba(0,0,0,.12);

transition:.3s;

}



.tour-card:hover{

transform:translateY(-8px);

}





.tour-card h3{

font-size:25px;

color:#111;

}





.places{

line-height:1.7;

color:#555;

}





.distance{

background:#f5b400;

display:inline-block;

padding:8px 18px;

border-radius:20px;

font-weight:bold;

}





.price-table div{

display:flex;

justify-content:space-between;

background:#f5f5f5;

margin:8px 0;

padding:12px;

border-radius:10px;

}





.book-tour{

display:block;

text-align:center;

background:#25D366;

color:white;

padding:12px;

border-radius:30px;

text-decoration:none;

margin-top:20px;

font-weight:bold;

}







/* OUTSTATION */


.outstation-section{

background:#111;

color:white;

padding:70px 6%;

text-align:center;

}




.outstation-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(350px,1fr));

gap:35px;

margin-top:40px;

}




.outstation-card{
    background:#2c2c2c;
    border-radius:20px;
    overflow:hidden;
    position:relative;
    transition:.35s ease;
    cursor:pointer;
    box-shadow:0 20px 45px rgba(0,0,0,.25);
    transition:.35s;
}
.outstation-card{
    display:flex;
    flex-direction:column;
    height:100%;
}
.route-badge{
    position:absolute;
    top:18px;
    left:18px;
    background:#ff4d4d;
    color:#fff;
    padding:8px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    z-index:5;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
}

.route-badge.best{
    background:#FFD700;
    color:#222;
}

.route-badge.popular{
    background:#007bff;
}

.outstation-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 50px rgba(0,0,0,.18);
}


.outstation-card img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
    transition:transform .5s ease;
}
.outstation-card:hover img{
    transform:scale(1.08);
}


.outstation-content{
    background:#2c2c2c;
    padding:25px;

    display:flex;
    flex-direction:column;
    flex:1;
}

.outstation-content h3{
    background:#2c2c2c;
    color:#fff;
    padding:15px 18px;
    border-radius:12px;
    text-align:center;
    font-size:22px;
    margin-bottom:18px;
}

.price-box{
    background:#2c2c2c;
    border-radius:12px;
    overflow:hidden;
    margin-bottom:18px;
}

.price-row{
    display:flex;
    justify-content:space-between;
    padding:14px 18px;
    color:#fff;
}

.price-row:first-child{
    border-bottom:1px solid rgba(255,255,255,.12);
}

.trip-time{
    background:#2c2c2c;
    color:#fff;
    text-align:center;
    padding:12px;
    border-radius:10px;
    margin:18px 0;
    font-size:15px;
}

.book-route-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:100%;
    margin-top:auto;
    padding:14px;
    transition:.3s ease;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
    font-weight:700;
    transition:.3s;
}

.book-route-btn:hover{
    background:#1EBE5A;
    color:#fff;
    transform:translateY(-2px);
}


.outstation-card i{

font-size:40px;

color:#f5b400;

}







/* WHY CHOOSE */


.why-section{

padding:70px 6%;

text-align:center;

}




.why-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

margin-top:40px;

}




.why-card{

padding:30px;

border-radius:20px;

background:white;

box-shadow:0 10px 30px rgba(0,0,0,.1);

}




.why-card i{

font-size:40px;

color:#f5b400;

}





/* UNION */


.union-info{

padding:70px 8%;

text-align:center;

background:#f5b400;

}




.union-stats{

display:flex;

justify-content:center;

gap:60px;

margin-top:40px;

}




.union-stats strong{

font-size:40px;

display:block;

}







/* FAQ */


.faq-section{

padding:70px 8%;

}




.faq-box{

background:white;

padding:25px;

margin:20px auto;

border-radius:15px;

box-shadow:0 8px 25px rgba(0,0,0,.1);

max-width:900px;

}





/* SEO */


.seo-content{

padding:60px 8%;

text-align:center;

line-height:1.8;

}







/* FOOTER */


footer{

background:#111;

color:white;

padding:50px 6%;

}



.footer-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:40px;

}



footer a{

display:block;

color:white;

margin:10px 0;

}



.copyright{

text-align:center;

margin-top:40px;

border-top:1px solid #444;

padding-top:20px;

}







/* MOBILE */


@media(max-width:900px){


.service-highlights,
.why-grid,
.outstation-grid{

grid-template-columns:repeat(2,1fr);

}


.tour-grid{

grid-template-columns:1fr;

}


.footer-grid{

grid-template-columns:1fr;

}


}



@media(max-width:600px){


.services-hero h1{

font-size:35px;

}



.services-hero p{

font-size:17px;

}



.service-highlights,
.why-grid,
.outstation-grid{

grid-template-columns:1fr;

}



.fare-head{

display:none;

}



.fare-row{

grid-template-columns:1fr;

gap:10px;

text-align:center;

}



.union-stats{

flex-direction:column;

gap:25px;

}


}
/* ================= HEADER NAVIGATION ================= */


header{

position:fixed;

top:0;

left:0;

width:100%;

height:80px;

display:flex;

align-items:center;

justify-content:space-between;

padding:0 6%;

background:rgba(0,0,0,0.85);

backdrop-filter:blur(10px);

z-index:9999;

}



.logo img{

height:65px;

width:auto;

}



nav{

display:flex;

align-items:center;

gap:30px;

}



nav a{

color:white;

text-decoration:none;

font-size:17px;

font-weight:600;

transition:.3s;

}



nav a:hover{

color:#f5b400;

}




/* MOBILE HEADER */


@media(max-width:768px){


header{

padding:0 20px;

}



.logo img{

height:55px;

}



nav{

gap:15px;

}



nav a{

font-size:14px;

}


}






























































/* =====================================
   ABOUT PAGE V3 CLEAN PREMIUM CSS
===================================== */



/* HERO */

.about-hero{

height:75vh;

background:
linear-gradient(
rgba(0,0,0,.60),
rgba(0,0,0,.60)
),
url("../images/about-banner.jpg");

background-size:cover;

background-position:center;

display:flex;

align-items:center;

justify-content:center;

text-align:center;

color:white;

margin-top:00px;

}



.about-hero-content h1{

font-size:55px;

font-weight:800;

}



.about-hero-content p{

font-size:22px;

}





/* INTRO */


.about-intro{

display:flex;

align-items:center;

gap:50px;

padding:70px 8%;

background:white;

}



.about-logo-box{

flex:1;

text-align:center;

}



.about-logo-box img{

width:230px;

max-width:100%;

}



.about-intro-text{

flex:2;

}



.about-intro-text h2{

font-size:38px;

font-weight:800;

}





/* JOURNEY */


.journey-section{

padding:80px 8%;

background:#f7f7f7;

}



.journey-section h2{

text-align:center;

font-size:40px;

}



.journey-tagline{

text-align:center;

font-size:22px;

color:#d99b00;

font-weight:700;

margin-bottom:40px;

}



.journey-content{

max-width:1000px;

margin:auto;

font-size:18px;

line-height:1.9;

}



.journey-content h3{

text-align:center;

color:#d99b00;

margin-top:35px;

}







/* CERTIFICATES */


.certificate-section{

padding:80px 8%;

text-align:center;

}



.certificate-section h2{

font-size:40px;

}



.documents-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:40px;

max-width:900px;

margin:40px auto;

}



.document-card{

background:white;

padding:25px;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.12);

}



.document-card img{

width:100%;

height:320px;

object-fit:contain;

background:#f5f5f5;

border-radius:15px;

padding:10px;

}



.document-card h3{

margin:20px 0;

font-size:22px;

}



.document-card a{

display:inline-block;

background:#f5b400;

color:#111;

padding:12px 30px;

border-radius:30px;

text-decoration:none;

font-weight:bold;

}







/* LEADERSHIP */


.leadership-section{

padding:80px 8%;

background:#f7f7f7;

text-align:center;

}



.leadership-section h2{

font-size:40px;

}



.leader-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:40px;

max-width:900px;

margin:40px auto;

}



.leader-card{

background:white;

padding:35px;

border-radius:25px;

box-shadow:0 10px 30px rgba(0,0,0,.12);

}



.leader-card img{

width:170px;

height:170px;

border-radius:50%;

object-fit:cover;

}



.leader-card h3{

font-size:26px;

margin-bottom:5px;

}



.leader-card h4{

color:#d99b00;

}





/* SERVICE COVERAGE */


.coverage-section{

padding:80px 6%;

text-align:center;

}



.coverage-section h2{

font-size:40px;

}



.coverage-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

margin-top:40px;

}



.coverage-card{

background:white;

padding:30px;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.12);

transition:.3s;

}



.coverage-card:hover{

transform:translateY(-8px);

}



.coverage-card i{

font-size:40px;

color:#f5b400;

}





/* CTA */


.about-cta{

padding:70px 8%;

background:#111;

color:white;

text-align:center;

}



.about-cta h2{

font-size:40px;

}








/* FOOTER */


.footer-logo{

width:120px;

margin-bottom:15px;

}









/* MOBILE */


@media(max-width:900px){


.about-intro{

flex-direction:column;

text-align:center;

}



.documents-grid{

grid-template-columns:1fr;

}



.leader-grid{

grid-template-columns:1fr;

}



.coverage-grid{

grid-template-columns:repeat(2,1fr);

}



}





@media (max-width: 600px) {

    .about-hero {
        height: 42vh;
        min-height: 260px;
    }

    .about-hero-content {
        padding: 0 18px;
    }

    .about-hero-content h1 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .about-hero-content p {
        font-size: 14px;
        line-height: 1.5;
        max-width: 300px;
        margin: 0 auto;
    }




.coverage-grid{

grid-template-columns:1fr;

}



.journey-content{

font-size:16px;

}

.route-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:100%;
    padding:14px 20px;
    margin-top:15px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.route-btn:hover{
    background:#1EBE5A;
    color:#fff;
}
}
/*=========================================================
                PREMIUM FLEET SECTION
=========================================================*/

.fleet-section{
    position:relative;
    padding:100px 0;
    background:linear-gradient(180deg,#061423 0%,#0b2342 50%,#061423 100%);
    overflow:hidden;
}

.fleet-bg-glow{
    position:absolute;
    width:700px;
    height:700px;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    border-radius:50%;
    background:radial-gradient(circle,
        rgba(255,215,0,.10) 0%,
        rgba(255,215,0,.03) 45%,
        transparent 75%);
    pointer-events:none;
}

.fleet-header{
    text-align:center;
    margin-bottom:60px;
    position:relative;
    z-index:5;
}

.fleet-subtitle{
    display:inline-block;
    color:#FFD700;
    font-weight:700;
    letter-spacing:3px;
    font-size:14px;
    text-transform:uppercase;
}

.fleet-header h2{
    color:#fff;
    font-size:46px;
    margin:18px 0;
    font-weight:800;
}

.fleet-header p{
    color:#d7d7d7;
    max-width:720px;
    margin:auto;
    line-height:1.8;
    font-size:17px;
}

/*==========================
 Slider
==========================*/

.fleet-slider{
    position:relative;
}

.fleet-wrapper{
    overflow:hidden;
}

.fleet-track{
    display:flex;
    gap:30px;
    transition:transform .6s ease;
    will-change:transform;
}

/*==========================
 Fade Edges
==========================*/

.fleet-fade-left,
.fleet-fade-right{

position:absolute;

top:0;

width:180px;

height:100%;

z-index:50;

pointer-events:none;

}

.fleet-fade-left{

left:0;

background:linear-gradient(
90deg,
#061423 0%,
rgba(6,20,35,.98) 30%,
rgba(6,20,35,.65) 60%,
transparent 100%
);

}

.fleet-fade-right{

right:0;

background:linear-gradient(
270deg,
#061423 0%,
rgba(6,20,35,.98) 30%,
rgba(6,20,35,.65) 60%,
transparent 100%
);

}

/*==========================
 Cards
==========================*/

.fleet-card{

min-width:320px;

background:linear-gradient(180deg,#18304d,#122742);

border-radius:28px;

overflow:hidden;

border:1px solid rgba(255,255,255,.08);

box-shadow:
0 20px 60px rgba(0,0,0,.45);

transition:.4s;

}

.fleet-card:hover{

    transform:translateY(-12px);

    box-shadow:
    0 40px 80px rgba(0,0,0,.55);

}

/* Featured Card */

.featured{

    border:2px solid #FFD700;

}

/*==========================
 Images
==========================*/

.fleet-image{
    height:240px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.fleet-image img{
    width:90%;
    height:90%;
    object-fit:contain;
    transition:.5s;
}

.fleet-card:hover img{

    transform:scale(1.08);

}

/*==========================
 Badge
==========================*/

.fleet-badge{

    position:absolute;

    top:18px;

    left:18px;

    background:#FFD700;

    color:#111;

    padding:8px 18px;

    border-radius:40px;

    font-size:12px;

    font-weight:700;

}

/*==========================
 Content
==========================*/

.fleet-content{

    padding:28px;

}

.fleet-content h3{

    color:#fff;

    font-size:28px;

    margin-bottom:20px;

}

.fleet-spec{

    display:flex;

    align-items:center;

    gap:12px;

    margin:14px 0;

    color:#d8d8d8;

}

.fleet-spec i{

    color:#FFD700;

    width:22px;

}

/*==========================
 Price Box
==========================*/

.fleet-price{

    margin:28px 0;

    background:#fff;

    border-radius:18px;

    text-align:center;

    padding:18px;

}

.fleet-price small{

    display:block;

    color:#888;

    letter-spacing:2px;

    margin-bottom:8px;

}

.fleet-price strong{

    display:block;

    font-size:38px;

    color:#0d3b66;

    line-height:1;

}

.fleet-price span{

    display:block;

    margin-top:8px;

    color:#666;

}

/*==========================
 Button
==========================*/

.fleet-btn{

display:flex;

justify-content:center;

align-items:center;

gap:12px;

width:100%;

padding:18px;

border-radius:60px;

background:linear-gradient(90deg,#22c55e,#25D366);

font-size:17px;

font-weight:700;

letter-spacing:.3px;

color:#fff;

transition:.35s;

}

.fleet-btn:hover{

transform:translateY(-4px);

box-shadow:0 12px 30px rgba(37,211,102,.45);

}

/*==========================
 Arrows
==========================*/

.fleet-arrow{

    position:absolute;

    top:45%;

    transform:translateY(-50%);

    width:60px;

    height:60px;

    border:none;

    border-radius:50%;

    background:#FFD700;

    color:#111;

    font-size:22px;

    cursor:pointer;

    z-index:20;

    transition:.3s;

}

.fleet-arrow:hover{

    transform:translateY(-50%) scale(1.08);

}

.fleet-prev{

    left:-30px;

}

.fleet-next{

    right:-30px;

}

/*==========================
 Footer Button
==========================*/

.fleet-footer{

    text-align:center;

    margin-top:55px;

}

.view-fleet-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:16px 42px;

    border-radius:50px;

    background:#25D366;

    color:#fff;

    text-decoration:none;

    font-weight:700;

}

.view-fleet-btn:hover{

    background:#1EBE5A;

    color:#fff;

}

































/*==================================================
                GALLERY PAGE
==================================================*/

.gallery-hero{
    position:relative;
    height:65vh;
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
}

.gallery-filter{
    padding:50px 0 25px;
    background:#fff;
}

.filter-buttons{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
}

.filter-btn{
    border:none;
    background:#f4f4f4;
    padding:12px 24px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.filter-btn:hover,
.filter-btn.active{
    background:#0d6efd;
    color:#fff;
}

.gallery-section{
    padding:30px 0 80px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    grid-auto-rows:220px;
    gap:18px;
    grid-auto-flow:dense;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    cursor:pointer;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.normal{
    grid-row:span 1;
}

.tall{
    grid-row:span 2;
}

.wide{
    grid-column:span 2;
}

.large{
    grid-column:span 2;
    grid-row:span 2;
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(0,0,0,.85),
    rgba(0,0,0,.15));
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:20px;
    opacity:0;
    transition:.35s;
}

.gallery-item:hover .gallery-overlay{
    opacity:1;
}

.gallery-overlay h4{
    color:#fff;
    font-size:22px;
    margin-bottom:8px;
}

.gallery-overlay p{
    color:#f5f5f5;
    margin-bottom:10px;
}

.gallery-overlay span{
    color:#FFD54F;
    font-weight:600;
}

.gallery-cta{
    padding:90px 0;
    background:#0d6efd;
    color:#fff;
}

.cta-box{
    text-align:center;
    max-width:800px;
    margin:auto;
}

.cta-box h2{
    font-size:42px;
    margin-bottom:15px;
}

.cta-box p{
    font-size:18px;
    margin-bottom:35px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

@media(max-width:992px){

.gallery-grid{
grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:768px){

.gallery-grid{
grid-template-columns:repeat(2,1fr);
grid-auto-rows:170px;
gap:12px;
}

.wide,
.large{
grid-column:span 2;
}

}

@media(max-width:480px){

.gallery-grid{
grid-auto-rows:150px;
}

.gallery-overlay h4{
font-size:17px;
}

.gallery-overlay p{
font-size:13px;
}

}
/* ================= LIGHTBOX ================= */

.gallery-lightbox{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.95);

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:99999;

    opacity:0;

    pointer-events:none;

    visibility:hidden;

    transition:.3s;

}

.gallery-lightbox.show{

    opacity:1;
    visibility:visible;
    pointer-events:auto;   /* ADD THIS */

}

.gallery-lightbox img{

    max-width:90%;

    max-height:85vh;

    border-radius:15px;

}

.lightbox-close,
.lightbox-prev,
.lightbox-next{

    position:absolute;

    color:#fff;

    font-size:35px;

    cursor:pointer;

    transition:.3s;

}

.lightbox-close{

    top:30px;

    right:40px;

}

.lightbox-prev{

    left:40px;

}

.lightbox-next{

    right:40px;

}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover{

    color:#FFD700;

}

/*=========================================
LOCAL SHORT TOURS
=========================================*/

.local-short-tours{
    padding:110px 0;
    background:linear-gradient(180deg,#071727,#0b2238);
    position:relative;
    overflow:hidden;
}

.local-short-tours::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    left:-220px;
    top:-220px;
    border-radius:50%;
    background:rgba(255,193,7,.05);
    filter:blur(120px);
}

.local-short-tours::after{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    right:-220px;
    bottom:-220px;
    border-radius:50%;
    background:rgba(37,211,102,.06);
    filter:blur(120px);
}

/* Heading */

.local-short-tours .section-title{
    text-align:center;
    margin-bottom:70px;
}

.local-short-tours .section-title span{
    display:inline-block;
    color:#FFC107;
    font-size:17px;
    font-weight:800;
    letter-spacing:4px;
    margin-bottom:16px;
}

.local-short-tours .section-title h2{
    color:#fff;
    font-size:48px;
    font-weight:900;
    margin-bottom:18px;
    text-shadow:0 10px 30px rgba(0,0,0,.35);
}

.local-short-tours .section-title p{
    color:#b9c7d5;
    max-width:760px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
}

/* Grid */

.short-tour-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

/* Card */

.short-tour-card{
    position:relative;
    height:440px;
    overflow:hidden;
    border-radius:26px;
    cursor:pointer;
    box-shadow:
        0 20px 45px rgba(0,0,0,.40),
        0 35px 90px rgba(0,0,0,.30);
    transition:.45s;
}

.short-tour-card:hover{
    transform:translateY(-10px);
}

.short-tour-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.8s;
}

.short-tour-card:hover img{
    transform:scale(1.12);
}

/* Overlay */

.short-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:30px;

    background:linear-gradient(
        to top,
        rgba(2,12,27,.96),
        rgba(2,12,27,.65),
        rgba(2,12,27,.20),
        transparent
    );
}

.short-overlay h3{
    color:#fff;
    font-size:32px;
    font-weight:800;
    margin-bottom:14px;
}

.short-overlay p{
    color:#d6dde5;
    line-height:1.7;
    font-size:16px;
    margin-bottom:20px;
}

.tour-price{
    color:#FFC107;
    font-size:20px;
    font-weight:800;
    margin-bottom:22px;
}

.tour-price strong{
    color:#fff;
}

/* Button */

.tour-view-btn{
    border:none;
    padding:15px 34px;
    border-radius:60px;
    background:linear-gradient(90deg,#25D366,#18b34c);
    color:#fff;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
    transition:.35s;
    box-shadow:0 15px 35px rgba(37,211,102,.30);
}

.tour-view-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 45px rgba(37,211,102,.45);
}

/* Popup */

.short-tour-modal{
    position:fixed;
    inset:0;
    display:none;
    align-items:center;
    justify-content:center;
    background:rgba(0,0,0,.82);
    backdrop-filter:blur(8px);
    z-index:99999;
    padding:35px;
}

.short-tour-modal.active{
    display:flex;
}

.short-tour-modal-box{
    width:100%;
    max-width:950px;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    position:relative;
    animation:popup .35s;
}

.short-tour-close{
    position:absolute;
    top:18px;
    right:22px;
    width:48px;
    height:48px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    font-size:30px;
    font-weight:700;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
    z-index:5;
}

.short-tour-close:hover{
    background:#FFC107;
}

@keyframes popup{

    from{
        transform:translateY(40px) scale(.96);
        opacity:0;
    }

    to{
        transform:none;
        opacity:1;
    }

}

/* Responsive */

@media(max-width:991px){

    .short-tour-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:600px){

    .local-short-tours{
        padding:80px 0;
    }

    .local-short-tours .section-title h2{
        font-size:34px;
    }

    .short-tour-card{
        height:380px;
    }

    .short-overlay{
        padding:22px;
    }

    .short-overlay h3{
        font-size:24px;
    }

    .tour-view-btn{
        width:100%;
    }

}
/*=========================================
HOME GALLERY
=========================================*/

.home-gallery{

    padding:110px 0;

    background:linear-gradient(180deg,#071727,#0b2238);

    position:relative;

    overflow:hidden;

}

.home-gallery::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    border-radius:50%;

    background:rgba(255,193,7,.05);

    top:-250px;

    left:-250px;

    filter:blur(120px);

}

.home-gallery::after{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    border-radius:50%;

    background:rgba(37,211,102,.05);

    right:-250px;

    bottom:-250px;

    filter:blur(120px);

}

/* Heading */

.home-gallery .section-title{

    text-align:center;

    margin-bottom:60px;

    position:relative;

    z-index:2;

}

.home-gallery .section-title span{

    display:inline-block;

    color:#FFC107;

    font-size:18px;

    font-weight:800;

    letter-spacing:4px;

    margin-bottom:15px;

}

.home-gallery .section-title h2{

    color:#fff;

    font-size:48px;

    font-weight:900;

}

/* Slider */

.gallery-slider{

    position:relative;

    overflow:hidden;

}

/* Fade Effect */

.gallery-slider::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:180px;

    height:100%;

    z-index:10;

    pointer-events:none;

    background:linear-gradient(to right,#071727,transparent);

}

.gallery-slider::after{

    content:"";

    position:absolute;

    right:0;

    top:0;

    width:180px;

    height:100%;

    z-index:10;

    pointer-events:none;

    background:linear-gradient(to left,#071727,transparent);

}

/* Track */

.gallery-track{

    display:flex;

    width:max-content;

    gap:22px;

    animation:galleryScroll 60s linear infinite;

}

.gallery-slider:hover .gallery-track{

    animation-play-state:paused;

}

/* Card */

.gallery-item{

    flex:none;

    width:370px;

    height:260px;

    overflow:hidden;

    border-radius:22px;

    background:#fff;

    cursor:pointer;

    transition:.45s;

    box-shadow:

    0 20px 45px rgba(0,0,0,.35);

}

.gallery-item:hover{

    transform:translateY(-8px);

    box-shadow:

    0 30px 70px rgba(255,193,7,.25);

}

.gallery-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.7s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

/* Button */

.gallery-footer{

    text-align:center;

    margin-top:50px;

}

.gallery-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:18px 38px;

    border-radius:60px;

    text-decoration:none;

    color:#fff;

    font-weight:700;

    background:linear-gradient(90deg,#25D366,#18b34c);

    transition:.35s;

    box-shadow:0 12px 35px rgba(37,211,102,.35);

}

.gallery-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 45px rgba(37,211,102,.45);

}

/* Animation */

@keyframes galleryScroll{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

/* Responsive */

@media(max-width:992px){

.gallery-item{

    width:300px;

    height:210px;

}

}

@media(max-width:768px){

.gallery-item{

    width:240px;

    height:170px;

}

.home-gallery .section-title h2{

    font-size:34px;

}

.gallery-slider::before,

.gallery-slider::after{

    width:60px;

}

}

/*=========================================
GALLERY LIGHTBOX
=========================================*/

.gallery-lightbox{

position:fixed;

left:0;

top:0;

width:100%;

height:100%;

background:rgba(0,0,0,.92);

display:none;

align-items:center;

justify-content:center;

z-index:999999;

}

.gallery-lightbox.active{

display:flex;

}

.gallery-lightbox img{

max-width:88%;

max-height:85%;

border-radius:18px;

box-shadow:0 20px 60px rgba(0,0,0,.6);

}

.gallery-close{

position:absolute;

right:40px;

top:30px;

font-size:45px;

color:#fff;

cursor:pointer;

transition:.3s;

}

.gallery-close:hover{

color:#FFC107;

transform:rotate(90deg);

}

.gallery-prev,

.gallery-next{

position:absolute;

top:50%;

transform:translateY(-50%);

width:60px;

height:60px;

border:none;

border-radius:50%;

background:#fff;

cursor:pointer;

font-size:20px;

transition:.3s;

}

.gallery-prev{

left:40px;

}

.gallery-next{

right:40px;

}

.gallery-prev:hover,

.gallery-next:hover{

background:#FFC107;

}

@media(max-width:768px){

.gallery-prev,

.gallery-next{

width:45px;

height:45px;

}

.gallery-close{

right:20px;

top:20px;

font-size:35px;

}

}

/*=========================================
PREMIUM FOOTER
=========================================*/

.footer{

    background:linear-gradient(180deg,#071727,#04111f);

    padding:70px 0 25px;

    position:relative;

    overflow:hidden;

}

.footer::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:rgba(255,193,7,.05);

    top:-180px;

    left:-180px;

    filter:blur(120px);

}

.footer::after{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:rgba(37,211,102,.05);

    bottom:-180px;

    right:-180px;

    filter:blur(120px);

}

/*================ GRID ================*/

.footer-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.3fr;

    gap:60px;

}

/*================ LOGO ================*/

.footer-logo{

    width:85px;

    margin-bottom:20px;

}

.footer-brand h3{

    color:#fff;

    font-size:28px;

    margin-bottom:18px;

    font-weight:800;

}

.footer-brand p{

    color:#c7d1db;

    line-height:1.9;

    font-size:16px;

    margin-bottom:28px;

}

/*================ HEADINGS ================*/

.footer-col h4{

    color:#FFC107;

    font-size:22px;

    margin-bottom:28px;

    font-weight:800;

    position:relative;

}

.footer-col h4::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:45px;

    height:3px;

    border-radius:10px;

    background:#25D366;

}

/*================ LINKS ================*/

.footer ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer ul li{

    margin-bottom:18px;

}

.footer ul li a{

    color:#d8e2ee;

    text-decoration:none;

    transition:.35s;

    display:inline-block;

}

.footer ul li a:hover{

    color:#25D366;

    transform:translateX(8px);

}

/*================ CONTACT ================*/

.footer-contact li{

    display:flex;

    align-items:flex-start;

    gap:14px;

    color:#d8e2ee;

    margin-bottom:20px;

}

.footer-contact i{

    color:#25D366;

    font-size:18px;

    margin-top:3px;

    width:20px;

}

/*================ SOCIAL ================*/

.footer-social{

    display:flex;

    gap:16px;

}

.footer-social a{

    width:48px;

    height:48px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.08);

    color:#fff;

    text-decoration:none;

    transition:.35s;

    font-size:18px;

}

.footer-social a:hover{

    background:#25D366;

    transform:translateY(-6px);

    box-shadow:0 15px 35px rgba(37,211,102,.4);

}

/*================ DIVIDER ================*/

.footer-divider{

    border:none;

    height:1px;

    background:rgba(255,255,255,.12);

    margin:60px 0 30px;

}

/*================ BOTTOM ================*/

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:30px;

    flex-wrap:wrap;

}

.footer-bottom p{

    color:#bfc8d2;

    font-size:15px;

}

.footer-policy{

    display:flex;

    gap:30px;

    flex-wrap:wrap;

}

.footer-policy a{

    color:#bfc8d2;

    text-decoration:none;

    transition:.3s;

}

.footer-policy a:hover{

    color:#FFC107;

}

/*================ RESPONSIVE ================*/

@media(max-width:991px){

.footer-grid{

grid-template-columns:1fr 1fr;

gap:45px;

}

}

@media(max-width:768px){

.footer{

padding:70px 0 25px;

}

.footer-grid{

grid-template-columns:1fr;

gap:40px;

text-align:center;

}

.footer-col h4::after{

left:50%;

transform:translateX(-50%);

}

.footer-contact li{

justify-content:center;

}

.footer-social{

justify-content:center;

}

.footer-bottom{

flex-direction:column;

text-align:center;

}

.footer-policy{

justify-content:center;

}

.footer-logo{

margin:auto auto 20px;

display:block;

}

}

/* Footer Disclaimer */

.footer-disclaimer{

    display:block !important;

    width:100%;

    margin-top:5px;

    padding:18px 20px 0;

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

    font-size:10px;

    line-height:1.20;

    color:#7f8c99 !important;

    opacity:.75;

    font-weight:100;

    letter-spacing:.2px;

}































/*==================================================
CONTACT PAGE
==================================================*/

.contact-info-section{
    padding:90px 0;
    background:#f8f9fc;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;
}

.contact-card{
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s ease;
}

.contact-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.contact-icon{
    width:80px;
    height:80px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    background:#FFD700;
    display:flex;
    align-items:center;
    justify-content:center;
}

.contact-icon i{
    font-size:34px;
    color:#222;
}

.contact-card h3{
    font-size:24px;
    margin-bottom:15px;
    color:#0d3b66;
}

.contact-card a{
    color:#555;
    font-weight:600;
    word-break:break-word;
}

.contact-card p{
    color:#666;
    margin:0;
}

/*=========================
BOOKING SECTION
=========================*/

.booking-section{
    padding:100px 0;
    background:#fff;
}

.booking-wrapper{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:50px;
    align-items:center;
}

.booking-form{
    background:#fff;
    border-radius:25px;
    padding:40px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.booking-form h2{
    font-size:40px;
    margin-bottom:10px;
    color:#0d3b66;
}

.booking-form p{
    color:#666;
    margin-bottom:35px;
}

.booking-form form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.booking-form input,
.booking-form textarea{
    width:100%;
    padding:16px 20px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:16px;
    transition:.3s;
    font-family:inherit;
}

.booking-form input:focus,
.booking-form textarea:focus{
    outline:none;
    border-color:#FFD700;
    box-shadow:0 0 0 4px rgba(255,215,0,.15);
}

.booking-form textarea{
    resize:none;
}

.booking-form button{
    background:#25D366;
    color:#fff;
    padding:16px;
    border:none;
    border-radius:12px;
    font-size:18px;
    font-weight:700;
    transition:.3s;
}

.booking-form button:hover{
    background:#1EBE5A;
    transform:translateY(-2px);
}

.booking-note{
    text-align:center;
    color:#777;
    font-size:14px;
}

/*=========================
RIGHT SIDE
=========================*/

.booking-right{
    text-align:center;
}

.booking-right img{
    width:100%;
    max-width:450px;
    margin:auto;
}

.booking-features{
    margin-top:40px;
    background:#f8f9fc;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.booking-features div{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:18px;
    font-size:18px;
    color:#333;
}

.booking-features div:last-child{
    margin-bottom:0;
}

.booking-features i{
    color:#25D366;
    font-size:22px;
}

/*=========================
MAP
=========================*/

.map-section{
    padding:90px 0;
    background:#f8f9fc;
}

.map-wrapper{
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.10);
    margin-top:50px;
}

.map-wrapper iframe{
    width:100%;
    height:450px;
    border:0;
}

/*=========================
CTA
=========================*/

.contact-cta{
    padding:80px 0;
    background:#111;
    color:#fff;
    text-align:center;
}

.contact-cta h2{
    font-size:46px;
    margin-bottom:20px;
}

.contact-cta p{
    font-size:20px;
    color:#ddd;
    max-width:700px;
    margin:auto;
    margin-bottom:40px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.cta-buttons a{
    padding:16px 35px;
    border-radius:50px;
    font-size:18px;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    gap:10px;
    transition:.3s;
}

.cta-buttons .call-btn{
    background:#FFD700;
    color:#222;
}

.cta-buttons .call-btn:hover{
    background:#f4c400;
    transform:translateY(-3px);
}

.cta-buttons .whatsapp-btn{
    background:#25D366;
    color:#fff;
}

.cta-buttons .whatsapp-btn:hover{
    background:#1EBE5A;
    transform:translateY(-3px);
}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:991px){

.contact-grid{
grid-template-columns:repeat(2,1fr);
}

.booking-wrapper{
grid-template-columns:1fr;
}

.booking-right{
order:-1;
}

}

@media(max-width:768px){

.contact-info-section,
.booking-section,
.map-section,
.contact-cta{
padding:70px 0;
}

.contact-grid{
grid-template-columns:1fr;
}

.booking-form{
padding:30px 20px;
}

.booking-form h2{
font-size:32px;
}

.contact-cta h2{
font-size:34px;
}

.contact-cta p{
font-size:17px;
}

.cta-buttons{
flex-direction:column;
}

.cta-buttons a{
width:100%;
justify-content:center;
}

.booking-features div{
font-size:16px;
}

}

/*=========================================
        FLEET PAGE
=========================================*/

.fleet-hero{
    padding:120px 0 80px;
    background:linear-gradient(135deg,#0d2b45,#163f66);
    text-align:center;
    color:#fff;
}

.fleet-hero .section-tag{
    display:inline-block;
    background:#FFD700;
    color:#111;
    padding:8px 22px;
    border-radius:30px;
    font-weight:700;
    font-size:14px;
    letter-spacing:1px;
    margin-bottom:20px;
}

.fleet-hero h1{
    font-size:54px;
    margin-bottom:20px;
    font-weight:700;
}

.fleet-hero p{
    max-width:700px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
    color:#d9d9d9;
}

/*=========================================
        VEHICLE SECTION
=========================================*/

.fleet-car{
    padding:100px 0;
    background:#fff;
}

.fleet-car.alt{
    background:#f7f9fc;
}

.car-heading{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:50px;

    flex-wrap:wrap;

    gap:20px;

}

.car-type{

    color:#d4a017;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:14px;

}

.car-heading h2{

    font-size:42px;

    margin-top:10px;

    color:#0d2b45;

}

/*=========================================
        PRICE CARD
=========================================*/

.car-price{

    background:#fff;

    padding:22px 35px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    text-align:center;

    min-width:180px;

}

.car-price small{

    display:block;

    color:#777;

    font-size:13px;

    text-transform:uppercase;

    margin-bottom:5px;

}

.car-price h3{

    color:#f4b400;

    font-size:38px;

    margin:0;

    font-weight:700;

}

.car-price span{

    color:#666;

    font-size:15px;

}

/*=========================================
        CONTENT GRID
=========================================*/

.car-wrapper{

    display:grid;

    grid-template-columns:60% 40%;

    gap:60px;

    align-items:center;

}

.car-wrapper.reverse{

    grid-template-columns:40% 60%;

}

.car-wrapper.reverse .car-image{

    order:2;

}

.car-wrapper.reverse .car-info{

    order:1;

}

/*=========================================
        IMAGE
=========================================*/

.car-image{

    background:linear-gradient(135deg,#ffffff,#f3f5f8);

    border-radius:30px;

    padding:35px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    transition:.4s;

    overflow:hidden;

}

.car-image:hover{

    transform:translateY(-8px);

    box-shadow:0 30px 70px rgba(0,0,0,.15);

}

.car-image img{

    width:100%;

    max-width:650px;

    display:block;

    margin:auto;

    object-fit:contain;

    filter:drop-shadow(0 30px 30px rgba(0,0,0,.18));

    transition:.5s;

}

.car-image:hover img{

    transform:scale(1.05);

}

/*=========================================
        INFO
=========================================*/

.car-info p{

    font-size:17px;

    color:#666;

    line-height:1.9;

    margin-bottom:35px;

}
/*=========================================
        VEHICLE SPECS
=========================================*/

.car-specs{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin:35px 0;

}

.car-specs div{

    display:flex;

    align-items:center;

    gap:15px;

    background:#fff;

    padding:18px 20px;

    border-radius:18px;

    box-shadow:0 12px 25px rgba(0,0,0,.06);

    transition:.35s;

    cursor:pointer;

}

.car-specs div:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 40px rgba(0,0,0,.12);

}

.car-specs i{

    width:52px;

    height:52px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#FFD700;

    color:#111;

    font-size:20px;

    flex-shrink:0;

}

.car-specs span{

    font-size:16px;

    font-weight:600;

    color:#333;

}

/*=========================================
        FEATURES LIST
=========================================*/

.car-info ul{

    list-style:none;

    padding:0;

    margin:35px 0;

}

.car-info ul li{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:16px;

    font-size:16px;

    color:#555;

    transition:.3s;

}

.car-info ul li:hover{

    transform:translateX(6px);

}

.car-info ul li i{

    color:#25D366;

    font-size:18px;

}

/*=========================================
        BUTTONS
=========================================*/

.car-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    margin-top:40px;

}

.btn-whatsapp{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    padding:16px 34px;

    background:#25D366;

    color:#fff;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

    box-shadow:0 12px 25px rgba(37,211,102,.30);

}

.btn-whatsapp:hover{

    background:#1db954;

    color:#fff;

    transform:translateY(-4px);

    box-shadow:0 20px 35px rgba(37,211,102,.45);

}

.btn-call{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    padding:16px 34px;

    background:#0d2b45;

    color:#fff;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

    box-shadow:0 12px 25px rgba(13,43,69,.25);

}

.btn-call:hover{

    background:#FFD700;

    color:#111;

    transform:translateY(-4px);

    box-shadow:0 20px 35px rgba(255,215,0,.35);

}

/*=========================================
        GENERAL ANIMATIONS
=========================================*/

.fleet-car{

    transition:.4s;

}

.fleet-car:hover{

    background:#fcfcfc;

}

.car-heading h2{

    transition:.3s;

}

.fleet-car:hover .car-heading h2{

    color:#d4a017;

}

/*=========================================
        SMALL IMAGE EFFECT
=========================================*/

.car-image{

    position:relative;

}

.car-image::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:20px;

    transform:translateX(-50%);

    width:70%;

    height:25px;

    background:rgba(0,0,0,.12);

    filter:blur(20px);

    border-radius:50%;

    z-index:0;

}

.car-image img{

    position:relative;

    z-index:2;

}

/*=========================================
        SPACING
=========================================*/

.car-info{

    padding-right:15px;

}

.car-wrapper.reverse .car-info{

    padding-left:15px;

    padding-right:0;

}
/*=========================================
        COMPARISON TABLE
=========================================*/

.fleet-table{

    padding:100px 0;

    background:#f7f9fc;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title span{

    display:inline-block;

    color:#d4a017;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:10px;

}

.section-title h2{

    font-size:42px;

    color:#0d2b45;

}

.table-wrapper{

    overflow-x:auto;

    background:#fff;

    border-radius:25px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.table-wrapper table{

    width:100%;

    border-collapse:collapse;

}

.table-wrapper thead{

    background:#0d2b45;

    color:#fff;

}

.table-wrapper th{

    padding:22px;

    font-size:16px;

    font-weight:600;

    text-align:center;

}

.table-wrapper td{

    padding:20px;

    text-align:center;

    border-bottom:1px solid #eee;

    font-size:16px;

    color:#555;

}

.table-wrapper tbody tr{

    transition:.3s;

}

.table-wrapper tbody tr:hover{

    background:#fff8dc;

    transform:scale(1.01);

}

/*=========================================
        CTA SECTION
=========================================*/

.fleet-cta{

    padding:100px 0;

    background:linear-gradient(135deg,#0d2b45,#163f66);

}

.cta-box{

    max-width:900px;

    margin:auto;

    background:#fff;

    padding:70px;

    border-radius:30px;

    text-align:center;

    box-shadow:0 30px 60px rgba(0,0,0,.15);

}

.cta-box span{

    color:#d4a017;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:2px;

}

.cta-box h2{

    font-size:42px;

    color:#0d2b45;

    margin:20px 0;

}

.cta-box p{

    color:#666;

    font-size:18px;

    line-height:1.8;

    margin-bottom:40px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:992px){

.car-wrapper{

grid-template-columns:1fr;

gap:50px;

}

.car-wrapper.reverse{

grid-template-columns:1fr;

}

.car-wrapper.reverse .car-image{

order:1;

}

.car-wrapper.reverse .car-info{

order:2;

}

.car-heading{

flex-direction:column;

align-items:flex-start;

}

.car-price{

width:100%;

max-width:250px;

}

.car-info{

padding:0;

}

}

@media(max-width:768px){

.fleet-hero{

padding:80px 0 60px;

}

.fleet-hero h1{

font-size:38px;

}

.car-heading h2{

font-size:30px;

}

.car-specs{

grid-template-columns:1fr;

}

.car-buttons{

flex-direction:column;

}

.btn-whatsapp,

.btn-call{

width:100%;

justify-content:center;

}

.cta-box{

padding:40px 25px;

}

.cta-box h2{

font-size:30px;

}

.section-title h2{

font-size:32px;

}

.table-wrapper th,

.table-wrapper td{

padding:14px;

font-size:14px;

}

}

@media(max-width:576px){

.car-image{

padding:20px;

}

.car-image img{

max-width:100%;

}

.car-price h3{

font-size:30px;

}

.car-info p{

font-size:15px;

}

.car-info ul li{

font-size:15px;

}

.fleet-table{

padding:70px 0;

}

.fleet-cta{

padding:70px 0;

}

}

/*=========================================
        SMOOTH ANIMATION
=========================================*/

.fleet-car{

animation:fadeUp .8s ease;

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/*=========================================
        SCROLL BEHAVIOR
=========================================*/

html{

scroll-behavior:smooth;

}

/*=========================================
TOUR POPUP
=========================================*/

.tour-popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.82);
    backdrop-filter:blur(8px);
    display:none;
    align-items:center;
    justify-content:center;
    padding:30px;
    z-index:99999;
}

.tour-popup.active{
    display:flex;
    animation:fadePopup .35s ease;
}

@keyframes fadePopup{
    from{opacity:0;}
    to{opacity:1;}
}

.tour-popup-box{
    width:100%;
    max-width:1000px;
    max-height:92vh;
    overflow-y:auto;
    background:#fff;
    border-radius:24px;
    position:relative;
    box-shadow:0 30px 80px rgba(0,0,0,.45);
    animation:popupScale .35s ease;
}

@keyframes popupScale{
    from{
        transform:translateY(40px) scale(.95);
        opacity:0;
    }
    to{
        transform:none;
        opacity:1;
    }
}

.tour-popup-close{
    position:absolute;
    top:18px;
    right:18px;
    width:48px;
    height:48px;
    border:none;
    border-radius:50%;
    background:#fff;
    font-size:30px;
    font-weight:700;
    cursor:pointer;
    z-index:10;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    transition:.3s;
}

.tour-popup-close:hover{
    background:#FFC107;
    transform:rotate(90deg);
}

.popup-banner{
    position:relative;
    height:360px;
}

.popup-banner img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.popup-banner::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.75),
        rgba(0,0,0,.20),
        transparent
    );
}

.popup-title{
    position:absolute;
    left:40px;
    bottom:35px;
    color:#fff;
    z-index:2;
}

.popup-title h2{
    font-size:46px;
    margin:0 0 10px;
    font-weight:900;
}

.popup-title p{
    font-size:18px;
    opacity:.95;
}

.popup-body{
    padding:45px;
}

.popup-body h3{
    margin:35px 0 18px;
    color:#0b2238;
    font-size:28px;
}

.popup-description{
    color:#555;
    line-height:1.9;
    font-size:17px;
}

.popup-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.popup-list div{
    background:#f8f9fb;
    padding:16px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.popup-list div:hover{
    background:#25D366;
    color:#fff;
    transform:translateX(6px);
}

.popup-list i{
    color:#25D366;
    margin-right:10px;
}

.popup-list div:hover i{
    color:#fff;
}

.popup-price{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    margin-top:20px;
}

.popup-price div{
    background:#f8f9fb;
    padding:18px;
    border-radius:12px;
    display:flex;
    justify-content:space-between;
    font-weight:700;
}

.popup-book{
    margin-top:40px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:18px 40px;
    background:linear-gradient(90deg,#25D366,#17a847);
    color:#fff;
    text-decoration:none;
    border-radius:60px;
    font-weight:700;
    font-size:17px;
    transition:.35s;
}

.popup-book:hover{
    transform:translateY(-5px);
}

@media(max-width:768px){

.popup-banner{
    height:240px;
}

.popup-title{
    left:22px;
    bottom:22px;
}

.popup-title h2{
    font-size:30px;
}

.popup-body{
    padding:25px;
}

.popup-list,
.popup-price{
    grid-template-columns:1fr;
}

.popup-book{
    width:100%;
}

}

/*==================================================
TOUR MODAL
==================================================*/

.tour-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:99999;
    padding:25px;
}

.tour-modal.active{
    opacity:1;
    visibility:visible;
}

.tour-modal-content{
    width:100%;
    max-width:950px;
    max-height:90vh;
    overflow-y:auto;
    background:#fff;
    border-radius:20px;
    position:relative;
    animation:popupScale .35s ease;
    box-shadow:0 30px 80px rgba(0,0,0,.4);
}

@keyframes popupScale{

    from{
        transform:scale(.9);
        opacity:0;
    }

    to{
        transform:scale(1);
        opacity:1;
    }

}

.tour-close{
    position:absolute;
    right:20px;
    top:15px;
    font-size:34px;
    cursor:pointer;
    z-index:10;
    color:#fff;
    background:#000;
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

/*==================================================
HOME TOUR POPUP
PART 1
==================================================*/

.tour-popup-banner{
    position:relative;
    height:340px;
    overflow:hidden;
}

.tour-popup-banner img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.tour-popup-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.15));
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:45px;
}

.tour-popup-overlay h2{
    color:#fff;
    font-size:42px;
    font-weight:800;
    margin-bottom:10px;
    line-height:1.15;
}

.tour-popup-overlay p{
    color:#f5f5f5;
    font-size:17px;
    max-width:650px;
    line-height:1.8;
}

.tour-popup-body{
    padding:45px;
    background:#fff;
}

.tour-popup-body h3{
    font-size:26px;
    margin:35px 0 18px;
    color:#0b2238;
    font-weight:700;
}

.tour-top-info{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    margin-bottom:30px;
}

.tour-top-info div{
    background:#f8f9fb;
    border-radius:16px;
    padding:20px;
    text-align:center;
    border:1px solid #e8edf3;
    transition:.3s;
}

.tour-top-info div:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.tour-top-info h4{
    color:#ffb400;
    margin-bottom:10px;
    font-size:16px;
    font-weight:700;
}

.tour-top-info span{
    color:#333;
    font-size:16px;
    font-weight:600;
}

/*==================================================
HOME TOUR POPUP
PART 2
==================================================*/

.tour-place-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    margin:25px 0 40px;
}

.tour-place-list div{
    background:#f8f9fb;
    border:1px solid #ececec;
    border-radius:12px;
    padding:14px 18px;
    font-size:15px;
    font-weight:500;
    color:#333;
    display:flex;
    align-items:center;
    transition:.3s;
}

.tour-place-list div:hover{
    background:#fff8e7;
    border-color:#ffc107;
    transform:translateX(6px);
}

.tour-place-list i{
    color:#25D366;
    font-size:18px;
    margin-right:12px;
}

.tour-book-button{
    display:block;
    width:100%;
    background:linear-gradient(135deg,#ffc107,#ff9800);
    color:#111;
    text-decoration:none;
    text-align:center;
    font-size:19px;
    font-weight:700;
    padding:18px;
    border-radius:14px;
    transition:.3s;
    margin-top:10px;
    box-shadow:0 12px 35px rgba(255,193,7,.35);
}

.tour-book-button:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 40px rgba(255,193,7,.45);
}

.tour-book-button::before{
    content:"📲 ";
}

/* Scrollbar */

.tour-modal-content::-webkit-scrollbar{
    width:8px;
}

.tour-modal-content::-webkit-scrollbar-thumb{
    background:#ffc107;
    border-radius:10px;
}

.tour-modal-content::-webkit-scrollbar-track{
    background:#eee;
}

/*=========================
TABLET
=========================*/

@media(max-width:992px){

    .tour-popup-banner{
        height:280px;
    }

    .tour-popup-overlay{
        padding:30px;
    }

    .tour-popup-overlay h2{
        font-size:34px;
    }

    .tour-top-info{
        grid-template-columns:repeat(2,1fr);
    }

    .tour-place-list{
        grid-template-columns:1fr;
    }

}

/*=========================
MOBILE
=========================*/

@media(max-width:768px){

    .tour-popup-banner{
        height:220px;
    }

    .tour-popup-overlay{
        padding:22px;
    }

    .tour-popup-overlay h2{
        font-size:28px;
    }

    .tour-popup-overlay p{
        font-size:14px;
        line-height:1.6;
    }

    .tour-popup-body{
        padding:25px;
    }

    .tour-top-info{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .tour-top-info div{
        padding:14px;
    }

    .tour-top-info h4{
        font-size:14px;
    }

    .tour-top-info span{
        font-size:13px;
    }

    .tour-place-list{
        grid-template-columns:1fr;
        gap:10px;
    }

    .tour-place-list div{
        padding:12px 14px;
        font-size:14px;
    }

    .tour-popup-body h3{
        font-size:22px;
    }

    .tour-book-button{
        font-size:17px;
        padding:16px;
    }

}

/*==================================================
FULL DAY TOUR CARD
==================================================*/

.fulltour-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    transition:.35s;
    display:flex;
    flex-direction:column;
}

.fulltour-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.18);
}

.fulltour-image{
    position:relative;
    height:260px;
    overflow:hidden;
}

.fulltour-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.fulltour-card:hover .fulltour-image img{
    transform:scale(1.08);
}

.tour-badge{
    position:absolute;
    top:18px;
    left:18px;
    background:#ffc107;
    color:#111;
    padding:8px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
}

.fulltour-content{
    padding:30px;
}

.fulltour-content h3{
    font-size:28px;
    color:#0b2238;
    margin-bottom:14px;
}

.fulltour-content p{
    color:#555;
    line-height:1.8;
    margin-bottom:22px;
}

.tour-meta{
    display:flex;
    justify-content:space-between;
    margin-bottom:22px;
    font-size:15px;
    color:#666;
}

.tour-meta span{
    display:flex;
    align-items:center;
    gap:8px;
}

.tour-meta i{
    color:#ffc107;
}

.tour-price{
    background:#f8f9fb;
    border-left:5px solid #ffc107;
    padding:18px;
    border-radius:12px;
    font-size:15px;
    color:#666;
    margin-bottom:25px;
}

.tour-price strong{
    display:block;
    margin-top:6px;
    font-size:30px;
    color:#0b2238;
}

.tour-buttons{
    display:flex;
    gap:15px;
}

.fulltour-view-btn,
.fulltour-book-btn{
    flex:1;
    padding:15px;
    border:none;
    border-radius:12px;
    text-align:center;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
    text-decoration:none;
}

.fulltour-view-btn{
    background:#0b2238;
    color:#fff;
}

.fulltour-view-btn:hover{
    background:#163d63;
}

.fulltour-book-btn{
    background:#ffc107;
    color:#111;
}

.fulltour-book-btn:hover{
    background:#ffb300;
}

/*=========================
MOBILE
=========================*/

@media(max-width:768px){

    .fulltour-content{
        padding:22px;
    }

    .fulltour-content h3{
        font-size:24px;
    }

    .tour-meta{
        flex-direction:column;
        gap:10px;
    }

    .tour-buttons{
        flex-direction:column;
    }

}



/*==================================================
FEATURED FULL DAY TOUR
PART 1
==================================================*/

.featured-fulltour{
    display:grid;
    grid-template-columns:45% 55%;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.12);
    margin:70px 0;
}

.featured-fulltour-image{
    position:relative;
    min-height:650px;
    overflow:hidden;
}

.featured-fulltour-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.8s;
}

.featured-fulltour:hover .featured-fulltour-image img{
    transform:scale(1.08);
}

.featured-badge{
    position:absolute;
    top:25px;
    left:25px;
    background:#ffc107;
    color:#111;
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    box-shadow:0 8px 25px rgba(0,0,0,.15);
}

.featured-fulltour-content{
    padding:50px;
}

.featured-fulltour-content h2{
    font-size:42px;
    color:#0b2238;
    margin-bottom:20px;
    line-height:1.2;
}

.featured-fulltour-content p{
    font-size:17px;
    color:#666;
    line-height:1.9;
    margin-bottom:35px;
}

.featured-highlights{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:40px;
}

.featured-highlights div{
    background:#f8f9fb;
    border-left:5px solid #ffc107;
    padding:18px;
    border-radius:14px;
    font-weight:600;
    transition:.3s;
}

.featured-highlights div:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.featured-highlights i{
    color:#ffc107;
    margin-right:10px;
}

.featured-fulltour-content h3{
    font-size:28px;
    color:#0b2238;
    margin-bottom:20px;
}
/*==================================================
FEATURED FULL DAY TOUR
PART 2
==================================================*/

.featured-places{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:35px;
}

.featured-places span{
    background:#f8f9fb;
    border:1px solid #e7e7e7;
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    color:#444;
    transition:.3s;
}

.featured-places span:hover{
    background:#ffc107;
    color:#111;
    transform:translateY(-3px);
    border-color:#ffc107;
}

.featured-price-box{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:35px;
}

.featured-price-box div{
    background:#f8f9fb;
    border-left:5px solid #ffc107;
    border-radius:14px;
    padding:20px;
    font-size:16px;
    font-weight:600;
    color:#555;
    transition:.3s;
}

.featured-price-box div:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.featured-price-box strong{
    display:block;
    margin-top:8px;
    font-size:28px;
    color:#0b2238;
}

.featured-buttons{
    display:flex;
    gap:18px;
    margin-top:20px;
}

.featured-buttons .tour-view-btn,
.featured-buttons .fulltour-book-btn{
    flex:1;
    padding:16px;
    border:none;
    border-radius:14px;
    font-size:17px;
    font-weight:700;
    cursor:pointer;
    text-align:center;
    text-decoration:none;
    transition:.3s;
}

.featured-buttons .tour-view-btn{
    background:#0b2238;
    color:#fff;
}

.featured-buttons .tour-view-btn:hover{
    background:#163d63;
    transform:translateY(-3px);
}

.featured-buttons .fulltour-book-btn{
    background:#ffc107;
    color:#111;
}

.featured-buttons .fulltour-book-btn:hover{
    background:#ffb300;
    transform:translateY(-3px);
}

/*=========================
TABLET
=========================*/

@media(max-width:992px){

    .featured-fulltour{
        grid-template-columns:1fr;
    }

    .featured-fulltour-image{
        min-height:420px;
    }

    .featured-fulltour-content{
        padding:35px;
    }

}

/*=========================
MOBILE
=========================*/

@media(max-width:768px){

    .featured-fulltour-image{
        min-height:260px;
    }

    .featured-fulltour-content{
        padding:25px;
    }

    .featured-fulltour-content h2{
        font-size:30px;
    }

    .featured-fulltour-content p{
        font-size:15px;
    }

    .featured-highlights{
        grid-template-columns:1fr;
    }

    .featured-price-box{
        grid-template-columns:1fr;
    }

    .featured-buttons{
        flex-direction:column;
    }

    .featured-places span{
        font-size:13px;
        padding:9px 14px;
    }

}

.hero-content h1 span{
    display:inline;
}




.home-gallery .container{
    position: relative;
    z-index: 5;
}

.gallery-footer{
    position: relative;
    z-index: 20;
}

.gallery-btn{
    position: relative;
    z-index: 21;
}

.gallery-footer{
    position: relative;
    z-index: 9999;
}

.gallery-btn{
    position: relative;
    z-index: 9999;
    pointer-events: auto;
}
.home-gallery::before,
.home-gallery::after,
.gallery-slider::before,
.gallery-slider::after{
    pointer-events: none;
}

.header-buttons{

    display:flex;

    align-items:center;

    gap:12px;

}

.call-btn,
.whatsapp-btn,
.book-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    padding:12px 22px;

    border-radius:50px;

    font-size:15px;

    font-weight:600;

    transition:0.35s ease;

}

/* Call Button */

.call-btn{

    color:#ffffff;

    background:#0d6efd;

}

.call-btn:hover{

    background:#0b5ed7;

    color:#ffffff;

    transform:translateY(-2px);

}


/* WhatsApp */

.whatsapp-btn{

    background:#25D366;

    color:#ffffff;

}

.whatsapp-btn:hover{

    background:#1fa851;

    color:#ffffff;

    transform:translateY(-2px);

}


/* Book Now */

.book-btn{

    background:#FFD700;

    color:#222;

    font-weight:700;

}

.book-btn:hover{

    background:#e6c200;

    color:#222;

    transform:translateY(-2px);

}

/* Desktop */

.menu-overlay{
    display:none;
}

.menu-toggle{
    display:none;
}

/*==================================================
                MOBILE MENU
==================================================*/

.mobile-menu{
    position: fixed;
    top: 0;
    right: -320px;      /* Hide off-screen on the right */
    left: auto;
    width: 280px;
    max-width: 85%;
    height: auto;       /* Only as tall as the content */
    max-height: 100vh;  /* Don't exceed screen height */
    overflow-y: auto;

    background: #fff;
    padding: 25px;
    border-radius: 0 0 0 18px;
    box-shadow: -10px 0 30px rgba(0,0,0,.18);

    z-index: 99999;
    transition: right .35s ease;
}

.mobile-menu.active{
    right: 0;
}

.mobile-menu-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.mobile-menu-header span{
    font-size:28px;
    font-weight:700;
}

.close-menu{
    cursor:pointer;
    font-size:28px;
}

.mobile-nav{
    list-style:none;
    padding:0;
    margin:0;
}

.mobile-nav li{
    margin-bottom:18px;
}

.mobile-nav a{
    display:block;
    color:#111;
    font-size:18px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.mobile-nav a:hover{
    color:#f4b400;
    padding-left:8px;
}

.mobile-buttons{
    margin-top:35px;
    padding-top:20px;
    border-top:1px solid #eee;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.mobile-buttons a{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
}

.menu-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.35);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 99998;
}

.menu-overlay.active{
    opacity: 1;
    visibility: visible;
}

/* Desktop */

@media (min-width:992px){

    .mobile-menu,
    .menu-overlay,
    .menu-toggle{
        display:none !important;
    }

}

/* Mobile */

@media (max-width:991px){

    .navbar-custom{
        display:none;
    }

    .menu-toggle{
        display:flex;
        align-items:center;
        justify-content:center;
        width:44px;
        height:44px;
        font-size:28px;
        cursor:pointer;
        z-index:100000;
    }

}
/* ================= POPUP HEADING ================= */

.popup-heading{
    position: absolute;
    bottom: 35px;
    left: 35px;
    right: 35px;
    color: #fff;
}

.popup-heading h2{
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.2;
}

.popup-heading p{
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    max-width: 700px;
    color: rgba(255,255,255,.95);
}

/*=========================
LONG TOUR SECTION
==========================*/

.long-tour-section{

padding:80px 0;

background:#f7f9fc;

}

.long-tour-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:30px;

margin-top:50px;

}

.tour-card{

background:linear-gradient(135deg,#ffffff,#f8fbff);

border-radius:22px;

padding:28px;

border:1px solid rgba(13,110,253,.12);

box-shadow:
0 12px 30px rgba(0,0,0,.08),
0 2px 10px rgba(13,110,253,.08);

transition:.35s;

position:relative;

overflow:hidden;

}

.tour-card:hover{

transform:translateY(-8px);

}

.tour-top{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:20px;

}

.tour-top h3{

font-size:24px;

margin:0;

}

.tour-top span{

background:#0d6efd;

color:#fff;

padding:6px 14px;

border-radius:30px;

font-size:14px;

font-weight:600;

}

.tour-route{

line-height:1.8;

margin-bottom:20px;

color:#666;

}

.tour-card table{

overflow:hidden;

border-radius:12px;

margin:20px 0;

}

.tour-card th{

background:linear-gradient(90deg,#0d6efd,#2d7fff);

color:#fff;

font-weight:600;

}

.tour-card td{

background:#fff;

}

.tour-card tr:nth-child(even) td{

background:#f7f9fc;

}


.tour-note{

margin-top:45px;

padding:20px;

background:#fff8e8;

border-left:5px solid #ff9800;

border-radius:10px;

line-height:1.8;

}

.tour-card::before{

content:"";

position:absolute;

left:0;
top:0;

width:100%;
height:6px;

background:linear-gradient(90deg,#ff9800,#ffd54f);

}
.tour-card:hover{

transform:translateY(-10px);

box-shadow:
0 22px 45px rgba(0,0,0,.16);

}
.tour-card table{

overflow:hidden;

border-radius:12px;

margin:20px 0;

}

.tour-card th{

background:linear-gradient(90deg,#0d6efd,#2d7fff);

color:#fff;

font-weight:600;

}

.tour-card td{

background:#fff;

}

.tour-card tr:nth-child(even) td{

background:#f7f9fc;

}
.tour-btn{

display:flex;

justify-content:center;

align-items:center;

gap:8px;

background:linear-gradient(90deg,#ff9800,#ffb300);

color:#fff;

border-radius:50px;

font-weight:600;

transition:.3s;

}

.tour-btn:hover{

background:linear-gradient(90deg,#ff8f00,#ffa000);

transform:scale(1.03);

}