/* ===================================
   RESET
=================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    color:#333;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

img{
    max-width:100%;
    display:block;
}

/* ===================================
   CONTAINER
=================================== */

.container{
    max-width:1400px;
    margin:auto;
    padding:0 40px;
}

/* ===================================
   HEADER
=================================== */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#081120;
    z-index:9999;
}

.header .container{
    height:110px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* ===================================
   LOGO
=================================== */

.logo img{
    height:110px;
    width:auto;
}

/* ===================================
   NAVIGATION
=================================== */

.navbar{
    margin-left:auto;
}

.navbar > ul{
    display:flex;
    align-items:center;
    gap:40px;
}

.navbar > ul > li{
    position:relative;
}

.navbar a{
    color:#fff;
    font-size:18px;
    font-weight:500;
    transition:.3s;
}

.navbar a:hover{
    color:#c8a45d;
}

/* ===================================
   BOOK BUTTON
=================================== */

.book-btn{
    background:#c8a45d;
    color:#fff !important;
    padding:15px 40px;
    border-radius:50px;
}

.book-btn:hover{
    background:#b79248;
}

/* ===================================
   DROPDOWN
=================================== */

.dropdown{
    position:relative;
}

.dropdown > a{
    position:relative;
}

.dropdown:hover > a{
    color:#c8a45d;
}

.dropdown:hover > a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-12px;
    width:100%;
    height:2px;
    background:#c8a45d;
}

.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;

    min-width:320px;

    background:#081120;

    display:none;

    padding:15px 0;

    box-shadow:0 20px 40px rgba(0,0,0,.35);

    z-index:9999;
}

.dropdown:hover .dropdown-menu{
    display:block;
}

.dropdown-menu li{
    width:100%;
}

.dropdown-menu a{
    display:block;
    padding:14px 25px;
    font-size:17px;
    color:#fff;
}

.dropdown-menu a:hover{
    background:#10203d;
    color:#c8a45d;
}

/* ===================================
   MOBILE MENU BUTTON
=================================== */

.menu-toggle{
    display:none;
    background:none;
    border:none;
    color:#fff;
    font-size:32px;
    cursor:pointer;
}

/* ===================================
   HERO SECTION
=================================== */

.hero{
    margin-top:110px;

    min-height:100vh;

    background:
    linear-gradient(
        rgba(0,0,0,.60),
        rgba(0,0,0,.60)
    ),
    url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?auto=format&fit=crop&w=1920&q=80');

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
}

.hero-container{
    width:100%;
    max-width:1400px;
    margin:auto;

    padding:0 40px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:60px;
}

.hero-left{
    flex:1;
    color:#fff;
}

.hero-left h1{
    font-size:72px;
    line-height:1.05;
    margin-bottom:25px;
}

.hero-left p{
    font-size:24px;
    margin-bottom:30px;
}

.btn-gold{
    display:inline-block;
    background:#c8a45d;
    color:#fff;
    padding:18px 45px;
    border-radius:50px;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

.btn-gold:hover{
    background:#b79248;
}

/* ===================================
   HERO FORM
=================================== */

.hero-form{
    width:480px;

    background:#081120;

    padding:30px;

    border-radius:15px;

    box-shadow:0 20px 50px rgba(0,0,0,.40);
}

.hero-form h3{
    color:#fff;
    text-align:center;
    margin-bottom:20px;
    font-size:22px;
}

.hero-form form{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.hero-form input,
.hero-form select{
    width:100%;
    height:52px;

    border:none;

    border-radius:8px;

    padding:0 15px;

    font-size:15px;
}

.hero-form button{
    height:55px;

    border:none;

    border-radius:8px;

    background:#c8a45d;

    color:#fff;

    font-size:18px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;
}

.hero-form button:hover{
    background:#b79248;
}

/* ===================================
   SECTION
=================================== */

.section{
    padding:100px 0;
}

.section h2,
.section h3{
    font-size:42px;
    margin-bottom:20px;
}

.section p{
    font-size:18px;
    line-height:1.8;
}

/* ===================================
   TABLET
=================================== */

@media(max-width:991px){

    .menu-toggle{
        display:block;
    }

    .navbar{
        display:none;

        position:absolute;

        top:110px;
        left:0;

        width:100%;

        background:#081120;
    }

    .navbar.active{
        display:block;
    }

    .navbar ul{
        flex-direction:column;
        gap:0;
        align-items:flex-start;
    }

    .navbar li{
        width:100%;
    }

    .navbar a{
        display:block;
        width:100%;
        padding:15px 25px;
    }

    .dropdown-menu{
        position:static;
        min-width:100%;
        display:none;
        box-shadow:none;
        padding:0;
    }

    .dropdown:hover .dropdown-menu{
        display:block;
    }

    .hero-container{
        flex-direction:column;
        text-align:center;
        padding:60px 20px;
    }

    .hero-left h1{
        font-size:50px;
    }

    .hero-left p{
        font-size:20px;
    }

    .hero-form{
        width:100%;
        max-width:550px;
    }
}

/* ===================================
   MOBILE
=================================== */

@media(max-width:767px){

    .container{
        padding:0 20px;
    }

    .header .container{
        height:85px;
    }

    .logo img{
        height:70px;
    }

    .navbar{
        top:85px;
    }

    .hero{
        margin-top:85px;
    }

    .hero-left h1{
        font-size:38px;
    }

    .hero-left p{
        font-size:18px;
    }

    .btn-gold{
        padding:15px 30px;
        font-size:16px;
    }

    .hero-form{
        padding:20px;
    }
}
.date-time-row{
    display:flex;
    gap:15px;
}

.date-time-row input{
    flex:1;
}

@media(max-width:768px){

    .date-time-row{
        flex-direction:column;
        gap:15px;
    }

}
/* WHY CHOOSE US */

.why-choose{
    padding:100px 0;
    background:#f8f8f8;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    color:#001433;
    margin-bottom:15px;
}

.section-title p{
    font-size:18px;
    color:#666;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.feature-box{
    background:#fff;
    padding:35px 25px;
    border-radius:15px;
    text-align:center;
    transition:.3s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.feature-box:hover{
    transform:translateY(-8px);
}

.feature-icon{
    font-size:42px;
    margin-bottom:20px;
}

.feature-box h3{
    color:#001433;
    font-size:22px;
    margin-bottom:15px;
}

.feature-box p{
    color:#666;
    line-height:1.7;
    font-size:15px;
}

/* TABLET */

@media(max-width:991px){

    .features-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* MOBILE */

@media(max-width:767px){

    .why-choose{
        padding:70px 0;
    }

    .section-title h2{
        font-size:32px;
    }

    .features-grid{
        grid-template-columns:1fr;
    }

}
/* FLEET SECTION */

.fleet-section{
    padding:100px 0;
    background:#fff;
}

.fleet-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.fleet-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.fleet-card:hover{
    transform:translateY(-10px);
}

.fleet-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.fleet-content{
    padding:25px;
}

.fleet-content h3{
    color:#001433;
    margin-bottom:15px;
}

.fleet-content ul{
    list-style:none;
    padding:0;
    margin-bottom:20px;
}

.fleet-content li{
    margin-bottom:10px;
    color:#555;
}

.btn-gold-small{
    display:inline-block;
    background:#c8a45d;
    color:#fff;
    text-decoration:none;
    padding:12px 25px;
    border-radius:30px;
}

@media(max-width:991px){

    .fleet-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:767px){

    .fleet-grid{
        grid-template-columns:1fr;
    }

}
/* SERVICES SECTION */

.services-section{
    padding:100px 0;
    background:#f8f8f8;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#fff;
    padding:40px 30px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-icon{
    font-size:48px;
    margin-bottom:20px;
}

.service-card h3{
    color:#001433;
    margin-bottom:15px;
    font-size:24px;
}

.service-card p{
    color:#666;
    line-height:1.8;
}

/* Tablet */

@media(max-width:991px){

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* Mobile */

@media(max-width:767px){

    .services-grid{
        grid-template-columns:1fr;
    }

}
/* TOURS SECTION */

.tours-section{
    padding:100px 0;
    background:#ffffff;
}

.tour-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.tour-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.tour-card:hover{
    transform:translateY(-10px);
}

.tour-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.tour-content{
    padding:25px;
}

.tour-content h3{
    margin-bottom:15px;
    color:#001433;
}

.tour-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

/* Responsive */

@media(max-width:991px){

    .tour-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:767px){

    .tour-grid{
        grid-template-columns:1fr;
    }

}
/* TESTIMONIALS */

.testimonial-section{
    background:#081120;
    padding:100px 0;
}

.testimonial-section .section-title h2,
.testimonial-section .section-title p{
    color:#fff;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.testimonial-card{
    background:#fff;
    padding:35px;
    border-radius:15px;
}

.testimonial-card p{
    color:#555;
    line-height:1.8;
    margin-bottom:20px;
}

.testimonial-card h4{
    color:#001433;
}

/* Responsive */

@media(max-width:991px){

    .testimonial-grid{
        grid-template-columns:1fr;
    }

}
/* FAQ SECTION */

.faq-section{
    padding:100px 0;
    background:#f8f8f8;
}

.faq-wrapper{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:#fff;
    margin-bottom:15px;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.faq-question{
    width:100%;
    padding:22px 25px;

    background:#fff;

    border:none;

    text-align:left;

    font-size:18px;

    font-weight:600;

    cursor:pointer;

    color:#001433;
}

.faq-answer{
    display:none;
    padding:0 25px 25px;
}

.faq-answer p{
    color:#666;
    line-height:1.8;
}
/* CTA SECTION */

.cta-section{
    background:#081a33;   /* lighter navy */
    padding:100px 20px;
    text-align:center;
}

.cta-section h2{
    color:#fff;
    font-size:48px;
    margin-bottom:20px;
}

.cta-section p{
    color:#d5d5d5;
    font-size:20px;
    margin-bottom:30px;
}
/* ===================================
   FOOTER
=================================== */

.footer{
    background:#040b15;   /* darker footer */
    padding:80px 0 50px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:50px;
}

.footer-logo{
    height:90px;
    width:auto;
    margin-bottom:20px;
}

.footer-col p{
    color:#c8c8c8;
    line-height:1.8;
}

.footer-col h3{
    margin-bottom:25px;
    color:#fff;
    font-size:22px;
}

.footer-col ul li{
    margin-bottom:12px;
}

.footer-col a{
    color:#c8c8c8;
    transition:.3s;
}

.footer-col a:hover{
    color:#c8a45d;
}

.contact-info li{
    line-height:1.8;
}

.social-icons{
    margin-top:20px;
    display:flex;
    gap:15px;
}

.social-icons a{
    background:#081120;
    padding:10px 15px;
    border-radius:5px;
    color:#fff;
}

.social-icons a:hover{
    background:#c8a45d;
}

.copyright{
    background:#000814;
    padding:20px 0;
    text-align:center;
}
.copyright p{
    color:#b5b5b5;
    font-size:14px;
}

/* FOOTER RESPONSIVE */

@media(max-width:991px){

    .footer-grid{
        grid-template-columns:1fr 1fr;
        gap:40px;
    }

}

@media(max-width:767px){

    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .social-icons{
        justify-content:center;
    }

    .footer-logo{
        margin:auto auto 20px;
    }

}
.footer-social{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.footer-social a{
    width:45px;
    height:45px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid rgba(255,255,255,.15);

    border-radius:50%;

    color:#fff;

    font-size:18px;

    transition:.4s;
}

.footer-social a:hover{
    background:#c8a45d;
    border-color:#c8a45d;
    transform:translateY(-4px);
}
/* Floating WhatsApp */
.floating-whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;

    width:65px;
    height:65px;

    background:#25D366;
    color:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:32px;

    text-decoration:none;

    z-index:9999;

    box-shadow:0 8px 25px rgba(0,0,0,.25);

    transition:.3s;
}

.floating-whatsapp:hover{
    transform:translateY(-5px);
}

/* Floating Call */
.floating-call{
    position:fixed;
    right:25px;
    bottom:105px;

    width:65px;
    height:65px;

    background:#c8a45d;
    color:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;

    text-decoration:none;

    z-index:9999;

    box-shadow:0 8px 25px rgba(0,0,0,.25);

    transition:.3s;
}

.floating-call:hover{
    transform:translateY(-5px);
}
@media(max-width:768px){

    .floating-whatsapp,
    .floating-call{
        width:55px;
        height:55px;
    }

    .floating-whatsapp{
        bottom:20px;
        right:15px;
    }

    .floating-call{
        bottom:85px;
        right:15px;
    }
}
/* ===================================
   QUOTE FORM
=================================== */

.quote-form{
    background:#001133;
    padding:30px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.35);
    max-width:540px;
    width:100%;
}

.quote-form h2{
    color:#ffffff;
    text-align:center;
    margin-bottom:25px;
    font-size:42px;
    font-weight:700;
}

.quote-form form{
    display:flex;
    flex-direction:column;
}

.quote-form input,
.quote-form select,
.quote-form textarea{
    width:100%;
    height:55px;
    padding:0 18px;
    border:none;
    border-radius:10px;
    margin-bottom:12px;
    font-size:16px;
    outline:none;
    background:#ffffff;
    color:#333;
}

.quote-form textarea{
    height:90px;
    padding:15px 18px;
    resize:none;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus{
    box-shadow:0 0 0 3px rgba(210,172,94,0.4);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder{
    color:#777;
}

.quote-form select{
    cursor:pointer;
}

.quote-btn{
    width:100%;
    height:60px;
    border:none;
    border-radius:12px;
    background:#d2ac5e;
    color:#ffffff;
    font-size:22px;
    font-weight:700;
    cursor:pointer;
    transition:all 0.3s ease;
}

.quote-btn:hover{
    background:#c49c4d;
    transform:translateY(-2px);
}

/* Google Places Fix */

.pac-container{
    z-index:99999 !important;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

/* Hero Layout */

.hero-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:50px;
}

.hero-text{
    width:55%;
}

.hero-text h1{
    font-size:72px;
    line-height:1.1;
    color:#fff;
    margin-bottom:20px;
    font-weight:800;
}

.hero-text p{
    font-size:22px;
    color:#fff;
    margin-bottom:30px;
}

.hero-form{
    width:40%;
}

/* Tablet */

@media(max-width:1200px){

    .hero-text h1{
        font-size:60px;
    }

    .quote-form h2{
        font-size:34px;
    }

}

/* Mobile */

@media(max-width:991px){

    .hero-content{
        flex-direction:column;
        text-align:center;
    }

    .hero-text{
        width:100%;
    }

    .hero-form{
        width:100%;
    }

    .hero-text h1{
        font-size:48px;
    }

    .hero-text p{
        font-size:20px;
    }

    .quote-form{
        max-width:100%;
        padding:25px;
    }

    .quote-form h2{
        font-size:30px;
    }

}

/* Small Mobile */

@media(max-width:576px){

    .quote-form{
        padding:20px;
    }

    .quote-form h2{
        font-size:28px;
        margin-bottom:20px;
    }

    .quote-form input,
    .quote-form select{
        height:50px;
        font-size:15px;
    }

    .quote-form textarea{
        height:80px;
        font-size:15px;
    }

    .quote-btn{
        height:55px;
        font-size:18px;
    }

}
.quote-form input,
.quote-form select{
    height:50px;
}

.quote-form textarea{
    height:140px;
}
/* PAGE BANNER */

.page-banner{
    position:relative;

    padding:220px 0 140px;

    background:
    linear-gradient(
        rgba(0,0,0,.65),
        rgba(0,0,0,.65)
    ),
    url('assets/images/about-banner.jpg');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    text-align:center;
    color:#fff;
}

.page-banner h1{
    font-size:64px;
    margin-bottom:20px;
    font-weight:800;
}

.page-banner p{
    font-size:22px;
    max-width:700px;
    margin:auto;
    color:#f1f1f1;
}

/* ABOUT */

.about-section{
padding:100px 0;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.about-image img{
width:100%;
border-radius:20px;
}

.about-content h2{
font-size:48px;
margin-bottom:25px;
}

.about-content p{
font-size:18px;
line-height:1.8;
margin-bottom:15px;
}

/* WHY */

.why-about{
background:#f8f8f8;
padding:100px 0;
text-align:center;
}

.why-about h2{
font-size:48px;
margin-bottom:60px;
}

.why-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.why-box{
background:#fff;
padding:40px;
border-radius:15px;
}

.why-box i{
font-size:45px;
color:#d2ac5e;
margin-bottom:20px;
}

/* MISSION */

.mission-section{
padding:100px 0;
background:#001133;
}

.mission-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.mission-box{
background:#071d49;
padding:50px;
border-radius:15px;
color:#fff;
}

.mission-box h3{
margin-bottom:20px;
font-size:35px;
}

/* STATS */

.stats-section{
padding:100px 0;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
text-align:center;
}

.stat-box h2{
font-size:60px;
color:#d2ac5e;
}

/* CHAUFFEUR */

.chauffeur-section{
padding:100px 0;
background:#f8f8f8;
}

.chauffeur-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.chauffeur-grid img{
width:100%;
border-radius:20px;
}

/* RESPONSIVE */

@media(max-width:991px){

.about-grid,
.mission-grid,
.chauffeur-grid,
.why-grid,
.stats-grid{

grid-template-columns:1fr;

}

.page-banner h1{
font-size:40px;
}

.about-content h2{
font-size:36px;
}

}
.dropdown{
    position:relative;
}

.dropdown-menu{
    display:none;
    position:absolute;
    top:100%;
    left:0;

    min-width:280px;

    background:#081120;

    padding:10px 0;

    z-index:9999;

    box-shadow:0 15px 30px rgba(0,0,0,.35);
}

.dropdown:hover .dropdown-menu{
    display:block;
}

.dropdown-menu li{
    width:100%;
}

.dropdown-menu a{
    display:block;
    padding:14px 25px;
    color:#fff;
}

.dropdown-menu a:hover{
    background:#10203d;
    color:#c8a45d;
}
.values-section{
    background:#001133;
    padding:120px 0;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:#d2ac5e;
    font-weight:600;
    letter-spacing:2px;
}

.section-title h2{
    color:#fff;
    font-size:52px;
    margin:15px 0;
}

.section-title p{
    color:#d8d8d8;
    max-width:700px;
    margin:auto;
    font-size:18px;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.value-box{
    background:#08204f;
    padding:50px 40px;
    border-radius:20px;
    text-align:center;
    transition:.3s;
}

.value-box:hover{
    transform:translateY(-8px);
}

.value-icon{
    width:80px;
    height:80px;
    background:#d2ac5e;
    border-radius:50%;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.value-icon i{
    font-size:32px;
    color:#fff;
}

.value-box h3{
    color:#fff;
    font-size:30px;
    margin-bottom:15px;
}

.value-box p{
    color:#d7d7d7;
    line-height:1.8;
}
.stats-section{
    padding:120px 0;
    background:linear-gradient(
        135deg,
        #f8f4ea,
        #ffffff
    );
}

.section-heading{
    text-align:center;
    margin-bottom:70px;
}

.section-heading span{
    color:#d2ac5e;
    font-size:15px;
    letter-spacing:2px;
    font-weight:700;
}

.section-heading h2{
    color:#001433;
    font-size:52px;
    margin:15px 0;
}

.section-heading p{
    color:#666;
    max-width:700px;
    margin:auto;
    font-size:18px;
}

/* ===================================
   ACHIEVEMENTS / STATS SECTION
=================================== */

.stats-section{
    padding:120px 0;
    background:linear-gradient(
        135deg,
        #f8f4ea,
        #ffffff
    );
}

.section-heading{
    text-align:center;
    margin-bottom:70px;
}

.section-heading span{
    display:inline-block;
    color:#c8a45d;
    font-size:15px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.section-heading h2{
    color:#001433;
    font-size:56px;
    font-weight:800;
    margin-bottom:20px;
}

.section-heading p{
    max-width:750px;
    margin:auto;
    color:#666;
    font-size:18px;
    line-height:1.8;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stat-box{
    background:#ffffff;
    padding:45px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.stat-box:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.stat-icon{
    width:85px;
    height:85px;
    margin:0 auto 25px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    background:#c8a45d;
}

.stat-icon i{
    color:#fff;
    font-size:34px;
}

.stat-box h3{
    color:#c8a45d;
    font-size:58px;
    font-weight:800;
    margin-bottom:12px;
}

.stat-box p{
    color:#001433;
    font-size:20px;
    font-weight:600;
    margin:0;
}

/* Tablet */

@media(max-width:991px){

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .section-heading h2{
        font-size:42px;
    }
}

/* Mobile */

@media(max-width:767px){

    .stats-grid{
        grid-template-columns:1fr;
    }

    .section-heading h2{
        font-size:34px;
    }

    .stat-box h3{
        font-size:48px;
    }
}
.section-heading h2{
    font-size:38px;
}

/* WHY CHOOSE US TITLE FIX */

.why-choose .section-title h2{
    color:#001433 !important;
}

.why-choose .section-title p{
    color:#555 !important;
}

.why-choose .section-title span{
    color:#c8a45d !important;
}
/* ==========================
   FLEET TITLE COLOR FIX
========================== */

.fleet-section .section-title h2,
.fleet-section h2{
    color:#001433 !important;
}

.fleet-section .section-title p,
.fleet-section p{
    color:#555 !important;
}

.fleet-section .section-title span{
    color:#c8a45d !important;
}
/* ==========================
   SERVICES TITLE FIX
========================== */

.services-section .section-title h2,
.services-section h2{
    color:#001433 !important;
}

.services-section .section-title p,
.services-section p{
    color:#555 !important;
}

.services-section .section-title span{
    color:#c8a45d !important;
}
/* ==========================
   TOURS TITLE FIX
========================== */

.tours-section .section-title h2,
.tours-section h2{
    color:#001433 !important;
}

.tours-section .section-title p,
.tours-section p{
    color:#555 !important;
}

.tours-section .section-title span{
    color:#c8a45d !important;
}
/* ==========================
   FAQ SECTION TITLE FIX
========================== */

.faq-section .section-title h2,
.faq-section h2{
    color:#001433 !important;
}

.faq-section .section-title p,
.faq-section p{
    color:#555 !important;
}

.faq-section .section-title span{
    color:#c8a45d !important;
}
/* =========================
   Professional Chauffeurs
========================= */

.about-chauffeur{
    background:#ffffff;
    padding:100px 0;
}

.chauffeur-content{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:60px;
    align-items:center;
}

.section-tag{
    color:#cda85a;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    display:inline-block;
    margin-bottom:20px;
}

.chauffeur-text h2{
    font-size:60px;
    color:#02152f;
    line-height:1.1;
    margin-bottom:25px;
    font-weight:700;
}

.chauffeur-text p{
    font-size:22px;
    line-height:1.8;
    color:#555;
    margin-bottom:50px;
    max-width:700px;
}

.chauffeur-image img{
    width:100%;
    border-radius:20px;
    display:block;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.chauffeur-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat-box{
    text-align:center;
    border-right:1px solid #ddd;
    padding:10px;
}

.stat-box:last-child{
    border-right:none;
}

.stat-box i{
    font-size:38px;
    color:#cda85a;
    margin-bottom:15px;
}

.stat-box h3{
    font-size:42px;
    color:#02152f;
    margin-bottom:10px;
    font-weight:700;
}

.stat-box span{
    font-size:16px;
    color:#444;
    line-height:1.5;
    display:block;
}

/* =========================
   Bottom Highlights
========================= */

.service-highlights{
    background:#02152f;
    padding:40px 0;
}

.highlight-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.highlight-item{
    display:flex;
    gap:20px;
    align-items:flex-start;
}

.highlight-item i{
    font-size:40px;
    color:#cda85a;
    min-width:40px;
}

.highlight-item h4{
    color:#fff;
    font-size:22px;
    margin-bottom:8px;
}

.highlight-item p{
    color:#d5d5d5;
    line-height:1.6;
    font-size:16px;
}

/* =========================
   Responsive
========================= */

@media(max-width:991px){

    .chauffeur-content{
        grid-template-columns:1fr;
    }

    .chauffeur-text h2{
        font-size:42px;
    }

    .chauffeur-stats{
        grid-template-columns:repeat(2,1fr);
    }

    .highlight-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:767px){

    .about-chauffeur{
        padding:70px 0;
    }

    .chauffeur-text h2{
        font-size:34px;
    }

    .chauffeur-text p{
        font-size:18px;
    }

    .chauffeur-stats{
        grid-template-columns:1fr 1fr;
        gap:15px;
    }

    .stat-box{
        border:none;
        background:#f8f8f8;
        border-radius:12px;
        padding:20px;
    }

    .highlight-grid{
        grid-template-columns:1fr;
    }
}