/* ===========================================================
   ONE WITH GOD MOTORS - PRODUCTION CSS
   Version 1.0
   Colors: Green • Black • White
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{
    --green:#087A32;
    --green-light:#10A64B;
    --black:#050505;
    --white:#FFFFFF;
    --gold:#D8B548;
    --gray:#F4F4F4;
    --text:#2A2A2A;
    --shadow:0 12px 30px rgba(0,0,0,.15);
    --radius:18px;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#fff;
    color:var(--text);
    overflow-x:hidden;
    line-height:1.6;
}

/* ================= PRELOADER ================= */

#loader{
    position:fixed;
    inset:0;
    background:#050505;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
    transition:.6s;
}

.loaderBox{
    text-align:center;
    color:#fff;
}

.loaderBox img{
    width:110px;
    height:110px;
    border-radius:50%;
    background:#fff;
    padding:8px;
    margin-bottom:15px;
}

.loaderBox h2{
    color:var(--gold);
    font-size:28px;
}

.loaderBox p{
    color:#ccc;
}

/* ================= HEADER ================= */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:rgba(5,5,5,.95);
    backdrop-filter:blur(10px);
    padding:14px 6%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:9999;
}

.header.sticky{
    box-shadow:var(--shadow);
}

.logoArea{
    display:flex;
    align-items:center;
    gap:12px;
}

.logoArea img{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#fff;
    padding:4px;
}

.logoArea h2{
    color:#fff;
    font-size:18px;
    font-weight:700;
}

.logoArea span{
    color:#D8B548;
    font-size:12px;
}

#navbar{
    display:flex;
    gap:22px;
}

#navbar a{
    color:#fff;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

#navbar a:hover{
    color:var(--gold);
}

.bookNowBtn{
    background:var(--green-light);
    color:#fff;
    padding:10px 22px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
}

.menuBtn{
    display:none;
    color:#fff;
    font-size:28px;
    cursor:pointer;
}

/* ================= HERO ================= */

.hero{
    position:relative;
    height:100vh;
    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.78)),
    url("images/hero.jpg") center center/cover no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:0 25px;
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,.75),rgba(0,0,0,.2));
}

.heroContent{
    position:relative;
    max-width:850px;
    z-index:2;
}

.heroLogo{
    width:120px;
    height:120px;
    border-radius:50%;
    background:#fff;
    padding:6px;
    margin-bottom:20px;
}

.hero h1{
    color:#fff;
    font-size:54px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:18px;
}

.hero p{
    color:#eee;
    font-size:18px;
    margin-bottom:30px;
}

.heroButtons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.primaryBtn,
.secondaryBtn{
    padding:15px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.primaryBtn{
    background:var(--green-light);
    color:#fff;
}

.secondaryBtn{
    background:#fff;
    color:#000;
}

/* ================= FLOATING BUTTONS ================= */

.callButton,
.whatsappButton{
    position:fixed;
    right:20px;
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    font-size:26px;
    box-shadow:var(--shadow);
    z-index:999;
}

.callButton{
    bottom:95px;
    background:#087A32;
}

.whatsappButton{
    bottom:20px;
    background:#25D366;
}

/* ================= GLOBAL SECTIONS ================= */

section{
    padding:90px 7%;
}

.section-title{
    text-align:center;
    margin-bottom:55px;
}

.section-title span{
    color:var(--green-light);
    font-weight:700;
    letter-spacing:2px;
}

.section-title h2{
    font-size:38px;
    margin:12px 0;
    color:#087A32;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
}

/* ================= ABOUT SECTION ================= */

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:var(--shadow);
}

.about-content h3{
    color:#087A32;
    margin-bottom:15px;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:25px;
}

.feature-card{
    background:#fff;
    padding:18px;
    border-radius:16px;
    box-shadow:var(--shadow);
    border-left:5px solid var(--green-light);
}

.feature-card h4{
    margin-bottom:8px;
    color:#087A32;
}
/* ===========================================================
   PART 2 — STATISTICS, FLEET, ROUTES & BOOKING FORM
   Continue after Part 1
   =========================================================== */

/* ================= COMPANY STATISTICS ================= */

.stats-section{
    background:linear-gradient(135deg,#087A32,#0EA64B);
    color:#fff;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    text-align:center;
    padding:70px 7%;
}

.stat-box{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    border-radius:20px;
    padding:30px 20px;
    transition:.3s ease;
}

.stat-box:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,.15);
}

.stat-box h2{
    font-size:38px;
    color:#D8B548;
    margin-bottom:10px;
}

.stat-box p{
    font-size:15px;
    font-weight:500;
}

/* ================= LUXURY FLEET ================= */

.fleet-section{
    background:#F8FBF8;
}

.fleet-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.fleet-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:.35s ease;
}

.fleet-card:hover{
    transform:translateY(-10px);
}

.fleet-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.fleet-card h3{
    color:#087A32;
    padding:18px 20px 8px;
}

.fleet-card p{
    padding:0 20px 20px;
    color:#666;
    font-size:15px;
}

/* ================= ROUTES ================= */

.routes-section{
    background:#fff;
}

.routes-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:20px;
}

.route-card{
    background:#fff;
    border-radius:18px;
    padding:22px;
    border-left:6px solid var(--green-light);
    box-shadow:0 8px 18px rgba(0,0,0,.08);
    transition:.3s ease;
}

.route-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 25px rgba(0,0,0,.12);
}

.route-card h3{
    color:#111;
    margin-bottom:12px;
    font-size:18px;
}

.route-card span{
    color:#087A32;
    font-size:24px;
    font-weight:700;
}

/* ================= BOOKING SECTION ================= */

.booking-section{
    background:#F3FFF7;
}

.booking-container{
    max-width:900px;
    margin:auto;
}

.booking-form{
    background:#fff;
    padding:35px;
    border-radius:24px;
    box-shadow:var(--shadow);
}

.booking-form .input-group{
    display:flex;
    flex-direction:column;
    margin-bottom:20px;
}

.booking-form label{
    font-weight:600;
    color:#087A32;
    margin-bottom:8px;
}

.booking-form input,
.booking-form select{
    padding:16px;
    border:1px solid #D7D7D7;
    border-radius:14px;
    outline:none;
    font-size:15px;
    transition:.3s;
}

.booking-form input:focus,
.booking-form select:focus{
    border-color:#10A64B;
    box-shadow:0 0 0 4px rgba(16,166,75,.15);
}

/* ================= FARE SUMMARY ================= */

.fare-summary{
    margin:25px 0;
    border-radius:20px;
    overflow:hidden;
    background:linear-gradient(135deg,#087A32,#10A64B);
    color:#fff;
}

.fare-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 25px;
    border-bottom:1px solid rgba(255,255,255,.15);
}

.fare-item:last-child{
    border-bottom:none;
}

.fare-item span{
    font-size:15px;
    font-weight:500;
}

.fare-item h3{
    font-size:28px;
    color:#FFD34D;
}

.fare-item.total h2{
    font-size:34px;
    color:#FFFFFF;
    font-weight:800;
}

/* ================= BOOKING BUTTON ================= */

.submit-btn{
    width:100%;
    padding:18px;
    border:none;
    border-radius:50px;
    background:linear-gradient(135deg,#087A32,#10A64B);
    color:#fff;
    font-size:17px;
    font-weight:700;
    cursor:pointer;
    transition:.3s ease;
}

.submit-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(8,122,50,.35);
}

/* ================= BOOKING BENEFITS ================= */

.benefits-section{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:25px;
    background:#fff;
}

.benefit-card{
    padding:28px;
    border-radius:18px;
    background:#087A32;
    color:#fff;
    text-align:center;
    box-shadow:var(--shadow);
}

.benefit-card h3{
    color:#FFD34D;
    margin-bottom:12px;
}

/* ================= RESPONSIVE ================= */

@media (max-width:992px){

    .stats-section{
        grid-template-columns:repeat(2,1fr);
    }

    .about-grid{
        grid-template-columns:1fr;
    }

    .about-features{
        grid-template-columns:1fr;
    }

}

@media (max-width:768px){

    #navbar{
        display:none;
        position:absolute;
        top:85px;
        left:0;
        width:100%;
        background:#050505;
        flex-direction:column;
        padding:20px;
    }

    #navbar.active{
        display:flex;
    }

    .menuBtn{
        display:block;
    }

    .bookNowBtn{
        display:none;
    }

    .hero h1{
        font-size:34px;
    }

    .hero p{
        font-size:16px;
    }

    .stats-section{
        grid-template-columns:1fr;
    }

    .booking-form{
        padding:22px;
    }

    .fare-item{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }

}
/* ===========================================================
   PART 3 — TESTIMONIALS, FAQ, CONTACT, FOOTER & ANIMATIONS
   Continue after Part 2
   =========================================================== */

/* ================= TESTIMONIALS ================= */

.reviews-section{
    background:#F8FBF8;
}

.reviews-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.review-card{
    background:#fff;
    padding:30px;
    border-radius:22px;
    box-shadow:var(--shadow);
    transition:.35s ease;
    border-top:5px solid var(--green-light);
}

.review-card:hover{
    transform:translateY(-8px);
}

.stars{
    color:#FFD34D;
    font-size:22px;
    margin-bottom:15px;
}

.review-card p{
    color:#555;
    line-height:1.8;
    margin-bottom:20px;
}

.review-card h4{
    color:#087A32;
    font-size:17px;
}

.review-card span{
    color:#888;
    font-size:14px;
}

/* ================= FAQ ================= */

.faq-section{
    background:#fff;
}

.faq-container{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:#F8FBF8;
    border-left:5px solid var(--green-light);
    padding:22px;
    border-radius:16px;
    margin-bottom:18px;
}

.faq-item h3{
    color:#087A32;
    margin-bottom:10px;
}

.faq-item p{
    color:#555;
    line-height:1.8;
}

/* ================= CONTACT ================= */

.contact-section{
    background:linear-gradient(135deg,#087A32,#10A64B);
    color:#fff;
}

.contact-section .section-title h2,
.contact-section .section-title p,
.contact-section .section-title span{
    color:#fff;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:25px;
}

.contact-card{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    border-radius:20px;
    padding:25px;
    transition:.3s;
}

.contact-card:hover{
    background:rgba(255,255,255,.15);
}

.contact-card h3{
    color:#FFD34D;
    margin-bottom:15px;
}

.contact-card a,
.contact-card p{
    color:#fff;
    text-decoration:none;
    word-break:break-word;
}

/* ================= CALL TO ACTION ================= */

.cta-section{
    background:#050505;
    color:#fff;
    text-align:center;
}

.cta-section h2{
    font-size:42px;
    color:#FFD34D;
    margin-bottom:20px;
}

.cta-section p{
    max-width:700px;
    margin:0 auto 30px;
    color:#EAEAEA;
}

/* ================= FOOTER ================= */

.footer{
    background:#000;
    color:#fff;
    text-align:center;
    padding:70px 20px 40px;
}

.footer-logo{
    width:90px;
    height:90px;
    border-radius:50%;
    background:#fff;
    padding:5px;
    margin-bottom:20px;
}

.footer h2{
    color:#FFD34D;
    margin-bottom:12px;
}

.footer-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:18px;
    margin:25px 0;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#FFD34D;
}

.footer-contact p{
    margin:6px 0;
    color:#DDD;
}

.copyright{
    margin-top:30px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.12);
    color:#AAA;
    font-size:14px;
}

/* ================= PREMIUM ANIMATIONS ================= */

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(35px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.heroContent,
.about-grid,
.route-card,
.review-card,
.contact-card,
.fleet-card,
.stat-box,
.benefit-card{
    animation:fadeUp .8s ease both;
}

/* Smooth button effects */

.primaryBtn:hover,
.secondaryBtn:hover,
.bookNowBtn:hover,
.submit-btn:hover{
    opacity:.95;
    transform:translateY(-3px);
}

/* Floating buttons pulse */

@keyframes pulse{
    0%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.08);
    }
    100%{
        transform:scale(1);
    }
}

.callButton,
.whatsappButton{
    animation:pulse 2s infinite;
}

/* Scrollbar */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#EAEAEA;
}

::-webkit-scrollbar-thumb{
    background:#087A32;
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#065D26;
}

/* Mobile spacing improvements */

@media (max-width:768px){

    section{
        padding:70px 20px;
    }

    .section-title h2{
        font-size:30px;
    }

    .cta-section h2{
        font-size:30px;
    }

    .contact-grid,
    .reviews-grid,
    .fleet-grid,
    .routes-grid{
        grid-template-columns:1fr;
    }

}