@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

/* ============================================================
   FLUID TYPOGRAPHY — Root font-size scales with viewport
   All rem values throughout the project automatically respond.

   Scale breakdown:
     ≤ 960px  → 13px  (phones & small tablets)
     1280px   → 14px  (laptops)
     1440px   → 14.5px (small desktop)
     1920px   → 16px  (large desktop / max)
   ============================================================ */
html {
    /* Fallback for browsers that don't support clamp() */
    font-size: 14px;
    /* Fluid: grows slowly — 16px only on 1920px+ screens */
    font-size: clamp(13px, calc(10px + 0.3125vw), 16px);
}

/* Large displays: restore full 16px */
@media (min-width: 1920px) {
    html {
        font-size: 16px;
    }
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    padding-top: 65px !important;
    /* space for fixed navbar */
}

.text-orange {
    color: #f37021 !important;
}

.bg-orange {
    background-color: #f37021 !important;
}

.btn-orange {
    background-color: #f37021;
    color: #fff;
    border: none;
    font-weight: 600;
}

.btn-orange:hover {
    background-color: #e05e11;
    color: #fff;
}

/* ============================================================
   PREMIUM NAVBAR — Fixed with smooth scroll animation
   ============================================================ */

/* Orange top accent bar */
.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f37021 0%, #ffb700 50%, #f37021 100%);
    background-size: 200% 100%;
    animation: navbarAccentShift 4s ease infinite;
}

@keyframes navbarAccentShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1050;
    padding: 4px 0;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(243, 112, 33, 0.08);
}

/* Logo */
.navbar-brand {
    padding: 0;
}

.navbar-brand img {
    max-height: 58px;
    max-width: 240px;
    object-fit: contain;
}

/* Force vertical centering of all navbar children */
.navbar>.container-fluid {
    align-items: center;
}

/* Nav links — animated underline style */
.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-link {
    color: #1c2331 !important;
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.5px;
    padding: 6px 14px !important;
    /* equal top & bottom */
    white-space: nowrap;
    position: relative;
    line-height: 1;
    display: flex;
    align-items: center;
    transition: color 0.25s ease;
}

.nav-link:hover {
    color: #f37021 !important;
}

/* Dropdown toggle arrow */
.nav-link .fa-chevron-down {
    transition: transform 0.25s ease;
}

.mega-dropdown.show .nav-link .fa-chevron-down,
.nav-item.dropdown.show .nav-link .fa-chevron-down {
    transform: rotate(180deg);
}

/* Bootstrap dropdown menu polish & hover bridge */
@media (min-width: 992px) {
    .nav-item.dropdown:hover>.dropdown-menu {
        display: block !important;
        animation: dropFadeIn 0.2s ease;
    }

    .nav-item.dropdown>.dropdown-menu:hover {
        display: block !important;
    }
}

.dropdown-menu {
    border: none !important;
    border-top: 3px solid #e8a020 !important;
    border-radius: 0 0 14px 14px !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.13), 0 2px 8px rgba(232, 160, 32, 0.08) !important;
    padding: 8px 0 12px !important;
    margin-top: 0 !important;
    min-width: 240px !important;
    background: linear-gradient(135deg, #ffffff 0%, #fffbf5 100%) !important;
    z-index: 99999 !important;
    position: absolute !important;
}

/* Hover bridge to bridge gap between navbar link and dropdown menu */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

@keyframes dropFadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    font-size: 0.9375rem !important;
    /* 15px */
    font-weight: 500 !important;
    color: #2d2d2d !important;
    padding: 10px 22px !important;
    transition: background 0.18s, color 0.18s, padding-left 0.18s !important;
    border-left: 3px solid transparent !important;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: #fff8ee !important;
    color: #e8a020 !important;
    border-left-color: #e8a020 !important;
    padding-left: 28px !important;
}

/* ---- Phone CTA Button ---- */
.header-contact {
    position: relative;
    background: linear-gradient(135deg, #1c2331 0%, #2d3748 100%);
    color: #fff;
    border-radius: 50px;
    padding: 10px 22px 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(28, 35, 49, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}

.header-contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f37021, #ffb700);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50px;
}

.header-contact:hover::before {
    opacity: 1;
}

.header-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(243, 112, 33, 0.4);
    text-decoration: none;
    color: #fff;
}

/* Icon ring pulse */
.header-contact-icon-wrap {
    position: relative;
    z-index: 1;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(243, 112, 33, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.header-contact-icon-wrap::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(243, 112, 33, 0.5);
    animation: phonePulse 2s ease-out infinite;
}

@keyframes phonePulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    70% {
        transform: scale(1.4);
        opacity: 0;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.header-contact i {
    font-size: 1rem;
    color: #f37021;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.header-contact:hover i {
    color: #fff;
}

.header-contact-text {
    position: relative;
    z-index: 1;
    line-height: 1.2;
    text-align: left;
}

.header-contact h5 {
    margin: 0;
    font-weight: 700;
    font-size: 0.875rem;
    color: #fff;
    line-height: 1.2;
}

.header-contact small {
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.header-contact:hover h5,
.header-contact:hover small {
    color: #fff;
}

/* Navbar toggler custom */
.navbar-toggler {
    border: 2px solid #f37021;
    border-radius: 8px;
    padding: 6px 10px;
    transition: background 0.2s ease;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23f37021' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
        margin-top: 12px;
        padding: 12px 16px 16px;
        border-top: 3px solid #f37021;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link {
        padding: 10px 8px !important;
        border-bottom: 1px solid #f5f5f5;
    }

    .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .header-contact {
        margin-top: 10px;
        justify-content: center;
        width: 100%;
    }
}

/* ---- Fix: Taxi Services mega-dropdown vertical centering ---- */
/* The inline style adds padding-bottom:14px to .mega-dropdown as a hover bridge.
   We neutralise that here and use a ::before on .mega-menu instead. */
@media (min-width: 992px) {
    .mega-dropdown {
        padding-bottom: 0 !important;
        /* remove height imbalance */
        align-self: center;
    }

    /* Invisible hover bridge — fills the gap between nav link & mega panel */
    .mega-menu::before {
        content: '';
        position: absolute;
        top: -10px;
        left: 0;
        right: 0;
        height: 10px;
    }

    /* Compensate: panel now sits flush with minimal top gap */
    .mega-menu {
        margin-top: 0 !important;
        padding-top: 8px !important;
    }
}

/* ============================================================
   HERO SECTION — Full Video Background
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    background-color: #0d1322;
    padding: 0;
}

/* Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
    pointer-events: none;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(10, 14, 30, 0.88) 0%,
            rgba(10, 14, 30, 0.78) 40%,
            rgba(10, 14, 30, 0.40) 70%,
            rgba(10, 14, 30, 0.15) 100%);
    z-index: 1;
}

/* ---- Premium Text Wrap (no box) ---- */
.hero-text-wrap {
    position: relative;
    padding: 40px 40px 40px 0;
    /* Soft dark radial behind text only — no visible borders */
    background: radial-gradient(ellipse 90% 100% at 0% 50%,
            rgba(4, 6, 18, 0.78) 0%,
            rgba(4, 6, 18, 0.55) 55%,
            transparent 100%);
    animation: panelReveal 0.8s ease both;
}

@keyframes panelReveal {
    from {
        opacity: 0;
        transform: translateX(-14px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Gold left rule — thin decorative line, not a border */
.hero-text-wrap::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 10%;
    height: 80%;
    width: 3px;
    background: linear-gradient(to bottom, transparent, #ffb700 30%, #ff7a00 70%, transparent);
    border-radius: 2px;
    opacity: 0.7;
}

/* ---- Mini Trust Row ---- */
.hero-mini-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 183, 0, 0.15);
    animation: heroSubFade 1s ease 0.5s both;
}

.hero-mini-trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.3px;
}

.hero-mini-trust span i {
    color: #ffb700;
    font-size: 0.6875rem;
}


/* Soft fade at the very bottom for section blending */
.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(249, 250, 251, 0.15));
    z-index: 2;
    pointer-events: none;
}

/* Hero Content z-index above overlay */
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

/* ---- Badge ---- */
.badge-hero {
    background: #f37021;
    color: #fff;
    padding: 7px 16px;
    font-weight: 700;
    font-size: 0.6875rem;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
    display: inline-block;
    border-radius: 4px;
    text-transform: uppercase;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffb700;
    display: inline-block;
    animation: dotPulse 1.8s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.4);
    }
}

@keyframes heroBadgeFade {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- Eyebrow ---- */
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #ffb700;
    margin-bottom: 14px;
    animation: heroBadgeFade 0.8s ease both;
}

.eyebrow-line {
    flex: 1;
    max-width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffb700);
    display: inline-block;
}

.eyebrow-line:last-child {
    background: linear-gradient(90deg, #ffb700, transparent);
}

/* ---- Title ---- */
.hero-title {
    font-weight: 700;
    /* Fluid hero title: 28px on phone → 40px on laptop → 52px on large desktop */
    font-size: clamp(1.75rem, 2rem + 2.5vw, 3.25rem);
    line-height: 1.15;
    margin-bottom: 14px;
    color: #fff;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.text-orange {
    color: #f37021;
}

@keyframes heroTitleFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title-highlight {
    background: linear-gradient(90deg, #ffb700 0%, #ff7a00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
    font-weight: 700;
}

.hero-title-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ffb700, transparent);
    border-radius: 2px;
    opacity: 0.6;
}

/* ---- Subtitle ---- */
.hero-subtitle {
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.85);
}

@keyframes heroSubFade {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- Service Badge Ticker ---- */
.hero-services-ticker {
    width: 100%;
    overflow: hidden;
    margin-bottom: 32px;
    animation: heroSubFade 1s ease 0.45s both;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.ticker-track {
    display: flex;
    gap: 10px;
    width: max-content;
    animation: tickerScroll 22s linear infinite;
}

.ticker-track:hover {
    animation-play-state: paused;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.svc-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 183, 0, 0.35);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 50px;
    white-space: nowrap;
    backdrop-filter: blur(8px);
    transition: background 0.25s, border-color 0.25s, transform 0.2s;
    cursor: default;
}

.svc-badge i {
    color: #ffb700;
    font-size: 0.6875rem;
}

.svc-badge:hover {
    background: rgba(255, 183, 0, 0.18);
    border-color: rgba(255, 183, 0, 0.6);
    transform: translateY(-2px);
}


/* ---- Feature Icons ---- */
.hero-features {
    display: flex;
    gap: 24px;
    margin-bottom: 38px;
    flex-wrap: wrap;
    animation: heroSubFade 1s ease 0.6s both;
}

.hf-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hf-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #f37021;
    background: rgba(243, 112, 33, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f37021;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.hf-text h6 {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.hf-text small {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* ---- CTA Buttons ---- */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    animation: heroSubFade 1s ease 0.75s both;
}

.hero-buttons .btn {
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    border: none;
    transition: transform 0.25s, box-shadow 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #20bd5a;
    color: #fff;
}

.btn-call {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.7) !important;
    color: #fff;
}

.btn-call:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff !important;
    color: #fff;
}

/* Remove old hero car image */
.hero-car {
    display: none;
}


.trust-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: 3;
}

.trust-badge img {
    width: 140px;
}

/* ---- Google Places Autocomplete Fix ---- */
/* Ensures dropdown renders on top & arrow keys work in form inputs */
.pac-container {
    z-index: 99999 !important;
    pointer-events: auto !important;
}

.pac-item {
    cursor: pointer;
    font-size: 0.8125rem;
    padding: 6px 12px;
}

.pac-item:hover,
.pac-item-selected {
    background: #fff8f2;
}

/* Quick Booking */

.quick-booking-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 3;
    color: #333;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    overflow: visible;
    /* allow PAC dropdown to extend beyond card edges */
}

.quick-booking-card h4 {
    font-weight: 700;
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 20px;
}

.quick-booking-card h4 span {
    color: #f37021;
}

/* Modern Trip Type Tab Bar for Desktop */
.quick-booking-card .form-group.d-flex {
    display: flex !important;
    background: #f1f5f9 !important;
    border-radius: 30px !important;
    padding: 5px !important;
    margin-bottom: 22px !important;
    gap: 4px !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05) !important;
}

.quick-booking-card .custom-control-inline {
    flex: 1 !important;
    margin-bottom: -4px !important;
    padding: 0 !important;
    position: relative !important;
    display: flex !important;
}

.quick-booking-card .custom-control-input {
    position: absolute !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
    clip: rect(0, 0, 0, 0) !important;
}

.quick-booking-card .custom-control-label {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    padding: 10px 12px !important;
    margin: 0 !important;
    border-radius: 25px !important;
    font-size: 0.8125rem !important;
    font-weight: 700 !important;
    color: #475569 !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
    letter-spacing: 0.4px !important;
    white-space: nowrap !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    user-select: none !important;
}

.quick-booking-card .custom-control-label::before,
.quick-booking-card .custom-control-label::after {
    display: none !important;
}

.quick-booking-card .custom-control-label:hover {
    color: #1e293b !important;
    background: rgba(255, 255, 255, 0.7) !important;
}

.quick-booking-card .custom-control-input:checked+.custom-control-label {
    background: linear-gradient(135deg, #f37021 0%, #ff8c42 100%) !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    box-shadow: 0 4px 14px rgba(243, 112, 33, 0.35) !important;
    transform: translateY(-1px) !important;
}

/* Laptop & Compact Desktop Optimizations (≤ 1366px / 1280px Viewports) */
@media (min-width: 768px) {
    .quick-booking-card {
        padding: 20px 22px !important;
    }

    .quick-booking-card h4 {
        font-size: 1.3rem !important;
        margin-bottom: 14px !important;
    }

    .quick-booking-card .form-group.d-flex {
        margin-bottom: 14px !important;
        padding: 4px !important;
    }

    .quick-booking-card .custom-control-label {
        padding: 8px 8px !important;
        font-size: 0.78rem !important;
    }

    .quick-booking-card .form-group {
        margin-bottom: 12px !important;
    }

    .quick-booking-card .form-group label {
        font-size: 0.75rem !important;
        margin-bottom: 4px !important;
    }

    .quick-booking-card .form-control {
        height: 42px !important;
        padding: 8px 12px 8px 40px !important;
        font-size: 0.875rem !important;
    }

    .quick-booking-card button[type="submit"],
    .quick-booking-card .qb-submit-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: auto !important;
        min-width: 220px !important;
        max-width: 280px !important;
        height: 48px !important;
        padding: 11px 28px !important;
        margin: 16px auto 0 !important;
        font-size: 0.9375rem !important;
        font-weight: 800 !important;
        border-radius: 30px !important;
        background: linear-gradient(135deg, #f37021 0%, #ff8c42 100%) !important;
        color: #ffffff !important;
        border: none !important;
        box-shadow: 0 4px 16px rgba(243, 112, 33, 0.35) !important;
        transition: all 0.25s ease !important;
    }

    .quick-booking-card button[type="submit"]:hover,
    .quick-booking-card .qb-submit-btn:hover {
        transform: translateY(-2px) scale(1.02) !important;
        box-shadow: 0 8px 22px rgba(243, 112, 33, 0.5) !important;
        background: linear-gradient(135deg, #e05e11 0%, #f37021 100%) !important;
    }

    /* Clean Date & Time Grid: In One-Way, Date & Time are 50/50 on 1 row. In Round-Trip, Dates are 50/50 on Row 1, Time is 100% on Row 2 */
    .form-group-one .row {
        display: flex !important;
        flex-wrap: wrap !important;
        margin-left: -5px !important;
        margin-right: -5px !important;
    }

    .form-group-one .row>[class*="col-"] {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }

    .form-group-one .row>div {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        width: 50% !important;
    }

    .form-group-one .row>div.dropLocationid:not([style*="display: none"]):not([style*="display:none"])~.first_time_dropdown {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        margin-top: 2px !important;
    }
}

.form-group label {
    font-size: 0.8125rem;
    color: #111111;
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px 15px;
    font-size: 0.95rem;
    color: #111111;
    font-weight: 600;
    height: 44px;
}

/* Input Group Icon Alignment & Padding Fix */
.qb-input-group {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
}

.qb-input-group i {
    position: absolute !important;
    left: 14px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 5 !important;
    pointer-events: none !important;
    font-size: 0.95rem !important;
    color: #f37021 !important;
}

.qb-input-group .form-control,
.qb-input-group input,
.qb-input-group select {
    padding-left: 38px !important;
}

.form-control::placeholder {
    color: #444444;
    opacity: 1;
}

.form-control::-webkit-input-placeholder {
    color: #444444;
}

.form-control:focus {
    box-shadow: none;
    border-color: #f37021;
    color: #111111;
}

.qb-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.6875rem;
    color: #777;
    font-weight: 600;
    margin-top: 15px;
}

.qb-footer span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.qb-footer span i {
    color: #f37021;
}

/* Fix Radio Button Vertical Alignment */
.custom-control-label::before,
.custom-control-label::after {
    top: 50% !important;
    transform: translateY(-50%) !important;
}

/* Sections Common */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-weight: 700;
    font-size: 1.75rem;
    color: #1c2331;
    display: inline-block;
    position: relative;
}

.section-title h2::before,
.section-title h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 2px;
    background: #e0e0e0;
}

.section-title h2::before {
    left: -70px;
}

.section-title h2::after {
    right: -70px;
}

.section-title p {
    font-size: 0.8125rem;
    color: #888;
    margin-top: 8px;
    font-weight: 500;
}

/* ======================================================
   ABOUT SECTION
   ====================================================== */
.about-section {
    position: relative;
    padding: 40px 0 40px;
    background: #f9fafb;
    overflow: hidden;
}

/* two-column grid */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* ---- LEFT visual panel ---- */
.about-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-img-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
    line-height: 0;
}

.about-main-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform .5s ease;
}

.about-img-card:hover .about-main-img {
    transform: scale(1.04);
}

/* gradient overlay on image */
.about-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28, 35, 49, .55) 0%, transparent 50%);
    z-index: 1;
    border-radius: 24px;
}

/* floating experience badge — bottom-left of image */
.about-exp-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 3;
    background: #f37021;
    border-radius: 16px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(243, 112, 33, .45);
    animation: floatBadge 3s ease-in-out infinite;
}

.exp-num {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.exp-num sup {
    font-size: 1rem;
}

.exp-label {
    font-size: 0.6875rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .9);
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: .5px;
}


@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

/* stats row below image */
.about-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.about-stat {
    background: #fff;
    border-radius: 16px;
    padding: 16px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    border: 1px solid #f0f0f0;
    transition: transform .25s, box-shadow .25s;
}

.about-stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.about-stat>i {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #fff5ed;
    color: #f37021;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-stat strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #1c2331;
    line-height: 1;
}

.about-stat span {
    font-size: 0.625rem;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .4px;
}

/* ---- RIGHT content panel ---- */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* "Trusted since" tag pill */
.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff5ed;
    color: #f37021;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 30px;
    border: 1.5px solid #ffe0c8;
    margin-bottom: 18px;
    width: fit-content;
}

/* heading */
.about-heading {
    font-size: 2.375rem;
    font-weight: 700;
    color: #1c2331;
    line-height: 1.2;
    margin: 0 0 16px;
}

.about-heading span {
    color: #f37021;
}

/* accent divider */
.about-accent-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #f37021, #ffb700);
    border-radius: 4px;
    margin-bottom: 22px;
}

/* text */
.about-lead {
    font-size: 0.9375rem;
    color: #333;
    line-height: 1.75;
    margin-bottom: 14px;
    font-weight: 500;
}



/* ---- Icon feature list ---- */
.about-feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.about-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 14px;
    padding: 14px 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform .2s, box-shadow .2s;
}

.about-feature-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.09);
    border-color: #ffe0c8;
}

.afl-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f37021, #ffb700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(243, 112, 33, .3);
}

.afl-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.afl-text strong {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #1c2331;
    line-height: 1.2;
}

.afl-text span {
    font-size: 0.7188rem;
    color: #888;
    font-weight: 500;
    line-height: 1.4;
}

/* ---- Quote strip ---- */
.about-quote-strip {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: linear-gradient(135deg, #fff8f2, #fff3e0);
    border-left: 4px solid #f37021;
    border-radius: 0 12px 12px 0;
    padding: 14px 18px;
    margin-bottom: 24px;
}

.about-quote-icon {
    color: #f37021;
    font-size: 1.375rem;
    opacity: .5;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-quote-strip p {
    margin: 0;
    font-size: 0.8438rem;
    color: #555;
    line-height: 1.7;
    font-style: italic;
}

.about-quote-strip p em {
    color: #f37021;
    font-style: normal;
    font-weight: 700;
}

/* CTA buttons */
.about-cta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-about-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f37021, #ffb700);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(243, 112, 33, .4);
    transition: all .25s;
}

.btn-about-primary:hover {
    background: linear-gradient(135deg, #e05e11, #f39c00);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(243, 112, 33, .5);
    color: #fff;
    text-decoration: none;
}

.btn-about-secondary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #fff;
    border: 2px solid #1c2331;
    color: #1c2331;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 11px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: all .25s;
}

.btn-about-secondary i {
    color: #f37021;
}

.btn-about-secondary:hover {
    background: #1c2331;
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-about-secondary:hover i {
    color: #ffb700;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-heading {
        font-size: 1.75rem;
    }

    .about-main-img {
        height: 260px;
    }
}

@media (max-width: 600px) {
    .about-section {
        padding: 60px 0 50px;
    }

    .about-heading {
        font-size: 1.5rem;
    }

    .about-stats-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* ================================================================
   SERVICES SECTION — Premium Dark Redesign
   ================================================================ */
.services-section {
    padding: 40px 0 40px;
    background: linear-gradient(135deg, #0f172a 0%, #1a1035 60%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(243, 112, 33, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Services section — premium header (matches Fleet style) ── */
.services-section .section-title {
    margin-bottom: 55px;
    position: relative;
}

/* Main title */
.services-section .section-title h2 {
    color: #fff;
    font-size: 2.375rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin-bottom: 0;
}

/* Remove side-line decorators */
.services-section .section-title h2::before {
    display: none !important;
}

/* Orange gradient bar directly below title */
.services-section .section-title h2::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, #f37021, #ffb700);
    border-radius: 3px;
    margin: 16px auto 0;
    position: static;
}

/* Subtitle */
.services-section .section-title p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9063rem;
    max-width: 520px;
    margin: 20px auto 0;
    line-height: 1.75;
}

/* --- Slider wrapper --- */
.services-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
}

.services-slider-track-outer {
    overflow: hidden;
    flex: 1;
    cursor: grab;
    padding: 12px 4px 16px;
}

.services-slider-track-outer:active {
    cursor: grabbing;
}

.services-slider-track {
    display: flex;
    gap: 16px;
    /* sync'd with JS gap variable */
    will-change: transform;
    user-select: none;
}

/* --- Single card link wrapper --- */
.svc-card-link {
    display: block;
    text-decoration: none;
    flex-shrink: 0;
}

.svc-card-link:hover {
    text-decoration: none;
}

/* --- Card --- */
.svc-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    padding: 30px 22px 26px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    height: 220px;
    /* width managed entirely by JS updateCardWidth() — no hardcoded value */
    cursor: pointer;
    justify-content: flex-start;
}

/* Bottom-left accent stripe */
.svc-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c1), var(--c2));
    border-radius: 0 3px 0 22px;
    transition: width .4s ease;
}

.svc-card:hover::after {
    width: 60%;
}

/* Top-right decorative blob */
.svc-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c1), var(--c2));
    opacity: 0.08;
    transition: transform .4s ease, opacity .4s ease;
}

.svc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.svc-card:hover::before {
    transform: scale(1.5);
    opacity: 0.14;
}

/* --- Icon blob --- */
.svc-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--c1), var(--c2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    flex-shrink: 0;
    color: #fff;
    transition: transform .3s ease, box-shadow .3s ease;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.svc-card:hover .svc-icon-wrap {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.4);
}

/* --- Label --- */
.svc-label {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    position: relative;
    z-index: 1;
}

/* --- Description --- */
.svc-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    /* was 0.45 — failed WCAG AA */
    font-weight: 500;
    line-height: 1.5;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

/* --- Arrow chip --- */
.svc-arrow {
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.3px;
    opacity: 0.4;
    /* visible by default for mobile/touch users */
    transform: translateY(0);
    transition: opacity .3s ease, transform .3s ease;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    padding: 0;
    width: auto;
    height: auto;
    border-radius: 0;
}

.svc-arrow::after {
    content: '→';
    font-size: 0.875rem;
    transition: transform .25s ease;
}

.svc-card:hover .svc-arrow {
    opacity: 1;
    transform: translateY(0);
}

.svc-card:hover .svc-arrow::after {
    transform: translateX(4px);
}

/* --- Nav buttons --- */
.slider-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all .25s;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    z-index: 2;
    backdrop-filter: blur(8px);
}

.slider-nav:hover {
    background: #f37021;
    border-color: #f37021;
    color: #fff;
    box-shadow: 0 6px 20px rgba(243, 112, 33, .5);
    transform: scale(1.08);
}

/* --- Nav buttons: overlay on narrow screens to avoid compressing track --- */
@media (max-width: 1100px) {
    .slider-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        background: rgba(15, 23, 42, 0.75);
        backdrop-filter: blur(8px);
    }

    .slider-nav.prev {
        left: 0;
    }

    .slider-nav.next {
        right: 0;
    }

    .services-slider-track-outer {
        padding: 12px 52px 16px;
    }
}


/* --- Dots: hidden (removed per design) --- */
.svc-dots {
    display: none;
}


/* ================================================================
   POPULAR ROUTES — Premium Redesign
   ================================================================ */
.routes-section {
    padding: 40px 0;
    background: #fff;
    position: relative;
}

/* ── Routes section — premium header ── */
.routes-section .section-title {
    margin-bottom: 55px;
    position: relative;
}

.routes-section .section-title h2 {
    color: #1c2331;
    font-size: 2.375rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin-bottom: 0;
}

/* Remove side-line decorators */
.routes-section .section-title h2::before {
    display: none !important;
}

/* Orange gradient bar directly below title */
.routes-section .section-title h2::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, #f37021, #ffb700);
    border-radius: 3px;
    margin: 16px auto 0;
    position: static;
}

/* Subtitle */
.routes-section .section-title p {
    color: #6b7280;
    font-size: 0.9063rem;
    max-width: 520px;
    margin: 20px auto 0;
    line-height: 1.75;
}

/* Card */
.route-card {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    display: block;
    height: 240px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.route-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.18);
}

/* Background image */
.route-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.route-card:hover .route-img {
    transform: scale(1.07);
}

/* Persistent dark gradient overlay at bottom */
.route-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.0) 0%,
            rgba(0, 0, 0, 0.25) 45%,
            rgba(0, 0, 0, 0.88) 100%);
    transition: background 0.35s ease;
    z-index: 1;
}

.route-card:hover .route-overlay {
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.05) 0%,
            rgba(0, 0, 0, 0.35) 40%,
            rgba(0, 0, 0, 0.95) 100%);
}

/* Price badge top-right */
.route-price-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    background: linear-gradient(135deg, #f37021, #ffb700);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(243, 112, 33, 0.45);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

/* Bottom text content */
.route-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 18px 16px;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
}

.route-info h5 {
    margin: 0 0 5px 0;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.9);
}

.route-info p {
    margin: 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}

/* Book Now button */
.route-book-btn {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.18);
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
    backdrop-filter: blur(6px);
    transition: all 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.route-card:hover .route-book-btn {
    opacity: 1;
    transform: translateY(0);
    background: #f37021;
    border-color: #f37021;
}

/* View All button */
.routes-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f37021, #ffb700);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    border: none;
    box-shadow: 0 6px 20px rgba(243, 112, 33, 0.35);
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
}

.routes-view-all:hover {
    text-decoration: none;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(243, 112, 33, 0.5);
}

/* Fleet — Slick Slider: Premium Dark Redesign
   ================================================================ */
.fleet-section {
    padding: 40px 0;
    background: linear-gradient(160deg, #0f172a 0%, #1a1f35 60%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.fleet-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(243, 112, 33, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Fleet section — premium header ── */
.fleet-section .section-title {
    margin-bottom: 55px;
    position: relative;
}

/* Main title */
.fleet-section .section-title h2 {
    color: #fff;
    font-size: 2.375rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin-bottom: 10px;
}

/* Remove only the side-line ::before decorator */
.fleet-section .section-title h2::before {
    display: none !important;
}

/* Orange gradient bar — directly below the h2 title */
.fleet-section .section-title h2::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, #f37021, #ffb700);
    border-radius: 3px;
    margin: 16px auto 0;
    position: static;
}

/* Remove ::after from container (bar now lives on h2) */
.fleet-section .section-title::after {
    display: none;
}

/* Subtitle */
.fleet-section .section-title p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9063rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.75;
}


/* Wrapper — no bottom gap since dots removed */
.fleet-slider-wrapper {
    position: relative;
    padding: 0;
}

/* Arrow container */
#fleetArrowContainer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 20px;
    pointer-events: none;
    z-index: 10;
}

#fleetArrowContainer .fleet-slick-prev,
#fleetArrowContainer .fleet-slick-next {
    pointer-events: all;
}

/* Slide item padding */
.fleet-slide-item {
    padding: 14px 10px;
    outline: none;
    display: flex !important;
    /* stretch to full track height */
    flex-direction: column;
    width: 100%;
}

/* ── Card ── */
.fleet-card {
    border-radius: 20px;
    text-align: center;
    padding: 16px 14px 18px;
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease, border-color 0.35s ease;
    cursor: pointer;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.fleet-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(243, 112, 33, 0.15) 0%, transparent 70%);
    pointer-events: none;
    transition: opacity 0.35s ease;
    opacity: 0;
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.45), 0 0 20px rgba(243, 112, 33, 0.25);
    border-color: rgba(243, 112, 33, 0.45);
}

.fleet-card:hover::before {
    opacity: 1;
}

/* ── Image area — WHITE BACKGROUND ── */
.fleet-img-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 130px;
    margin-bottom: 14px;
    position: relative;
    background: #ffffff;
    /* Car image container white background */
    border-radius: 14px;
    padding: 10px 14px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05), 0 6px 18px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: box-shadow 0.35s ease;
}

.fleet-card:hover .fleet-img-wrap {
    box-shadow: inset 0 0 0 1px rgba(243, 112, 33, 0.2), 0 8px 24px rgba(0, 0, 0, 0.25);
}

.fleet-img {
    max-height: 105px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 1;
}

.fleet-card:hover .fleet-img {
    transform: scale(1.08) translateY(-2px);
}

/* ── Info area ── */
.fleet-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.fleet-name {
    font-weight: 700;
    font-size: 0.9375rem;
    /* 15px */
    margin-top: 4px;
    margin-bottom: 10px;
    color: #ffffff;
    line-height: 1.35;
    min-height: 2.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* ── Spec badges ── */
.fleet-specs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    font-weight: 600;
    margin-bottom: 14px;
}

.fleet-specs span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #e2e8f0;
    font-size: 0.7188rem;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.fleet-specs i {
    color: #f37021;
    font-size: 0.6563rem;
}

.fleet-card:hover .fleet-specs span {
    background: rgba(243, 112, 33, 0.15);
    border-color: rgba(243, 112, 33, 0.4);
    color: #ffa26b;
}

/* ── Book Now CTA Button ── */
.fleet-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 9px 14px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f37021 0%, #ff8c42 100%);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.7813rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(243, 112, 33, 0.35);
    transition: all 0.25s ease;
    margin-top: auto;
    /* Reset browser default button styles */
    border: none;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    font-family: inherit;
    line-height: 1.2;
}

.fleet-btn i {
    font-size: 0.75rem;
}

.fleet-btn:hover {
    background: linear-gradient(135deg, #ff8c42 0%, #f37021 100%);
    box-shadow: 0 6px 20px rgba(243, 112, 33, 0.55);
    transform: translateY(-1px);
    color: #ffffff !important;
}

.fleet-btn:focus {
    outline: 2px solid rgba(243, 112, 33, 0.5);
    outline-offset: 2px;
}

/* Anti-FOUC for fleet slider */
.fleet-slick-slider:not(.slick-initialized) {
    display: flex;
    overflow: hidden;
    gap: 0;
    opacity: 0;
    /* Optional: hide entirely, or remove to show placeholder layout */
    animation: fadeInSlick 0.5s forwards;
    animation-delay: 0.2s;
    /* Give JS time to load, if it fails, fade in raw */
}

@keyframes fadeInSlick {
    to {
        opacity: 1;
    }
}

.fleet-slick-slider:not(.slick-initialized) .fleet-slide-item {
    flex: 0 0 auto;
    width: 16.666%;
    padding: 0 10px;
    /* match slick slide padding */
}

@media (max-width: 1400px) {
    .fleet-slick-slider:not(.slick-initialized) .fleet-slide-item {
        width: 20%;
    }
}

@media (max-width: 1200px) {
    .fleet-slick-slider:not(.slick-initialized) .fleet-slide-item {
        width: 25%;
    }
}

@media (max-width: 992px) {
    .fleet-slick-slider:not(.slick-initialized) .fleet-slide-item {
        width: 33.333%;
    }
}

@media (max-width: 768px) {
    .fleet-slick-slider:not(.slick-initialized) .fleet-slide-item {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .fleet-slick-slider:not(.slick-initialized) .fleet-slide-item {
        width: 100%;
    }
}

/* Slick overflow fix + equal card heights */
.fleet-slick-slider.slick-slider,
.fleet-slick-slider.slick-initialized {
    overflow: visible !important;
}

.fleet-slick-slider .slick-list {
    overflow: hidden;
}

.fleet-slick-slider .slick-track {
    display: flex !important;
    align-items: stretch;
}

.fleet-slick-slider .slick-slide {
    height: auto !important;
    /* let flexbox control height */
    display: flex !important;
}

.fleet-slick-slider .slick-slide>div {
    display: flex;
    flex: 1;
}

/* ── Arrow buttons ── */
#fleetArrowContainer .slick-prev,
#fleetArrowContainer .slick-next,
#fleetArrowContainer .fleet-slick-prev,
#fleetArrowContainer .fleet-slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.07) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.875rem !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25) !important;
    transition: all 0.25s ease !important;
    backdrop-filter: blur(8px);
    z-index: 10;
    padding: 0 !important;
    outline: none;
}

#fleetArrowContainer .slick-prev::before,
#fleetArrowContainer .slick-next::before,
#fleetArrowContainer .fleet-slick-prev::before,
#fleetArrowContainer .fleet-slick-next::before {
    display: none !important;
}

#fleetArrowContainer .slick-prev,
#fleetArrowContainer .fleet-slick-prev {
    left: -18px !important;
}

#fleetArrowContainer .slick-next,
#fleetArrowContainer .fleet-slick-next {
    right: -18px !important;
    left: auto !important;
}

#fleetArrowContainer .slick-prev:hover,
#fleetArrowContainer .slick-next:hover,
#fleetArrowContainer .fleet-slick-prev:hover,
#fleetArrowContainer .fleet-slick-next:hover {
    background: #f37021 !important;
    border-color: #f37021 !important;
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(243, 112, 33, 0.45) !important;
    transform: translateY(-50%) scale(1.08) !important;
}

/* Dots: hidden since dots:false in JS */
.fleet-slick-slider .slick-dots {
    display: none !important;
}


/* Why Choose Us Banner */
.why-section-wrapper {
    background: transparent;
}

.why-banner {
    background: #0f172a;
    /* Deep dark blue matching image */
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.why-banner-title {
    text-align: center;
    color: #fff;
    font-size: 1.875rem;
    /* 30px */
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.why-banner-title span {
    color: #f37021;
}

.why-banner-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 15px;
}

.why-banner-item {
    flex: 1;
    text-align: center;
    padding: 0 4px;
}

.why-banner-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    /* 24px */
    color: #fff;
    position: relative;
}

.why-banner-icon i {
    position: relative;
    z-index: 2;
}

.why-banner-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border: 2px solid #f37021;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.85;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.why-banner-item:hover .why-banner-icon::before {
    transform: translate(-50%, -50%) scale(1.1);
    border-color: #ff8c42;
}

.why-banner-item h5 {
    color: #ffffff;
    font-size: 0.9375rem;
    /* 15px */
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.35;
}

.why-banner-item p {
    color: #cbd5e1;
    font-size: 0.8125rem;
    /* 13px */
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .why-banner-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .why-banner-item {
        flex: 0 0 calc(33.333% - 30px);
    }
}

@media (max-width: 576px) {
    .why-banner-item {
        flex: 0 0 calc(50% - 30px);
    }

    .why-banner {
        padding: 30px 20px;
    }
}

/* ================================================================
   TESTIMONIALS — Premium Light Design
   ================================================================ */
.testimonials-section {
    padding: 40px 0 40px;
    background: #f8f5f1;
    position: relative;
    overflow: hidden;
}

/* Decorative top border accent */
.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #f37021 30%, #ffb700 70%, transparent);
    pointer-events: none;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(243, 112, 33, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Testimonials section — premium header ── */
.testimonials-section .section-title {
    margin-bottom: 55px;
    position: relative;
}

.testimonials-section .section-title h2 {
    color: #1c2331;
    font-size: 2.375rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin-bottom: 0;
}

/* Remove side-line decorators */
.testimonials-section .section-title h2::before {
    display: none !important;
}

/* Orange gradient bar directly below title */
.testimonials-section .section-title h2::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, #f37021, #ffb700);
    border-radius: 3px;
    margin: 16px auto 0;
    position: static;
}

/* Subtitle */
.testimonials-section .section-title p {
    color: #6b7280;
    font-size: 0.9063rem;
    max-width: 520px;
    margin: 20px auto 0;
    line-height: 1.75;
}

/* Wrapper & Arrow Container */
/* Anti-FOUC for testimonials slider */
.testimonials-slider:not(.slick-initialized) {
    display: flex;
    overflow: hidden;
    gap: 0;
    opacity: 0;
    animation: fadeInSlick 0.5s forwards;
    animation-delay: 0.2s;
}

.testimonials-slider:not(.slick-initialized) .testimonial-slide-item {
    flex: 0 0 auto;
    width: 33.333%;
    padding: 0 10px;
}

@media (max-width: 992px) {
    .testimonials-slider:not(.slick-initialized) .testimonial-slide-item {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .testimonials-slider:not(.slick-initialized) .testimonial-slide-item {
        width: 100%;
    }
}

.testimonials-slider-wrapper {
    position: relative;
    padding: 10px 0 20px;
    margin-top: 40px;
}

#testimonialArrowContainer {
    position: absolute;
    top: 45%;
    left: -18px;
    right: -18px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

#testimonialArrowContainer .fleet-slick-prev,
#testimonialArrowContainer .fleet-slick-next {
    pointer-events: all;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    color: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

#testimonialArrowContainer .fleet-slick-prev:hover,
#testimonialArrowContainer .fleet-slick-next:hover {
    background: #f37021;
    color: #ffffff;
    border-color: #f37021;
    box-shadow: 0 6px 18px rgba(243, 112, 33, 0.3);
}

/* Slide item */
.testimonial-slide-item {
    padding: 15px 14px;
    outline: none;
}

/* ---- Review Card ---- */
.review-card {
    border-radius: 20px;
    padding: 30px 26px 24px;
    background: #fff;
    position: relative;
    border: 1px solid #ede8e0;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    min-height: 260px;
    overflow: hidden;
}

/* Orange top-border accent on hover */
.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f37021, #ffb700);
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(243, 112, 33, 0.15);
    border-color: rgba(243, 112, 33, 0.2);
}

.review-card:hover::before {
    opacity: 1;
}

/* Big decorative quote */
.quote-icon {
    font-size: 2.75rem;
    line-height: 1;
    background: linear-gradient(135deg, #f37021, #ffb700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    opacity: 0.4;
    display: block;
    transition: opacity 0.3s;
}

.review-card:hover .quote-icon {
    opacity: 0.8;
}

/* Review text */
.review-text {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 22px;
    flex-grow: 1;
    font-weight: 400;
    font-style: italic;
}

/* Divider */
.review-card-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
    margin-bottom: 20px;
}

/* Reviewer info row */

/* ===== GOOGLE REVIEWS STYLING ===== */
.google-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 8px 22px;
    border-radius: 30px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
    font-size: 0.88rem;
    color: #1e293b;
}

.google-badge-pill .google-g-logo {
    flex-shrink: 0;
}

.google-badge-pill .stars-gold {
    color: #fbbc04;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.google-badge-pill .review-count-link {
    color: #4285f4;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: color 0.2s;
}

.google-badge-pill .review-count-link:hover {
    color: #1a73e8;
    text-decoration: underline !important;
}

.testimonials-title {
    color: #0f172a;
    font-size: 2rem;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 6px;
}

.testimonials-title span {
    color: #f37021;
}

.testimonials-sub {
    color: #64748b;
    font-size: 0.9375rem;
}

/* ===== EQUAL HEIGHT FLEX TRACK ===== */
.testimonials-slider .slick-track {
    display: flex !important;
    align-items: stretch !important;
}

.testimonials-slider .slick-slide {
    height: auto !important;
    display: flex !important;
    flex-direction: column;
}

.testimonials-slider .slick-slide>div {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonials-slider .testimonial-slide-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 8px 12px;
}

/* ===== PREMIUM GOOGLE-STYLE REVIEW CARD ===== */
.google-ref-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px 24px 20px;
    border: 1px solid #ebebeb;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s ease;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Orange brand top accent line */
.google-ref-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f37021, #ffb700 60%, #f37021);
    border-radius: 20px 20px 0 0;
}

.google-ref-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.11), 0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: #e0e0e0;
}

/* ── Header ── */
.gcard-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.gcard-avatar-wrap {
    position: relative;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.gcard-avatar-initial {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #ffffff;
    font-family: 'Google Sans', 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
}

.gcard-avatar-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f0f0f0;
}

/* Overlaid Google 'G' badge bottom-right of avatar */
.gcard-g-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

/* ── Author Info ── */
.gcard-author-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.gcard-name-row {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: nowrap;
}

.gcard-author-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gcard-blue-check {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.gcard-time {
    font-size: 0.775rem;
    color: #888;
    font-weight: 400;
    margin-top: 3px;
    line-height: 1;
}

/* ── Stars ── */
.gcard-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.gcard-stars i.fas.fa-star {
    color: #e0e0e0;
    font-size: 1.05rem;
}

.gcard-stars i.fas.fa-star.active {
    color: #F5A623;
}

/* ── Review Text ── */
.gcard-text {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.65;
    margin: 0 0 16px;
    flex-grow: 1;
    font-weight: 400;
    display: -webkit-box;
    line-clamp: 5;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Read More Button ── */
.gcard-readmore {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    align-self: flex-start;
    margin-top: auto;
    padding: 7px 14px 7px 10px;
    border-radius: 50px;
    border: 1.5px solid #f37021;
    background: transparent;
    color: #f37021;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-decoration: none !important;
    transition: background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
    white-space: nowrap;
    line-height: 1;
}

/* Map-pin icon before */
.gcard-readmore::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f3c5';
    font-size: 0.72rem;
    color: inherit;
    flex-shrink: 0;
}

/* Arrow after */
.gcard-readmore::after {
    content: '\2192';
    font-size: 0.88rem;
    transition: transform 0.22s ease;
    flex-shrink: 0;
    font-family: inherit;
}

.gcard-readmore:hover {
    background: #f37021;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(243, 112, 33, 0.32);
    transform: translateY(-2px);
    text-decoration: none !important;
}

.gcard-readmore:hover::after {
    transform: translateX(4px);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Avatar initial circle */
.reviewer-img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(243, 112, 33, 0.3);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.reviewer-avatar-init {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(243, 112, 33, 0.3);
    letter-spacing: -0.5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #f37021, #ffb700);
}

.reviewer-avatar-init.alt {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.reviewer-avatar-init.alt2 {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.reviewer-name h6 {
    margin: 0 0 4px 0;
    font-weight: 700;
    font-size: 0.875rem;
    color: #1c2331;
    letter-spacing: 0.1px;
}

/* Stars */
.stars {
    color: #fbbf24;
    font-size: 0.6875rem;
    display: flex;
    gap: 3px;
}

.stars i {
    filter: drop-shadow(0 0 2px rgba(251, 191, 36, 0.4));
}

/* Google badge on card */
.review-google-badge {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 0.625rem;
    color: #9ca3af;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.review-google-badge i {
    font-size: 0.75rem;
    color: #f37021;
}

/* ---- Arrow buttons ---- */
#testimonialArrowContainer .fleet-slick-prev,
#testimonialArrowContainer .fleet-slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    color: #374151;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    transition: all 0.25s ease;
    z-index: 10;
    outline: none;
}

#testimonialArrowContainer .fleet-slick-prev {
    left: -18px;
}

#testimonialArrowContainer .fleet-slick-next {
    right: -18px;
}

#testimonialArrowContainer .fleet-slick-prev:hover,
#testimonialArrowContainer .fleet-slick-next:hover {
    background: #f37021;
    border-color: #f37021;
    color: #fff;
    box-shadow: 0 8px 24px rgba(243, 112, 33, 0.4);
    transform: translateY(-50%) scale(1.1);
}

/* Dots: hidden (dots:false in JS) */
.testimonials-slider .slick-dots {
    display: none !important;
}

/* ================================================================
   STATS BAR — Premium Dark Design
   ================================================================ */
.stats-section {
    padding: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1a1035 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(243, 112, 33, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 1;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    text-align: center;
    position: relative;
    transition: background 0.3s ease;
}

.stat-box::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 0;
    width: 1px;
    height: 60%;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.stat-box:last-child::after {
    display: none;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.04);
}

/* Icon bubble */
.stat-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(243, 112, 33, 0.2), rgba(243, 112, 33, 0.08));
    border: 1px solid rgba(243, 112, 33, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-icon-wrap::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 24px;
    border: 1px solid rgba(243, 112, 33, 0.15);
    animation: statPulse 3s ease-in-out infinite;
}

@keyframes statPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 0.1;
        transform: scale(1.08);
    }
}

.stat-box:hover .stat-icon-wrap {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(243, 112, 33, 0.3);
}

.stat-icon {
    font-size: 1.625rem;
    color: #f37021;
}

/* Number */
.stat-info h3 {
    margin: 0 0 6px 0;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, #fff 30%, rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.stat-info h3 span {
    color: #f37021;
    -webkit-text-fill-color: #f37021;
}

/* Label */
.stat-info p {
    margin: 0;
    font-size: 0.7813rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

/* ---- Hero Mobile Responsive ---- */
@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding: 110px 0 60px;
        align-items: flex-start;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-overlay {
        background:
            linear-gradient(to bottom,
                rgba(8, 13, 30, 0.85) 0%,
                rgba(8, 13, 30, 0.75) 100%);
    }

    .hero-trust-pills {
        gap: 7px;
    }

    .trust-pill {
        font-size: 0.6875rem;
        padding: 5px 11px;
    }

    .hero-features {
        gap: 18px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.875rem;
    }

    .hero-subtitle {
        font-size: 0.8125rem;
    }

    .hero-trust-pills .trust-pill:nth-child(n+3) {
        display: none;
    }

    .hero-features {
        gap: 14px;
    }

    .hf-icon {
        width: 40px;
        height: 40px;
        font-size: 0.9375rem;
    }

    .hero-buttons .btn {
        padding: 11px 20px;
        font-size: 0.8125rem;
    }
}

@media (max-width: 767px) {
    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-box::after {
        display: none;
    }

    .stat-box {
        padding: 36px 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .stat-info h3 {
        font-size: 1.75rem;
    }
}

/* ================================================================
   PRE-FOOTER — Premium Dark Design
   ================================================================ */
.pre-footer {
    padding: 40px 0 40px;
    background: #0a0f1e;
    position: relative;
    overflow: hidden;
    border-top: none;
}

/* Ambient glow */
.pre-footer::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(243, 112, 33, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.pre-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #f37021 30%, #ffb700 70%, transparent);
    z-index: 1;
}

/* Column titles */
.pf-title {
    font-size: 0.8125rem;
    font-weight: 700;
    margin-bottom: 22px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 12px;
}

.pf-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, #f37021, #ffb700);
    border-radius: 2px;
}

/* Why Book With Us list */
.pf-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pf-list li {
    margin-bottom: 12px;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
    display: flex;
    align-items: center;
    gap: 11px;
    font-weight: 500;
    transition: color 0.2s;
    cursor: default;
}

.pf-list li:hover {
    color: rgba(255, 255, 255, 0.9);
}

.pf-list li i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(243, 112, 33, 0.15);
    border: 1px solid rgba(243, 112, 33, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    color: #f37021;
    flex-shrink: 0;
    transition: background 0.2s;
}

.pf-list li:hover i {
    background: rgba(243, 112, 33, 0.28);
}

/* Popular Search tags */
.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.search-tag {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 7px 14px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.05);
    font-weight: 500;
    transition: all 0.25s;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(4px);
}

.search-tag i {
    font-size: 0.625rem;
    color: #f37021;
    opacity: 0.8;
}

.search-tag:hover {
    border-color: #f37021;
    color: #f37021;
    background: rgba(243, 112, 33, 0.12);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(243, 112, 33, 0.2);
}

/* Contact Widgets — Dark */
.contact-widget {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 13px 14px;
    transition: all 0.25s ease;
    box-shadow: none;
    backdrop-filter: blur(6px);
}

.contact-widget:hover {
    border-color: rgba(243, 112, 33, 0.4);
    background: rgba(243, 112, 33, 0.07);
    box-shadow: 0 6px 24px rgba(243, 112, 33, 0.15);
    transform: translateX(4px);
}

.contact-widget .icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(243, 112, 33, 0.15);
    border: 1px solid rgba(243, 112, 33, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: #f37021;
    flex-shrink: 0;
    transition: transform 0.25s;
}

.contact-widget:hover .icon {
    transform: scale(1.1);
}

.contact-widget.wa .icon {
    background: rgba(37, 211, 102, 0.12);
    border-color: rgba(37, 211, 102, 0.3);
    color: #25d366;
}

.contact-widget.email .icon {
    background: rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.25);
    color: #818cf8;
}

.contact-widget h6 {
    margin: 0 0 2px 0;
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.contact-widget p {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.2;
}

/* cw-info flex fills remaining space */
.cw-info {
    flex: 1;
    min-width: 0;
}

/* Action buttons inside contact widgets */
.cw-action-btn {
    flex-shrink: 0;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-decoration: none;
    background: #f37021;
    color: #fff;
    border: none;
    transition: all 0.25s ease;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.cw-action-btn:hover {
    background: #e05e11;
    color: #fff;
    text-decoration: none;
    transform: scale(1.04);
}

.cw-action-btn.wa {
    background: #25d366;
}

.cw-action-btn.wa:hover {
    background: #20bd5a;
}

.cw-action-btn.email {
    background: #6366f1;
}

.cw-action-btn.email:hover {
    background: #4f46e5;
}

/* ================================================================
   FOOTER — Premium Redesign
   ================================================================ */
.footer {
    background: #0a0f1e !important;
    color: #fff !important;
    padding: 0;
    position: relative;
    overflow: hidden;
}

/* Ambient glow blobs */
.footer::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(243, 112, 33, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Orange top line */
.footer-top-line {
    height: 3px;
    background: linear-gradient(90deg, transparent, #f37021 30%, #ffb700 70%, transparent);
}

/* Trust strip */
.footer-trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-wrap: wrap;
}

.footer-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-trust-item i {
    font-size: 0.875rem;
    color: #f37021;
}

/* Main content area */
.footer-main {
    padding: 56px 0 44px;
    position: relative;
    z-index: 1;
}

/* Logo & brand column */
.footer-logo {
    margin-bottom: 16px;
    max-width: 180px;
    filter: brightness(0) invert(1);
}

.footer-desc {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.45) !important;
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 260px;
}

/* Social icons */
.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.25s ease;
    background: rgba(255, 255, 255, 0.04) !important;
}

.footer-social a:hover {
    text-decoration: none;
    transform: translateY(-3px);
}

.footer-social a[href*="facebook"]:hover {
    background: #1877f2 !important;
    border-color: #1877f2 !important;
    color: #fff !important;
}

.footer-social a[href*="instagram"]:hover {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
    border-color: transparent !important;
    color: #fff !important;
}

.footer-social a[href*="youtube"]:hover {
    background: #ff0000 !important;
    border-color: #ff0000 !important;
    color: #fff !important;
}

.footer-social a[href*="pinterest"]:hover {
    background: #e60023 !important;
    border-color: #e60023 !important;
    color: #fff !important;
}

/* Column headings */
.footer h5 {
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, #f37021, #ffb700);
    border-radius: 2px;
}

/* Nav links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 11px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.45) !important;
    font-size: 0.8125rem;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0;
    transition: color 0.2s ease, gap 0.2s ease;
}

.footer-links a::before {
    content: '›';
    font-size: 1rem;
    color: #f37021;
    opacity: 0;
    width: 0;
    overflow: hidden;
    transition: opacity 0.2s, width 0.2s;
    line-height: 1;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: none;
    gap: 6px;
}

.footer-links a:hover::before {
    opacity: 1;
    width: 12px;
}

/* Contact list */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(243, 112, 33, 0.12);
    border: 1px solid rgba(243, 112, 33, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    color: #f37021;
    flex-shrink: 0;
    margin-top: 2px;
    transition: background 0.2s;
}

.footer-contact li:hover .footer-contact-icon {
    background: rgba(243, 112, 33, 0.22);
}

.footer-contact-text {
    display: flex;
    flex-direction: column;
}

.footer-contact-text small {
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
    margin-bottom: 3px;
}

.footer-contact-text span {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    line-height: 1.4;
}

/* Bottom bar */
.footer-bottom {
    padding: 18px 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.2) !important;
}

.footer-bottom-copy {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.footer-bottom-copy span {
    color: #f37021;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 0.75rem;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #f37021;
    text-decoration: none;
}

@media (max-width: 991px) {
    .footer-trust-strip {
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Overrides for quick booking layout */
.qb-input-group {
    position: relative;
}

.qb-input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #222222;
    font-size: 1rem;
    z-index: 2;
}

.qb-input-group .form-control {
    padding-left: 42px;
    height: 48px;
    font-size: 0.95rem;
    color: #111111;
    font-weight: 600;
}

.qb-input-group.mobile i {
    left: auto;
    left: 15px;
    font-style: normal;
    font-weight: 600;
    color: #333;
}

.qb-input-group.mobile .form-control {
    padding-left: 50px;
}

/* Layout adjustments for desktop */
@media (min-width: 992px) {
    .hero-content {
        padding-right: 20px;
    }

    .hero-car {
        right: 350px;
        max-width: 600px;
    }

    .quick-booking-card {
        margin-right: 0;
        margin-left: auto;
    }
}

@media (max-width: 991px) {
    .hero-car {
        display: none;
    }

    .trust-badge {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}

/* ============================================================
   LAPTOP OVERRIDES — ≤ 1280px
   Reduce large heading sizes that are too prominent on
   13"–15" laptop screens (1280×800 / 1366×768 / 1280×960)
   ============================================================ */
@media (max-width: 1280px) {

    /* Hero main title */
    .hero-title {
        font-size: clamp(1.5rem, 1.25rem + 2vw, 2.5rem) !important;
    }

    /* About section heading */
    .about-heading {
        font-size: clamp(1.375rem, 1rem + 1.75vw, 2rem);
    }

    /* Services / Fleet / Common section title h2 */
    .section-title h2,
    .services-section .section-title h2,
    .sec-title h2 {
        font-size: clamp(1.25rem, 1rem + 1.5vw, 1.75rem);
    }

    /* Quick-booking card heading */
    .quick-booking-card h4 {
        font-size: clamp(1rem, 0.75rem + 1vw, 1.375rem);
    }

    /* Booking results / banner titles */
    .dcb-banner-title {
        font-size: clamp(1.25rem, 1rem + 1.5vw, 1.875rem) !important;
    }

    /* Booking page hero title */
    .bk-hero-title {
        font-size: clamp(1.25rem, 1rem + 1.5vw, 1.75rem) !important;
    }

    /* About experience badge number */
    .exp-num {
        font-size: clamp(1.375rem, 1rem + 1.5vw, 2rem);
    }
}

/* ================================================================
   CITIES INFINITE MARQUEE SLIDER (Light Theme)
   ================================================================ */
.cities-slider-section {
    padding: 40px 0 40px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-top: 1px solid #e2e8f0;
    overflow: hidden;
    position: relative;
}

.cities-slider-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f37021;
    background: #fff5ed;
    border: 1px solid #ffd0b0;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.cities-slider-title {
    color: #0f172a;
    font-size: 1.65rem;
    font-weight: 700;
    margin-bottom: 32px;
    letter-spacing: -0.3px;
}

.cities-slider-title span {
    color: #f37021;
}

.cities-marquee-container {
    display: flex;
    overflow: hidden;
    user-select: none;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.cities-marquee-track {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 14px;
    min-width: 100%;
    padding: 5px 7px;
}

.cities-marquee-container:hover .cities-marquee-track {
    animation-play-state: paused;
}

/* Row 1: Going Left (←) */
.marquee-left .cities-marquee-track {
    animation: marqueeLeft 34s linear infinite;
}

@keyframes marqueeLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/* Row 2: Coming Right (→) */
.marquee-right .cities-marquee-track {
    animation: marqueeRight 34s linear infinite;
}

@keyframes marqueeRight {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

.city-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #1e293b;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none !important;
    white-space: nowrap;
    transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.city-chip i {
    color: #f37021;
    font-size: 0.85rem;
    transition: transform 0.25s ease;
}

.city-chip span {
    font-size: 0.72rem;
    font-weight: 500;
    color: #64748b;
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 12px;
}

.city-chip.highlight {
    background: #fff5ed;
    border-color: #fdba74;
    color: #c2410c;
}

.city-chip.highlight span {
    background: rgba(243, 112, 33, 0.15);
    color: #ea580c;
}

/* ================================================================
   GOOGLE PLACES AUTOCOMPLETE (PAC) DROPDOWN — Polished Styling
   ================================================================ */
.pac-container {
    border-radius: 12px !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14) !important;
    font-family: 'Outfit', 'Inter', sans-serif !important;
    margin-top: 4px !important;
    max-height: 250px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    z-index: 99999 !important;
    background: #ffffff !important;
    box-sizing: border-box !important;
}

/* Custom smooth scrollbar for autocomplete dropdown */
.pac-container::-webkit-scrollbar {
    width: 6px !important;
}

.pac-container::-webkit-scrollbar-track {
    background: #f1f5f9 !important;
    border-radius: 0 12px 12px 0 !important;
}

.pac-container::-webkit-scrollbar-thumb {
    background: #cbd5e1 !important;
    border-radius: 4px !important;
}

.pac-container::-webkit-scrollbar-thumb:hover {
    background: #f37021 !important;
}

.pac-container::after {
    /* Hide the "Powered by Google" logo — optional, keep if required by ToS */
    display: none !important;
}

.pac-item {
    padding: 10px 14px !important;
    font-size: 0.875rem !important;
    color: #374151 !important;
    cursor: pointer !important;
    border-top: 1px solid #f3f4f6 !important;
    display: flex !important;
    align-items: flex-start !important;
    /* top-align when text wraps */
    flex-wrap: wrap !important;
    /* allow long addresses to wrap */
    gap: 4px 8px !important;
    transition: background 0.15s ease !important;
    line-height: 1.45 !important;
    white-space: normal !important;
    /* prevent text from being cut off */
    word-break: break-word !important;
    overflow: visible !important;
}

.pac-item:first-child {
    border-top: none !important;
}

.pac-item:hover,
.pac-item-selected {
    background: #fff5ed !important;
    color: #f37021 !important;
}

.pac-item-selected .pac-item-query,
.pac-item:hover .pac-item-query {
    color: #f37021 !important;
}

.pac-item-query {
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: #111827 !important;
    padding-right: 4px !important;
    white-space: normal !important;
    /* allow long names to wrap */
    flex-shrink: 0 !important;
}

.pac-matched {
    color: #f37021 !important;
    font-weight: 700 !important;
}

.pac-icon {
    width: 20px !important;
    height: 20px !important;
    margin-right: 6px !important;
    flex-shrink: 0 !important;
}

/* Make sure the pac-container clears the booking form modal */
body .pac-container {
    z-index: 99999 !important;
}


.city-chip:hover {
    background: linear-gradient(135deg, #f37021 0%, #ff8c42 100%);
    border-color: #f37021;
    color: #ffffff !important;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 22px rgba(243, 112, 33, 0.35);
}

.city-chip:hover i {
    color: #ffffff;
    transform: translateY(-1px);
}

.city-chip:hover span {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

/* ── Popular Outstation Routes — Slick Slider ── */
.routes-slick-slider {
    margin: 0 -12px;
}

.routes-slick-slider .slick-list {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    margin-top: -12px !important;
    margin-bottom: -12px !important;
}

.routes-slide-item {
    padding: 0 12px;
}

/* Anti-FOUC: hide raw cards until Slick initialises */
.routes-slick-slider:not(.slick-initialized) {
    display: flex;
    overflow: hidden;
    opacity: 0;
    animation: fadeInSlick 0.4s forwards;
    animation-delay: 0.15s;
}


/* Arrow buttons for Popular Outstation Routes slider */
#routesArrowContainer .fleet-slick-prev,
#routesArrowContainer .fleet-slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12) !important;
    color: #1f2937 !important;
    font-size: 0.875rem !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease !important;
    z-index: 10;
    padding: 0 !important;
    outline: none;
}

#routesArrowContainer .fleet-slick-prev {
    left: -20px !important;
}

#routesArrowContainer .fleet-slick-next {
    right: -20px !important;
    left: auto !important;
}

#routesArrowContainer .fleet-slick-prev:hover,
#routesArrowContainer .fleet-slick-next:hover {
    background: #f37021 !important;
    border-color: #f37021 !important;
    color: #ffffff !important;
    box-shadow: 0 6px 18px rgba(243, 112, 33, 0.35) !important;
    transform: translateY(-50%) scale(1.08) !important;
}