/* ==========================================
   JTS TAXI SERVICE - STYLE.CSS (PART 1)
   Reset + Header + Hero
========================================== */

/* ---------- Reset ---------- */

*{
    margin:0;
    padding:0;

    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:#333;
    background:#ffffff;
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ---------- Header ---------- */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#0A2E5D;
    z-index:1000;
    box-shadow:0 4px 15px rgba(0,0,0,0.15);
}

.nav{
    height:80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    color:#fff;
    font-size:30px;
    font-weight:700;
}

nav ul{
    display:flex;
    list-style:none;
    gap:30px;
}

nav ul li a{
    color:#fff;
    text-decoration:none;
    font-weight:500;
    transition:0.3s;
}

nav ul li a:hover{
    color:#FDB813;
}

.call-btn{
    text-decoration:none;
    background:#FDB813;
    color:#000;
    padding:12px 24px;
    border-radius:30px;
    font-weight:600;
    transition:0.3s;
}

.call-btn:hover{
    background:#ffcb2d;
    transform:translateY(-2px);
}

/* ---------- Hero ---------- */

.hero{
    position:relative;
    height:100vh;
    background:url("images/hero/hero.png") center/cover no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:850px;
    color:#fff;
}

.hero h1{
    font-size:60px;
    font-weight:700;
    margin-bottom:20px;
}

.hero p{
    font-size:22px;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

/* ---------- Hero Buttons ---------- */

.btn,
.btn2{
    text-decoration:none;
    padding:14px 34px;
    border-radius:40px;
    font-weight:600;
    transition:0.3s;
}

.btn{
    background:#FDB813;
    color:#000;
}

.btn:hover{
    background:#ffcb2d;
    transform:translateY(-3px);
}

.btn2{
    background:#ffffff;
    color:#0A2E5D;
}

.btn2:hover{
    background:#f1f1f1;
    transform:translateY(-3px);
}
/* ==========================================
   ABOUT SECTION
========================================== */

.about{
    padding:40px 0;
}

.about h2{
    text-align:center;
    font-size:42px;
    color:#0A2E5D;
    margin-bottom:20px;
}

.about > .container > p{
    text-align:center;
    max-width:800px;
    margin:0 auto 50px;
    color:#666;
}

.about-boxes{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.box{
    background:#fff;
    border-radius:15px;
    padding:30px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.box:hover{
    transform:translateY(-8px);
}

.box i{
    font-size:45px;
    color:#FDB813;
    margin-bottom:15px;
}

.box h3{
    margin-bottom:10px;
    color:#0A2E5D;
}

/* ==========================================
   FLEET
========================================== */

.fleet{
    padding:90px 0;
    background:#f8f9fc;
}

.fleet h2{
    text-align:center;
    font-size:42px;
    color:#0A2E5D;
}

.section-text{
    text-align:center;
    max-width:700px;
    margin:20px auto 50px;
    color:#666;
}

.fleet-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.car-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.10);
    transition:.3s;
}

.car-card:hover{
    transform:translateY(-10px);
}

.car-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.car-card h3{
    padding:20px 20px 10px;
    color:#0A2E5D;
}

.car-card p{
    padding:0 20px 20px;
    color:#666;
    line-height:1.6;
}/* ==========================================
   SERVICES SECTION
========================================== */

.services{
    padding:90px 0;
    background:#ffffff;
}

.services h2{
    text-align:center;
    font-size:42px;
    color:#0A2E5D;
    margin-bottom:20px;
}

.services .section-text{
    text-align:center;
    max-width:700px;
    margin:0 auto 50px;
    color:#666;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.service-card{
    background:#fff;
    padding:35px 25px;
    text-align:center;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-10px);
    background:#0A2E5D;
    color:#fff;
}

.service-card i{
    font-size:45px;
    color:#FDB813;
    margin-bottom:18px;
}

.service-card h3{
    margin-bottom:12px;
}

.service-card p{
    line-height:1.6;
}
/* ==========================================
   WHY CHOOSE US
========================================== */

.why-us{
    padding:90px 0;
    background:#f8f9fc;
}

.why-us h2{
    text-align:center;
    font-size:42px;
    color:#0A2E5D;
    margin-bottom:50px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.why-card{
    background:#fff;
    padding:35px 25px;
    text-align:center;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-10px);
    background:#0A2E5D;
    color:#fff;
}

.why-card i{
    font-size:45px;
    color:#FDB813;
    margin-bottom:20px;
}

.why-card h3{
    margin-bottom:12px;
}

.why-card p{
    color:#666;
    line-height:1.6;
}

.why-card:hover p{
    color:#fff;
}
/* ==========================
   PRICING
========================== */

.pricing{
    padding:90px 0;
    background:#f8fafc;
}

.pricing h2{
    text-align:center;
    font-size:40px;
    color:#0A2E5D;
    margin-bottom:15px;
}

.pricing .section-text{
    text-align:center;
    color:#666;
    margin-bottom:50px;
}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
    margin-bottom:60px;
}

.price-card{
    background:#fff;
    border-radius:18px;
    padding:30px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
    min-height:460px;
}

.price-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.price-card h3{
    color:#0A2E5D;
    margin-bottom:15px;
}

.price{
    font-size:48px;
    font-weight:700;
    color:#FDB813;
    margin:15px 0;
}

.price-card p{
    font-weight:600;
    margin-bottom:15px;
}

.price-card ul{
    padding-left:18px;
    color:#555;
}

.price-card li{
    margin-bottom:10px;
}

.outstation-box{
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.outstation-box h3{
    text-align:center;
    color:#0A2E5D;
    margin-bottom:25px;
}

.outstation-box table{
    width:100%;
    border-collapse:collapse;
    margin-bottom:30px;
}

.outstation-box th,
.outstation-box td{
    border:1px solid #ddd;
    padding:15px;
    text-align:center;
}

.outstation-box th{
    background:#0A2E5D;
    color:#fff;
}

.pricing-note{
    background:#f5f5f5;
    padding:20px;
    border-radius:12px;
}

.pricing-note h4{
    color:#0A2E5D;
    margin-bottom:10px;
}

.pricing-note ul{
    padding-left:18px;
}

.pricing-note li{
    margin-bottom:8px;
}
.price-btn{
    display:block;
    width:100%;
    margin-top:20px;
    text-align:center;
    background:#FDB813;
    color:#0A2E5D;
    padding:12px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
    transition:0.3s;
}

.price-btn:hover{
    background:#0A2E5D;
    color:#fff;
}
/*=========================================
            OUR DRIVERS
=========================================*/

.drivers{
    padding:100px 8%;
    background:#f8fbff;
}

.drivers .section-title{
    text-align:center;
    margin-bottom:60px;
}

.drivers .section-title h2{
    font-size:42px;
    color:#0A2E5D;
    margin-bottom:15px;
    font-weight:700;
}

.drivers .section-title p{
    max-width:750px;
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:17px;
}

.drivers-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.driver-card{
    background:#fff;
    border-radius:18px;
    padding:35px 28px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:0.4s ease;
    position:relative;
    overflow:hidden;
    border-top:5px solid #FDB813;
}

.driver-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 45px rgba(0,0,0,0.15);
}

.driver-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:5px;
    background:#0A2E5D;
    transition:.5s;
}

.driver-card:hover::before{
    left:0;
}

.driver-icon{
    width:90px;
    height:90px;
    background:#0A2E5D;
    color:#FDB813;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0 auto 25px;
    font-size:38px;
}

.driver-card h3{
    color:#0A2E5D;
    font-size:26px;
    margin-bottom:15px;
    font-weight:700;
}

.experience{
    display:inline-block;
    background:#FDB813;
    color:#0A2E5D;
    padding:10px 20px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    margin-bottom:20px;
}

.driver-card p{
    color:#666;
    line-height:1.8;
    font-size:15px;
    margin-bottom:25px;
}

.driver-features{
    list-style:none;
    padding:0;
    margin:0;
    text-align:left;
}

.driver-features li{
    margin:15px 0;
    color:#444;
    font-size:15px;
    display:flex;
    align-items:center;
    gap:10px;
}

.driver-features li i{
    color:#28a745;
    font-size:16px;
}

.driver-card:hover .driver-icon{
    background:#FDB813;
    color:#0A2E5D;
    transition:.4s;
}

@media(max-width:992px){

    .drivers{
        padding:80px 6%;
    }

    .drivers .section-title h2{
        font-size:34px;
    }

}

@media(max-width:768px){

    .drivers{
        padding:70px 5%;
    }

    .drivers-grid{
        grid-template-columns:1fr;
    }

    .driver-card{
        padding:30px 22px;
    }

    .drivers .section-title h2{
        font-size:30px;
    }

    .driver-card h3{
        font-size:23px;
    }

    .driver-icon{
        width:80px;
        height:80px;
        font-size:34px;
    }

}

@media(max-width:480px){

    .drivers .section-title h2{
        font-size:26px;
    }

    .drivers .section-title p{
        font-size:15px;
    }

    .driver-card{
        padding:25px 18px;
    }

    .experience{
        font-size:14px;
        padding:8px 18px;
    }

}
/*=========================================
        POPULAR ROUTES
=========================================*/

.popular-routes{
    padding:100px 8%;
    background:#f8fbff;
}

.popular-routes .container{
    max-width:1300px;
    margin:auto;
}

.section-heading{
    text-align:center;
    margin-bottom:70px;
}

.section-heading span{
    color:#FDB813;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-heading h2{
    font-size:48px;
    color:#0A2E5D;
    margin:15px 0;
    font-weight:800;
}

.section-heading p{
    max-width:750px;
    margin:auto;
    color:#666;
    font-size:18px;
    line-height:1.8;
}

/*=========================================
            ROUTE CARD
=========================================*/

.route-card{

    display:flex;
    align-items:center;
    gap:60px;

    background:#fff;

    border-radius:25px;

    padding:40px;

    margin-bottom:50px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s ease;

}

.route-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.route-card.reverse{

    flex-direction:row-reverse;

}

/*=========================================
              IMAGE
=========================================*/

.route-image{

    flex:1;

}

.route-image img{

    width:100%;

    height:320px;

    object-fit:cover;

    border-radius:20px;

    display:block;

    transition:.4s;

}

.route-card:hover .route-image img{

    transform:scale(1.05);

}

/*=========================================
             CONTENT
=========================================*/

.route-content{

    flex:1;

}

.route-tag{

    display:inline-block;

    background:#FDB813;

    color:#0A2E5D;

    padding:8px 18px;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    margin-bottom:18px;

}

.route-content h2{

    font-size:40px;

    color:#0A2E5D;

    margin-bottom:20px;

    font-weight:800;

}

.route-content p{

    font-size:17px;

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

}

/*=========================================
             LIST
=========================================*/

.route-content ul{

    list-style:none;

    padding:0;

    margin:0 0 30px;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

}

.route-content ul li{

    color:#444;

    font-size:16px;

    font-weight:500;

}

/*=========================================
             BUTTONS
=========================================*/

.route-buttons{

    display:flex;

    gap:15px;

}

.btn-call{

    background:#FDB813;

    color:#0A2E5D;

    padding:14px 30px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.btn-call:hover{

    background:#0A2E5D;

    color:#fff;

}

.btn-whatsapp{

    background:#25D366;

    color:#fff;

    padding:14px 30px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.btn-whatsapp:hover{

    background:#128C7E;

}

/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:992px){

.route-card,
.route-card.reverse{

flex-direction:column;

}

.route-image,
.route-content{

width:100%;

}

.route-content h2{

font-size:32px;

}

.route-image img{

height:260px;

}

}

@media(max-width:768px){

.popular-routes{

padding:70px 5%;

}

.section-heading h2{

font-size:36px;

}

.route-card{

padding:25px;

gap:30px;

}

.route-content ul{

grid-template-columns:1fr;

}

.route-buttons{

flex-direction:column;

}

.btn-call,
.btn-whatsapp{

text-align:center;

}

.route-image img{

height:220px;

}

.route-content h2{

font-size:28px;

}

.section-heading p{

font-size:16px;

}

}
/*=========================================
            TESTIMONIALS
=========================================*/

.testimonials{
    padding:100px 8%;
    background:#ffffff;
}

.testimonials .container{
    max-width:1300px;
    margin:auto;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

/*==============================
      TESTIMONIAL CARD
==============================*/

.testimonial-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s ease;

    border-top:5px solid #FDB813;

}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 45px rgba(0,0,0,.15);

}

/*==============================
            STARS
==============================*/

.stars{

    color:#FDB813;

    font-size:24px;

    margin-bottom:20px;

    letter-spacing:3px;

}

/*==============================
           REVIEW
==============================*/

.testimonial-card p{

    color:#666;

    font-size:17px;

    line-height:1.8;

    margin-bottom:30px;

    font-style:italic;

}

/*==============================
        CUSTOMER INFO
==============================*/

.customer{

    display:flex;

    align-items:center;

    gap:18px;

}

.customer-icon{

    width:60px;

    height:60px;

    background:#0A2E5D;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    font-size:22px;

}

.customer h4{

    margin:0;

    color:#0A2E5D;

    font-size:20px;

    font-weight:700;

}

.customer span{

    color:#888;

    font-size:15px;

}

/*==============================
        RESPONSIVE
==============================*/

@media(max-width:992px){

.testimonial-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.testimonials{

padding:70px 5%;

}

.testimonial-grid{

grid-template-columns:1fr;

}

.testimonial-card{

padding:25px;

}

.stars{

font-size:20px;

}

.testimonial-card p{

font-size:16px;

}

.customer-icon{

width:55px;

height:55px;

font-size:20px;

}

.customer h4{

font-size:18px;

}

}
/*=========================================
            CONTACT SECTION
=========================================*/

.contact-section{
    padding:100px 8%;
    background:#f5f8fc;
}

.contact-section .container{
    max-width:1280px;
    margin:auto;
}

/*=========================================
            HEADING
=========================================*/

.contact-heading{
    text-align:center;
    margin-bottom:70px;
}

.contact-heading span{
    display:inline-block;
    color:#FDB813;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.contact-heading h2{
    font-size:48px;
    font-weight:800;
    color:#0A2E5D;
    margin-bottom:18px;
}

.contact-heading p{
    max-width:700px;
    margin:auto;
    color:#666;
    font-size:18px;
    line-height:1.8;
}

/*=========================================
            GRID
=========================================*/

.contact-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/*=========================================
            CARD
=========================================*/

.contact-card{

    background:#fff;

    border-radius:24px;

    padding:40px 30px;

    text-align:center;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s ease;

    position:relative;

    overflow:hidden;

}

.contact-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:#FDB813;

}

.contact-card:hover{

    transform:translateY(-12px);

    box-shadow:0 22px 55px rgba(0,0,0,.15);

}

/*=========================================
            ICON
=========================================*/

.contact-icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    margin-bottom:25px;

}

.phone{

    background:#EAF4FF;

    color:#0A2E5D;

}

.location{

    background:#FFF7E0;

    color:#FDB813;

}

.whatsapp{

    background:#E9FFF1;

    color:#25D366;

}

/*=========================================
            TEXT
=========================================*/

.contact-card h3{

    font-size:28px;

    color:#0A2E5D;

    margin-bottom:18px;

    font-weight:700;

}

.line{

    width:70px;

    height:4px;

    background:#FDB813;

    margin:18px auto;

    border-radius:50px;

}

.contact-card p{

    color:#666;

    font-size:16px;

    line-height:1.8;

    margin-bottom:25px;

}

.contact-card h4{

    color:#0A2E5D;

    font-size:26px;

    font-weight:800;

    margin-bottom:28px;

}

/*=========================================
            BUTTONS
=========================================*/

.contact-btn,
.map-btn,
.whatsapp-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    width:100%;

    padding:15px;

    border-radius:50px;

    text-decoration:none;

    font-size:16px;

    font-weight:700;

    transition:.3s;

}

.contact-btn{

    background:#0A2E5D;

    color:#fff;

}

.contact-btn:hover{

    background:#FDB813;

    color:#0A2E5D;

}

.map-btn{

    background:#FDB813;

    color:#0A2E5D;

}

.map-btn:hover{

    background:#0A2E5D;

    color:#fff;

}

.whatsapp-btn{

    background:#25D366;

    color:#fff;

}

.whatsapp-btn:hover{

    background:#128C7E;

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:992px){

.contact-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.contact-section{

padding:70px 5%;

}

.contact-grid{

grid-template-columns:1fr;

}

.contact-heading h2{

font-size:36px;

}

.contact-card{

padding:30px 25px;

}

.contact-icon{

width:75px;

height:75px;

font-size:28px;

}

.contact-card h3{

font-size:24px;

}

.contact-card h4{

font-size:22px;

}

}
/*=========================================
            CONTACT CTA
=========================================*/

.contact-cta{

    margin-top:70px;

    background:linear-gradient(135deg,#0A2E5D,#114B94);

    border-radius:30px;

    padding:60px;

    color:#fff;

    display:flex;

    flex-direction:column;

    gap:45px;

    overflow:hidden;

    position:relative;

}

.contact-cta::before{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    background:rgba(255,255,255,.06);

    border-radius:50%;

    top:-120px;

    right:-80px;

}

.contact-cta::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    background:rgba(253,184,19,.15);

    border-radius:50%;

    bottom:-100px;

    left:-60px;

}

/*=========================================
            TOP AREA
=========================================*/

.cta-left{

    display:flex;

    align-items:center;

    gap:30px;

    z-index:2;

}

.cta-icon{

    width:90px;

    height:90px;

    background:#FDB813;

    color:#0A2E5D;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:38px;

    flex-shrink:0;

}

.cta-text h2{

    font-size:46px;

    margin-bottom:12px;

    font-weight:800;

}

.cta-text h2 span{

    color:#FDB813;

}

.cta-text p{

    color:#f1f1f1;

    line-height:1.9;

    font-size:18px;

    max-width:700px;

}

/*=========================================
            SERVICES
=========================================*/

.cta-services{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    z-index:2;

}

.service-item{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:20px;

    padding:25px;

    text-align:center;

    transition:.35s;

}

.service-item:hover{

    transform:translateY(-8px);

    background:rgba(255,255,255,.15);

}

.service-icon{

    width:65px;

    height:65px;

    margin:auto;

    border-radius:50%;

    background:#FDB813;

    color:#0A2E5D;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    margin-bottom:18px;

}

.service-item span{

    font-size:17px;

    font-weight:600;

}

/*=========================================
            BUTTONS
=========================================*/

.cta-buttons{

    display:flex;

    gap:20px;

    z-index:2;

}

.cta-call,
.cta-whatsapp{

    padding:18px 34px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    display:inline-flex;

    align-items:center;

    gap:12px;

    transition:.35s;

}

.cta-call{

    background:#FDB813;

    color:#0A2E5D;

}

.cta-call:hover{

    background:#fff;

    transform:translateY(-3px);

}

.cta-whatsapp{

    background:#25D366;

    color:#fff;

}

.cta-whatsapp:hover{

    background:#128C7E;

    transform:translateY(-3px);

}

/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:992px){

.cta-left{

flex-direction:column;

text-align:center;

}

.cta-services{

grid-template-columns:repeat(2,1fr);

}

.cta-buttons{

justify-content:center;

}

}

@media(max-width:768px){

.contact-cta{

padding:35px 25px;

}

.cta-text h2{

font-size:34px;

}

.cta-services{

grid-template-columns:1fr;

}

.cta-buttons{

flex-direction:column;

}

.cta-call,
.cta-whatsapp{

justify-content:center;

width:100%;

}

.cta-icon{

width:75px;

height:75px;

font-size:30px;

}

}/*=========================================
        CONTACT FEATURES
=========================================*/

.contact-features{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-top:60px;

}

.feature-box{

    background:#fff;

    border-radius:22px;

    padding:30px 25px;

    display:flex;

    align-items:center;

    gap:18px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s ease;

    border:1px solid #eef2f7;

}

.feature-box:hover{

    transform:translateY(-8px);

    box-shadow:0 22px 50px rgba(0,0,0,.15);

    border-color:#FDB813;

}

.feature-box i{

    width:65px;

    height:65px;

    border-radius:50%;

    background:#0A2E5D;

    color:#FDB813;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:26px;

    flex-shrink:0;

    transition:.3s;

}

.feature-box:hover i{

    background:#FDB813;

    color:#0A2E5D;

    transform:rotate(10deg);

}

.feature-box h4{

    color:#0A2E5D;

    font-size:20px;

    margin-bottom:8px;

    font-weight:700;

}

.feature-box p{

    color:#666;

    font-size:15px;

    line-height:1.6;

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:1100px){

.contact-features{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.contact-features{

grid-template-columns:1fr;

gap:20px;

margin-top:40px;

}

.feature-box{

padding:22px;

}

.feature-box i{

width:55px;

height:55px;

font-size:22px;

}

.feature-box h4{

font-size:18px;

}

.feature-box p{

font-size:14px;

}

}/*=========================================
        CONTACT ANIMATIONS & POLISH
=========================================*/

/* Smooth Scrolling */

html{
    scroll-behavior:smooth;
}

/* Smooth Transitions */

.contact-card,
.feature-box,
.service-item,
.cta-call,
.cta-whatsapp,
.contact-btn,
.map-btn,
.whatsapp-btn{
    transition:all .35s ease;
}

/* Icon Animation */

.contact-card:hover .contact-icon{
    transform:translateY(-8px) scale(1.08);
}

.service-item:hover .service-icon{
    transform:rotate(-8deg) scale(1.1);
}

/* Button Hover */

.contact-btn:hover,
.map-btn:hover,
.whatsapp-btn:hover,
.cta-call:hover,
.cta-whatsapp:hover{

    box-shadow:0 15px 30px rgba(0,0,0,.18);

}

/* Card Shine Effect */

.contact-card{

    position:relative;

    overflow:hidden;

}

.contact-card::after{

    content:"";

    position:absolute;

    top:-120%;

    left:-40%;

    width:60%;

    height:250%;

    background:rgba(255,255,255,.25);

    transform:rotate(25deg);

    transition:.7s;

}

.contact-card:hover::after{

    left:130%;

}

/* Feature Card */

.feature-box{

    cursor:default;

}

.feature-box:hover{

    transform:translateY(-8px);

}

/* CTA Card */

.contact-cta{

    animation:fadeUp .8s ease;

}

/* Fade Animation */

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* Floating Animation */

@keyframes floating{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-8px);

    }

    100%{

        transform:translateY(0);

    }

}

.cta-icon{

    animation:floating 3s ease-in-out infinite;

}

/*=========================================
        EXTRA RESPONSIVE
=========================================*/

@media(max-width:576px){

.contact-heading h2{

font-size:30px;

}

.contact-heading p{

font-size:15px;

}

.contact-card{

padding:25px 20px;

}

.contact-icon{

width:65px;

height:65px;

font-size:24px;

}

.contact-card h3{

font-size:22px;

}

.contact-card h4{

font-size:20px;

}

.line{

width:55px;

}

.cta-text h2{

font-size:28px;

}

.cta-text p{

font-size:15px;

}

.service-item{

padding:18px;

}

.feature-box{

flex-direction:column;

text-align:center;

gap:15px;

}

.feature-box i{

margin:auto;

}

}

/*=========================================
        SELECTION COLOR
=========================================*/

::selection{

background:#FDB813;

color:#0A2E5D;

}
/* ================= FOOTER ================= */

footer{
    background:#0f2f63;
    color:#fff;
    padding:60px 0 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
}

.footer-box h3{
    margin-bottom:18px;
    font-size:24px;
    color:#FFC107;
}

.footer-box p{
    color:#ddd;
    line-height:1.8;
    margin-bottom:12px;
}

.footer-box ul{
    list-style:none;
    padding:0;
}

.footer-box ul li{
    margin:12px 0;
}

.footer-box ul li a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-box ul li a:hover{
    color:#FFC107;
    padding-left:5px;
}

.footer-box p a{
    color:#fff;
    text-decoration:none;
}

.footer-box i{
    color:#FFC107;
    margin-right:10px;
}

.copyright{
    text-align:center;
    margin-top:40px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.15);
    color:#ddd;
    font-size:15px;
}
/* Sticky Header */

header.sticky{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    background:#111;
    z-index:1000;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
}

/* Back To Top Button */

#topBtn{
    position:fixed;
    right:25px;
    bottom:25px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#f4b400;
    color:#fff;
    font-size:22px;
    cursor:pointer;
    display:none;
    z-index:999;
    transition:.3s;
}

#topBtn:hover{
    background:#222;
}
.floating-whatsapp{
    position:fixed;
    bottom:90px;
    right:25px;
    width:60px;
    height:60px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:32px;
    text-decoration:none;
    box-shadow:0 8px 20px rgba(0,0,0,.3);
    z-index:999;
    transition:.3s;
}

.floating-whatsapp:hover{
    transform:scale(1.1);
}
@media (max-width:768px){

header{
    padding:6px 0;
}

.hero{
    height:62vh;
    padding:0 18px;
}
}

.hero h1{
    font-size:30px;
    line-height:1.15;
    margin-bottom:10px;
}

.hero p{
    font-size:14px;
    line-height:1.5;
    margin-bottom:18px;
}


section{
    padding:50px 0;
}

.services{
    padding:35px 12px;
}

.services-grid{
    grid-template-columns:1fr;
    gap:10px;
}

.service-card{
    padding:14px;
    border-radius:12px;
}

.service-card i{
    font-size:26px;
    margin-bottom:6px;
}

.service-card h3{
    font-size:17px;
    margin-bottom:5px;
}

.service-card p{
    font-size:13px;
    line-height:1.4;
}

.fleet-grid,
.about-boxes,
.why-grid,
.pricing-grid,
.drivers-grid,
.testimonial-grid,
.contact-grid,
.contact-features{
    grid-template-columns:1fr;
    gap:18px;
}

.footer-grid{
    grid-template-columns:1fr;
}


/*==========================
      MOBILE MENU
===========================*/

.menu-toggle{
    display:none;
    font-size:32px;
    color:#fff;
    cursor:pointer;
}

@media(max-width:768px){

.menu-toggle{
    display:block;
}

.nav{
    flex-direction:row;
    justify-content:space-between;
}

.call-btn{
    display:none;
}

nav{

    position:absolute;

    top:80px;

    left:0;

    width:100%;

    background:#0A2E5D;

    display:none;

}

nav.active{
    display:block;
}

nav ul{

    flex-direction:column;

    gap:0;

}

nav ul li{

    border-top:1px solid rgba(255,255,255,.1);

}

nav ul li a{

    display:block;

    padding:16px;

}

}
/* ===== HERO MOBILE ===== */

@media (max-width:768px){

.hero{
    height:62vh;
    padding:0 18px;
    background-position:center;
}

.hero-content{
    max-width:100%;
}

.hero h1{
    font-size:30px;
    line-height:1.2;
    margin-bottom:12px;
}

.hero p{
    font-size:15px;
    line-height:1.6;
    margin-bottom:20px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    flex-direction:row;
    flex-wrap:wrap;
    gap:12px;
}

.btn,
.btn2{
    width:145px;
    padding:12px 16px;
    font-size:14px;
}
}

.btn,
.btn2{
    width:210px;
    padding:12px 20px;
    font-size:15px;
}

