/* ==========================================
   VGNS TAXI - STYLE.CSS (PART 1)
   ========================================== */

:root{
    --primary:#0F4C81;
    --secondary:#2563EB;
    --gold:#F59E0B;
    --white:#ffffff;
    --light:#F8FAFC;
    --dark:#1E293B;
    --text:#475569;
    --shadow:0 20px 50px rgba(15,76,129,.15);
    --radius:18px;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:var(--light);
    color:var(--dark);
    overflow-x:hidden;
    line-height:1.6;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.container{
    width:min(1180px,92%);
    margin:auto;
}

/* ================= NAVBAR ================= */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    padding:18px 0;
    transition:.35s;
}

.navbar.scrolled{
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(12px);
    box-shadow:0 8px 30px rgba(0,0,0,.08);
}

.navbar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:30px;
    font-weight:700;
    color:white;
}

.navbar.scrolled .logo{
    color:var(--primary);
}

.nav-links{
    list-style:none;
    display:flex;
    gap:32px;
}

.nav-links a{
    color:white;
    font-weight:500;
    transition:.3s;
}

.navbar.scrolled .nav-links a{
    color:var(--dark);
}

.nav-links a:hover{
    color:var(--gold);
}

.call-btn{
    background:var(--secondary);
    color:white;
    padding:12px 26px;
    border-radius:999px;
    font-weight:600;
    transition:.3s;
}

.call-btn:hover{
    transform:translateY(-3px);
    background:#1d4ed8;
}

.menu{
    display:none;
    color:white;
    font-size:28px;
    cursor:pointer;
}

/* ================= HERO ================= */

.hero{
    position:relative;
    min-height:100vh;
    background:
        linear-gradient(rgba(10,20,40,.65),rgba(10,20,40,.65)),
        url("images/hero.jpg") center/cover no-repeat;
    display:flex;
    align-items:center;
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to right,
        rgba(15,76,129,.35),
        rgba(0,0,0,.05));
}

.hero-container{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:60px;
    align-items:center;
}

.rating{
    display:inline-block;
    background:rgba(255,255,255,.18);
    color:white;
    padding:10px 18px;
    border-radius:999px;
    margin-bottom:25px;
    backdrop-filter:blur(10px);
}

.hero-left h1{
    font-size:64px;
    line-height:1.15;
    color:white;
    font-weight:700;
}

.hero-left h1 span{
    color:#FFD166;
}

.hero-left p{
    margin:28px 0;
    color:#f1f5f9;
    font-size:18px;
    max-width:560px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    margin-bottom:45px;
}

.primary-btn,
.secondary-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 34px;
    border-radius:999px;
    font-weight:600;
    transition:.35s;
}

.primary-btn{
    background:var(--gold);
    color:#222;
}

.primary-btn:hover{
    transform:translateY(-4px);
}

.secondary-btn{
    border:2px solid white;
    color:white;
}

.secondary-btn:hover{
    background:white;
    color:var(--primary);
}

.hero-stats{
    display:flex;
    gap:40px;
}

.hero-stats h2{
    color:white;
    font-size:34px;
}

.hero-stats p{
    color:#dbeafe;
    margin-top:5px;
    font-size:15px;
}

/* ================= BOOKING CARD ================= */

.booking-card{
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(12px);
    border-radius:22px;
    padding:35px;
    box-shadow:var(--shadow);
    animation:slideUp .8s ease;
}

.booking-card h2{
    margin-bottom:25px;
    text-align:center;
    color:var(--primary);
}

.trip-tabs{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:10px;
    margin-bottom:25px;
}

.tab{
    border:none;
    background:#eef4ff;
    padding:12px;
    border-radius:12px;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
}

.tab.active,
.tab:hover{
    background:var(--secondary);
    color:white;
}

.input-box{
    margin-bottom:18px;
}

.input-box label{
    display:block;
    margin-bottom:8px;
    font-size:14px;
    font-weight:600;
    color:#334155;
}

.input-box input{
    width:100%;
    height:54px;
    border:1px solid #d6dbe3;
    border-radius:12px;
    padding:0 18px;
    font-size:15px;
    transition:.3s;
}

.input-box input:focus{
    outline:none;
    border-color:var(--secondary);
    box-shadow:0 0 0 4px rgba(37,99,235,.12);
}

.double{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.search-btn{
    width:100%;
    border:none;
    background:var(--secondary);
    color:white;
    padding:16px;
    border-radius:12px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    transition:.35s;
}

.search-btn:hover{
    background:#1d4ed8;
    transform:translateY(-3px);
}

/* ================= SECTION TITLE ================= */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    color:var(--primary);
    margin-bottom:10px;
}

.section-title p{
    color:var(--text);
    max-width:650px;
    margin:auto;
}

/* ================= ANIMATION ================= */

@keyframes slideUp{
    from{
        opacity:0;
        transform:translateY(50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
/* ==========================================
   WHY CHOOSE US
========================================== */

.why-us{
    padding:100px 0;
    background:#fff;
}

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.feature-card{
    background:#fff;
    border-radius:20px;
    padding:35px 30px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.feature-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 45px rgba(15,76,129,.15);
}

.feature-card .icon{
    width:75px;
    height:75px;
    margin:auto;
    border-radius:50%;
    background:#eaf2ff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    color:var(--secondary);
    margin-bottom:25px;
}

.feature-card h3{
    margin-bottom:15px;
    color:var(--primary);
}

.feature-card p{
    color:var(--text);
}

/* ==========================================
   ROUTES
========================================== */

.routes{
    padding:100px 0;
    background:#f8fafc;
}

.route-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(270px,1fr));
    gap:30px;
}

.route-card{
    background:white;
    border-radius:20px;
    padding:35px;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    position:relative;
    overflow:hidden;
}

.route-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:6px;
    height:100%;
    background:var(--secondary);
}

.route-card:hover{
    transform:translateY(-10px);
}

.route-card h3{
    color:var(--primary);
    margin-bottom:15px;
}

.route-card p{
    color:var(--text);
    margin-bottom:20px;
}

.route-card a{
    color:var(--secondary);
    font-weight:600;
}

/* ==========================================
   FLEET
========================================== */

.fleet{
    padding:100px 0;
    background:white;
}

.fleet-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:35px;
}

.fleet-card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
}

.fleet-card:hover{
    transform:translateY(-12px);
}

.fleet-card img{
    height:220px;
    object-fit:cover;
}

.fleet-card h3{
    padding:20px 20px 10px;
    color:var(--primary);
}

.fleet-card p{
    padding:0 20px;
    color:var(--text);
}

.fleet-card a{
    display:inline-block;
    margin:20px;
    background:var(--secondary);
    color:white;
    padding:12px 24px;
    border-radius:30px;
    transition:.3s;
}

.fleet-card a:hover{
    background:var(--primary);
}

/* ==========================================
   HOW IT WORKS
========================================== */

.steps{
    padding:100px 0;
    background:#f8fafc;
}

.steps-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.step-card{
    background:white;
    padding:40px;
    text-align:center;
    border-radius:20px;
    position:relative;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.step-card:hover{
    transform:translateY(-10px);
}

.step-number{
    position:absolute;
    top:20px;
    right:20px;
    width:38px;
    height:38px;
    background:var(--gold);
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

.step-card i{
    font-size:55px;
    color:var(--secondary);
    margin-bottom:20px;
}

.step-card h3{
    color:var(--primary);
    margin-bottom:12px;
}

.step-card p{
    color:var(--text);
}
/* ==========================================
   TESTIMONIALS
========================================== */

.reviews{
    padding:100px 0;
    background:#ffffff;
}

.review-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.review-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
    position:relative;
}

.review-card:hover{
    transform:translateY(-10px);
}

.review-card p{
    color:var(--text);
    margin:20px 0;
    line-height:1.8;
}

.review-card h4{
    color:var(--primary);
}

/* ==========================================
   FAQ
========================================== */

.faq{
    padding:100px 0;
    background:#f8fafc;
}

.faq-item{
    background:white;
    padding:25px 30px;
    border-radius:15px;
    margin-bottom:20px;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
}

.faq-item h3{
    color:var(--primary);
    margin-bottom:10px;
}

.faq-item p{
    color:var(--text);
}

/* ==========================================
   CONTACT
========================================== */

.contact{
    padding:100px 0;
    background:linear-gradient(135deg,#0F4C81,#2563EB);
}

.contact-box{
    text-align:center;
    color:white;
}

.contact-box h2{
    font-size:42px;
    margin-bottom:20px;
}

.contact-box p{
    font-size:18px;
    margin-bottom:35px;
}

.contact-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

/* ==========================================
   FOOTER
========================================== */

footer{
    background:#0B172A;
    color:white;
    padding:70px 0 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;
}

.footer-grid h2,
.footer-grid h3{
    margin-bottom:20px;
}

.footer-grid p,
.footer-grid li{
    color:#cbd5e1;
    margin-bottom:10px;
}

.footer-grid ul{
    list-style:none;
}

.footer-grid a{
    color:#cbd5e1;
    transition:.3s;
}

.footer-grid a:hover{
    color:white;
}

.copyright{
    border-top:1px solid rgba(255,255,255,.1);
    margin-top:40px;
    padding-top:20px;
    text-align:center;
    color:#94a3b8;
}

/* ==========================================
   FLOATING BUTTONS
========================================== */

.floating-call,
.floating-whatsapp{
    position:fixed;
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
    font-size:24px;
    text-decoration:none;
    box-shadow:0 12px 30px rgba(0,0,0,.25);
    z-index:999;
    transition:.3s;
}

.floating-call{
    right:25px;
    bottom:100px;
    background:#2563EB;
}

.floating-whatsapp{
    right:25px;
    bottom:25px;
    background:#22c55e;
}

.floating-call:hover,
.floating-whatsapp:hover{
    transform:scale(1.12);
}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:992px){

.hero-container{
    grid-template-columns:1fr;
    text-align:center;
    padding-top:120px;
}

.hero-left h1{
    font-size:46px;
}

.hero-stats{
    justify-content:center;
    flex-wrap:wrap;
}

.hero-buttons{
    justify-content:center;
}

.nav-links{
    display:none;
}

.menu{
    display:block;
}

.trip-tabs{
    grid-template-columns:repeat(2,1fr);
}

.double{
    grid-template-columns:1fr;
}

.footer-grid{
    grid-template-columns:1fr;
    text-align:center;
}

}
@media (max-width: 768px) {

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        background: #07111f;
        box-shadow: 0 10px 25px rgba(0,0,0,.2);
        z-index: 999;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 12px 10px;
        color: white !important;
    }

}

@media(max-width:576px){

.hero-left h1{
    font-size:34px;
}

.section-title h2{
    font-size:30px;
}

.booking-card{
    padding:25px;
}

.contact-box h2{
    font-size:30px;
}

.primary-btn,
.secondary-btn,
.call-btn,
.search-btn{
    width:100%;
}

.hero-buttons{
    flex-direction:column;
}

.contact-buttons{
    flex-direction:column;
}

.floating-call,
.floating-whatsapp{
    width:55px;
    height:55px;
}

}
/* ================= SCROLL REVEAL ================= */

.hidden{

    opacity:0;
    transform:translateY(40px);
    transition:.7s ease;

}


.show{

    opacity:1;
    transform:translateY(0);

}


/* ================= ACTIVE NAV LINK ================= */

.nav-links a.active{

    color:var(--gold);

    
}
/* ================= PACKAGE DROPDOWN ================= */

.input-box select{

    width:100%;
    height:54px;
    border:1px solid #d6dbe3;
    border-radius:12px;
    padding:0 18px;
    font-size:15px;
    font-family:'Poppins',sans-serif;
    color:#334155;
    background:white;
    cursor:pointer;
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;

    background-image:
    url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24'%3E%3Cpath fill='%23334155' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");

    background-repeat:no-repeat;
    background-position:right 15px center;
    background-size:18px;

}


.input-box select:focus{

    outline:none;
    border-color:var(--secondary);
    box-shadow:0 0 0 4px rgba(37,99,235,.12);

}
.error-msg{
    display:block;
    color:#e53935;
    font-size:13px;
    margin-top:5px;
}

.input-error{
    border:2px solid #e53935 !important;
}
.input-error{
    border:2px solid #ff3b30 !important;
}

.error-msg{
    color:#ff3b30;
    font-size:13px;
    margin-top:5px;
    display:block;
}

/* ==========================================
   VGNS TAXI LOGO
========================================== */

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    width: 150px;
    height: auto;
    display: block;
}

/* ================= DESKTOP LOGO + HERO FIX ================= */

@media (min-width: 769px) {

    .navbar {
        min-height: 85px;
    }

    .navbar .logo {
        display: flex;
        align-items: center;
        height: 70px;
    }

    .navbar .logo img {
        max-height: 150px;
        width: auto;
        display: block;
        object-fit: contain;
    }

    .hero {
        padding-top: 110px;
    }

    .rating {
        position: relative;
        z-index: 2;
        margin-top: 10px;
    }

}
/* ================= SCROLLED NAVBAR ================= */

.navbar.scrolled {
    background: linear-gradient(
        135deg,
        #07111f,
        #0d1b2a
    );

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);

    border-bottom: 1px solid rgba(212, 165, 55, 0.55);
}

/* Logo remains bright on dark navbar */
.navbar.scrolled .logo {
    color: #ffffff;
}

.navbar.scrolled .nav-links a {
    color: #ffffff;
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
    color: #d4a537;
}

/* Call button */
.navbar.scrolled .call-btn {
    background: #d4a537;
    color: #07111f;
}

.navbar.scrolled .call-btn:hover {
    background: #f0c75e;
}
/* ================= MOBILE NAVBAR ================= */


/* ==========================================
   FINAL MOBILE NAVBAR
========================================== */

/* ==========================================
MOBILE NAVBAR
========================================== */

@media (max-width: 768px) {


.navbar {
    padding: 8px 0;
    min-height: 70px;
}

/* Dark navbar after scrolling */
.navbar.scrolled {
    background: linear-gradient(
        135deg,
        #07111f,
        #0d1b2a
    );

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(212, 165, 55, 0.55);
}

.navbar .container {
    height: 54px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Logo */
.logo {
    margin-right: auto;
    flex-shrink: 1;
    min-width: 0;
}

.logo img {
    width: 140px;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Call button */
.call-btn {
    width: auto !important;
    min-width: 0 !important;
    padding: 9px 14px !important;
    font-size: 12px !important;
    line-height: 1;
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;

    background: #2563EB;
    color: #ffffff;
}

.call-btn i {
    font-size: 11px;
    margin-right: 4px;
}

/* Call button after scrolling */
.navbar.scrolled .call-btn {
    background: #d4a537;
    color: #07111f;
}

.navbar.scrolled .call-btn:hover {
    background: #f0c75e;
}

/* Hamburger */
.menu {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    font-size: 20px;
    color: #ffffff;
    flex-shrink: 0;
}

/* Keep hamburger white after scrolling */
.navbar.scrolled .menu {
    color: #ffffff;
}

}

/* ==========================================
SMALL PHONES
========================================== */

@media (max-width: 400px) {


.navbar {
    padding: 7px 0;
}

.navbar .container {
    height: 52px;
    gap: 7px;
}

.logo img {
    width: 115px;
}

.call-btn {
    width: auto !important;
    padding: 8px 11px !important;
    font-size: 10px !important;
}

.call-btn i {
    font-size: 10px;
    margin-right: 3px;
}

.menu {
    width: 32px;
    height: 32px;
    font-size: 19px;
}


}
#searchCabBtn.loading {
    pointer-events: none;
    opacity: 0.85;
}

#searchBtnLoader {
    margin-left: 8px;
}
input[type="date"] {
    height: 48px;
    box-sizing: border-box;
    padding: 0 10px;
    font-size: 16px;
    font-family: inherit;
}
