/* ==================== CSS VARIABLES ==================== */
:root {
    --saffron: #FF9933;
    --saffron-dark: #E07800;
    --saffron-pale: #FFF3E0;
    --saffron-mid: #FFE0B2;
    --green: #138808;
    --green-dark: #0A5C04;
    --green-pale: #E8F5E9;
    --green-mid: #C8E6C9;
    --navy: #000080;
    --navy-mid: #1A237E;
    --navy-light: #E8EAF6;
    --white: #ffffff;
    --off-white: #FAFAFA;
    --gray-50: #F5F5F5;
    --gray-100: #EEEEEE;
    --gray-300: #BDBDBD;
    --gray-500: #757575;
    --gray-700: #424242;
    --gray-900: #212121;
    --text: #1A1A2E;
    --text-muted: #5A6170;
    --border: #E0E0E0;
    --shadow-sm: 0 2px 8px rgba(0,0,128,.08);
    --shadow-md: 0 4px 20px rgba(0,0,128,.10);
    --shadow-lg: 0 8px 40px rgba(0,0,128,.14);
    --r: 8px;
    --r-lg: 12px;
}

/* ==================== RESET ==================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Noto Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: .3px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ==================== LAYOUT ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-pad {
    padding: 64px 0;
}

.section-pad-sm {
    padding: 48px 0;
}

/* ==================== SECTION HEADER ==================== */
.section-hd {
    text-align: center;
    margin-bottom: 40px;
}

    .section-hd .label-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: 'Rajdhani', sans-serif;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: var(--navy);
        background: var(--navy-light);
        border: 1px solid rgba(0,0,128,.15);
        padding: 5px 16px;
        border-radius: 2px;
        margin-bottom: 14px;
    }

    .section-hd h2 {
        font-size: clamp(24px, 3.5vw, 36px);
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 10px;
    }

        .section-hd h2 .hi {
            color: var(--saffron-dark);
        }

    .section-hd .section-sub {
        font-size: 15px;
        color: var(--navy);
        max-width: 560px;
        margin: 12px auto 0;
    }

.tri-divider {
    display: flex;
    height: 4px;
    width: 60px;
    margin: 14px auto 0;
    border-radius: 2px;
    overflow: hidden;
}

    .tri-divider span:nth-child(1) {
        flex: 1;
        background: var(--saffron);
    }

    .tri-divider span:nth-child(2) {
        flex: 1;
        background: var(--navy);
    }

    .tri-divider span:nth-child(3) {
        flex: 1;
        background: var(--green);
    }

/* ==================== HEADER ==================== */
.logo {
    max-width: 200px;
}

.site-header {
    background: var(--white);
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(to right, var(--saffron) 33.33%, var(--navy) 33.33% 66.66%, var(--green) 66.66%) 1;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 200;
    transition: box-shadow .3s;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 12px;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: center;
}

    .main-nav a {
        font-size: 13px;
        font-weight: 600;
        color: var(--gray-700);
        transition: color .2s, background .2s;
        padding: 7px 11px;
        border-radius: var(--r);
        letter-spacing: .2px;
        position: relative;
        cursor: pointer;
        white-space: nowrap;
    }

        .main-nav a:hover,
        .main-nav a.nav-active {
            color: var(--navy);
            background: var(--navy-light);
        }

            .main-nav a.nav-active::after {
                content: '';
                position: absolute;
                bottom: 2px;
                left: 50%;
                transform: translateX(-50%);
                width: 18px;
                height: 2px;
                background: var(--saffron);
                border-radius: 2px;
            }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

    .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--navy);
        border-radius: 2px;
    }

.main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 3px solid transparent;
    border-image: linear-gradient(to right, var(--saffron) 33.33%, var(--navy) 33.33% 66.66%, var(--green) 66.66%) 1;
    box-shadow: 0 8px 24px rgba(0,0,128,.12);
    padding: 10px 0;
    z-index: 199;
}

    .main-nav.open a {
        padding: 12px 24px;
        border-radius: 0;
        border-bottom: 1px solid var(--gray-100);
    }

        .main-nav.open a:last-child {
            border-bottom: none;
        }

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hamburger span {
    transition: transform .3s ease, opacity .3s ease;
}

/* ==================== BUTTONS ==================== */
.btn-saffron {
    background: var(--saffron);
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 9px 20px;
    border-radius: var(--r);
    border: none;
    cursor: pointer;
    transition: background .2s, transform .15s;
    letter-spacing: .5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

    .btn-saffron:hover {
        background: var(--saffron-dark);
        transform: translateY(-1px);
    }

.btn-outline-navy {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: var(--r);
    cursor: pointer;
    transition: all .2s;
    letter-spacing: .5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

    .btn-outline-navy:hover {
        background: var(--navy);
        color: #fff;
    }

/* ==================== 1. HERO ==================== */
.hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 60px;
    background: linear-gradient(160deg, rgba(255,153,51,.12) 0%, rgba(255,255,255,1) 35%, rgba(255,255,255,1) 65%, rgba(19,136,8,.10) 100%);
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(to right, var(--saffron) 33.33%, var(--navy) 33.33% 66.66%, var(--green) 66.66%);
    }

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 2px;
    margin-bottom: 20px;
}

    .hero-badge .dot {
        width: 6px;
        height: 6px;
        background: var(--saffron);
        border-radius: 50%;
        animation: blink 1.5s infinite;
    }

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }
}

.hero h1 {
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.12;
    color: var(--text);
    margin-bottom: 18px;
}

    .hero h1 .line-saffron {
        color: var(--saffron-dark);
        display: block;
    }

    .hero h1 .line-green {
        color: var(--green-dark);
    }

.hero-sub {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-trust {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    box-shadow: var(--shadow-sm);
}

    .trust-pill .pip {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        flex-shrink: 0;
    }

.pip-s {
    background: var(--saffron);
}

.pip-g {
    background: var(--green);
}

.pip-n {
    background: var(--navy);
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-flag-strip {
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
    display: flex;
}

    .hero-flag-strip span {
        flex: 1;
    }

        .hero-flag-strip span:nth-child(1) {
            background: var(--saffron);
        }

        .hero-flag-strip span:nth-child(2) {
            background: var(--navy);
        }

        .hero-flag-strip span:nth-child(3) {
            background: var(--green);
        }

/* Stats row (inside hero) */
.notice-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.nr-item {
    padding: 20px;
    text-align: center;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--r-lg);
    transition: background .18s;
    min-width: 0;
}

.nr-ico {
    font-size: 25px;
    flex-shrink: 0;
    text-align: center;
    color: var(--navy);
}

.nr-txt {
    min-width: 0;
}

.nr-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--navy);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nr-sub {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Hero form card */
.hero-form-card {
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,128,.12);
}

/* ==================== FORM CARD ==================== */
.form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.form-card-header {
    background: var(--navy);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

    .form-card-header h3 {
        font-size: 18px;
        font-weight: 700;
        color: #fff;
    }

    .form-card-header p {
        font-size: 12px;
        color: rgba(255,255,255,.7);
        margin-top: 2px;
    }

.form-header-icon {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,.12);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
}

.form-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

    .form-row.date {
        grid-template-columns: 1fr;
    }

.form-group {
    margin-bottom: 16px;
}

    .form-group label {
        display: block;
        font-size: 12px;
        font-weight: 600;
        color: var(--gray-700);
        letter-spacing: .5px;
        text-transform: uppercase;
        margin-bottom: 6px;
    }

        .form-group label span {
            color: var(--saffron-dark);
        }

.form-control {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    padding: 10px 14px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    color: var(--text);
    background: var(--off-white);
    transition: border-color .2s, background .2s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

    .form-control:focus {
        border-color: var(--navy);
        background: var(--white);
        box-shadow: 0 0 0 3px rgba(0,0,128,.08);
    }

select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23757575' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.date-input {
    position: relative;
}

    .date-input input {
        padding-right: 40px;
    }

    .date-input i {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        color: #888;
        pointer-events: none;
    }

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: var(--white);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 14px;
    border-radius: var(--r);
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 16px rgba(0,0,128,.2);
    margin-top: auto;
}

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0,0,128,.28);
    }

.success-msg {
    display: none;
    background: var(--green-pale);
    border: 1.5px solid var(--green);
    border-radius: var(--r);
    padding: 16px 20px;
    margin-top: 16px;
    text-align: center;
}

    .success-msg.show {
        display: block;
        animation: fadeSlide .4s ease;
    }

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

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

.success-msg .tick {
    font-size: 28px;
    display: block;
    margin-bottom: 6px;
}

.success-msg h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--green-dark);
}

.success-msg p {
    font-size: 13px;
    color: var(--green-dark);
    margin-top: 4px;
    opacity: .85;
}

.whatsapp-sim {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: var(--white);
    border-radius: 6px;
    padding: 8px 14px;
    margin: 10px auto 0;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    width: fit-content;
}

/* ==================== 2. DOWNLOAD APP ==================== */
.booking-section {
    background: linear-gradient(135deg, #FF9933 0%, #E3F2FD 50%, #138808 100%);
}

.app-download-row {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 36px 40px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

    .app-download-row::before {
        content: '';
        position: absolute;
        top: -60px;
        right: -60px;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background: rgba(255,153,51,0.08);
        pointer-events: none;
    }

    .app-download-row::after {
        content: '';
        position: absolute;
        bottom: -40px;
        left: 30%;
        width: 160px;
        height: 160px;
        border-radius: 50%;
        background: rgba(19,136,8,0.06);
        pointer-events: none;
    }

/* Phone mockup */
.app-phone-mockup {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.phone-frame {
    width: 140px;
    background: var(--white);
    border-radius: 24px;
    padding: 10px 8px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.35), 0 0 0 2px rgba(255,255,255,0.15);
    position: relative;
}

    .phone-frame::before {
        content: '';
        display: block;
        width: 40px;
        height: 5px;
        background: #e0e0e0;
        border-radius: 3px;
        margin: 0 auto 8px;
    }

.phone-screen {
    background: #f5f7ff;
    border-radius: 16px;
    overflow: hidden;
    min-height: 200px;
}

.phone-statusbar {
    background: var(--navy);
    height: 8px;
}

.phone-app-ui {
    padding: 8px;
}

.phone-ui-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.phone-ui-logo {
    font-family: 'Rajdhani', sans-serif;
    font-size: 9px;
    font-weight: 700;
    color: var(--navy);
}

.phone-ui-bell {
    color: var(--saffron);
    font-size: 9px;
}

.phone-ui-card {
    background: var(--navy);
    border-radius: 8px;
    padding: 8px;
    margin-bottom: 8px;
}

.phone-ui-label {
    font-size: 7px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.phone-ui-route {
    font-size: 8px;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 4px;
}

    .phone-ui-route i {
        color: var(--saffron);
        font-size: 7px;
    }

.phone-ui-status {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 7px;
    color: #4caf50;
    font-weight: 600;
}

.phone-ui-dot {
    width: 5px;
    height: 5px;
    background: #4caf50;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

.phone-ui-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    margin-bottom: 6px;
}

.phone-ui-tile {
    background: var(--white);
    border-radius: 6px;
    padding: 6px 4px;
    text-align: center;
    font-size: 7px;
    color: var(--navy);
    font-weight: 600;
    box-shadow: 0 1px 4px rgba(0,0,128,.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

    .phone-ui-tile i {
        font-size: 10px;
        color: var(--saffron);
    }

.phone-ui-banner {
    background: linear-gradient(90deg, var(--saffron), var(--saffron-dark));
    border-radius: 6px;
    padding: 5px 6px;
    font-size: 7px;
    color: var(--white);
    font-weight: 700;
    text-align: center;
}

.phone-glow {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 20px;
    background: rgba(255,153,51,0.25);
    border-radius: 50%;
    filter: blur(8px);
}

/* Center Info */
.app-dl-center {
    flex: 1;
    min-width: 200px;
    z-index: 2;
}

.app-dl-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,153,51,0.15);
    border: 1px solid rgba(255,153,51,0.3);
    color: var(--saffron);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.app-dl-sub {
    font-size: 13px;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.5;
}

.app-dl-features-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 20px;
}

.app-feat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--navy);
    font-weight: 500;
}

    .app-feat-item i {
        width: 26px;
        height: 26px;
        background: rgba(255,153,51,0.18);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--saffron);
        font-size: 12px;
        flex-shrink: 0;
    }

.app-dl-btns-new {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.app-dl-btn-new {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: var(--r);
    cursor: pointer;
    transition: all .22s;
    border: 1.5px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
}

    .app-dl-btn-new:hover {
        background: rgba(255,255,255,0.2);
        border-color: rgba(255,255,255,0.6);
        transform: translateY(-2px);
    }

.android-btn {
    border-color: rgba(76,175,80,0.5);
}

.ios-btn {
    border-color: var(--navy);
}

.app-store-icon {
    font-size: 22px;
    color: var(--navy);
    flex-shrink: 0;
}

.android-btn .app-store-icon {
    color: #78c14a;
}

.app-dl-btn-new.android-btn .app-dl-btn-text small,
.app-dl-btn-new.android-btn .app-dl-btn-text strong {
    color: var(--green);
}

.app-dl-btn-new .app-dl-btn-text small {
    display: block;
    font-size: 9px;
    color: var(--navy);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.app-dl-btn-new .app-dl-btn-text strong {
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
}

.android-btn:hover {
    border-color: var(--green);
    background: var(--green);
}

.ios-btn:hover {
    border-color: var(--navy);
    background: var(--navy);
}

    .android-btn:hover .app-store-icon,
    .android-btn:hover .app-dl-btn-text small,
    .android-btn:hover .app-dl-btn-text strong,
    .ios-btn:hover .app-store-icon,
    .ios-btn:hover .app-dl-btn-text small,
    .ios-btn:hover .app-dl-btn-text strong {
        color: var(--white);
    }

.app-dl-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-stars {
    color: var(--saffron);
    font-size: 13px;
    letter-spacing: 1px;
}

.app-dl-rating span {
    font-size: 12px;
    color: var(--navy);
}

/* QR section */
.app-dl-qr-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    z-index: 2;
}

.app-qr-box {
    width: 110px;
    height: 110px;
    background: var(--navy);
    border: 2px solid rgba(255,153,51,0.4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.qr-svg {
    width: 100%;
    height: 100%;
}

.app-qr-label {
    font-size: 11px;
    color: var(--navy);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

    .app-qr-label i {
        color: var(--saffron);
    }

.app-qr-sub {
    font-size: 10px;
    color: var(--navy);
}

/* ==================== 3. VEHICLES ==================== */
.vehicles-section {
    background: var(--white);
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

.vehicle-card {
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
    background: var(--white);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .vehicle-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

.vehicle-card-img {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

    .vehicle-card-img img {
        max-width: 200px;
    }

.vc-suv .vehicle-card-img {
    background: linear-gradient(135deg, var(--saffron-pale), var(--saffron-mid));
}

.vc-muv .vehicle-card-img {
    background: linear-gradient(135deg, var(--green-pale), var(--green-mid));
}

.vc-sedan .vehicle-card-img {
    background: linear-gradient(135deg, var(--navy-light), #c5cae9);
}

.vc-hatch .vehicle-card-img {
    background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
    border-bottom: 1px solid var(--border);
}

.vehicle-card.vc-suv:hover img {
    filter: invert(48%) sepia(93%) saturate(600%) hue-rotate(350deg) brightness(100%) contrast(100%);
}

.vehicle-card.vc-muv:hover img {
    filter: invert(48%) sepia(93%) saturate(600%) hue-rotate(90deg) brightness(100%) contrast(100%);
}

.vehicle-card.vc-sedan:hover img {
    filter: invert(48%) sepia(93%) saturate(600%) hue-rotate(200deg) brightness(100%) contrast(100%);
}

.vehicle-card.vc-hatch:hover img {
    filter: grayscale(100%) brightness(80%);
}

.vc-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 2px;
}

.vc-tag-s {
    background: var(--saffron);
    color: var(--white);
}

.vc-tag-g {
    background: var(--green);
    color: var(--white);
}

.vc-tag-n {
    background: var(--navy);
    color: var(--white);
}

.vc-tag-w {
    background: var(--gray-700);
    color: var(--white);
}

.vehicle-card-body {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

    .vehicle-card-body h4 {
        font-size: 18px;
        font-weight: 700;
        color: var(--text);
        margin-bottom: 6px;
    }

    .vehicle-card-body p {
        font-size: 13px;
        color: var(--text-muted);
        line-height: 1.55;
        margin-bottom: 14px;
    }

.vc-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.vc-chip {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--gray-500);
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 3px;
    padding: 3px 8px;
}

.vc-features {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 14px;
}

.vc-feature-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    color: var(--text-muted);
}

    .vc-feature-item .fa-check-circle {
        color: var(--green);
        font-size: 12px;
        flex-shrink: 0;
    }

.vc-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: auto;
    margin-bottom: 14px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
}

.vc-from {
    font-size: 11px;
    color: var(--text-muted);
}

.vc-price {
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
}

    .vc-price small {
        font-size: 12px;
        font-weight: 400;
        color: var(--text-muted);
    }

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px;
    color: var(--navy);
    border: 1.5px solid var(--navy);
    padding: 8px 18px;
    border-radius: var(--r);
    cursor: pointer;
    background: transparent;
    transition: all .2s;
}

    .explore-btn:hover {
        background: var(--navy);
        color: var(--white);
    }

.vc-btn-hatch {
    border-color: var(--gray-700);
    color: var(--gray-700);
}

    .vc-btn-hatch:hover {
        background: var(--gray-700);
        color: var(--white);
    }

.vc-btn-muv {
    border-color: var(--green);
    color: var(--green);
}

    .vc-btn-muv:hover {
        background: var(--green);
        color: var(--white);
    }

/* ==================== 4. SEARCH / FIND A CAR ==================== */
.search-section {
    background: var(--navy-light);
}

.search-wrap {
    display: flex;
    gap: 32px;
    align-items: stretch;
}

.filter-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px 36px;
    box-shadow: var(--shadow-md);
    flex: 2;
}

.filter-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: end;
}

    .filter-row > div:last-child {
        grid-column: 1 / -1;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 2rem;
    }

.filter-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-700);
    letter-spacing: .8px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.member-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.member-pill {
    padding: 9px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    cursor: pointer;
    background: var(--off-white);
    transition: all .2s;
    white-space: nowrap;
    font-family: 'Noto Sans', sans-serif;
}

    .member-pill.active,
    .member-pill:hover {
        border-color: var(--navy);
        background: var(--navy);
        color: #fff;
    }

.search-car-btn {
    background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 100%);
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: var(--r);
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 16px rgba(255,153,51,.3);
}

    .search-car-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(255,153,51,.4);
    }

.car-scroll-panel {
    flex: 1;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.car-slide {
    text-align: center;
}

    .car-slide img {
        max-width: 350px;
        margin: auto;
    }

/* ==================== 5. CITIES ==================== */
.cities-section {
    background: linear-gradient(135deg, #FF9933 0%, #E3F2FD 50%, #138808 100%);
}

    .cities-section .section-hd .label-tag {
        background: rgba(255, 255, 255, .1);
        color: var(--navy);
        border-color: var(--navy);
    }

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.city-card {
    background: var(--white);
    border: 2px solid transparent;
    border-radius: var(--r-lg);
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    transition: all .25s;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

    .city-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(to right, var(--saffron), var(--navy), var(--green));
        transform: scaleX(0);
        transition: transform .3s;
        transform-origin: left;
    }

    .city-card:hover {
        border-color: var(--saffron);
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

        .city-card:hover::after,
        .city-card.selected::after {
            transform: scaleX(1);
        }

    .city-card.selected {
        border-color: var(--saffron);
        box-shadow: 0 0 0 3px rgba(255,153,51,.18);
    }

.city-icon {
    font-size: 38px;
    margin-bottom: 12px;
    display: block;
}

    .city-icon img {
        max-width: 325px;
    }

.city-card h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.city-card p {
    font-size: 12px;
    color: var(--text-muted);
}

.city-count {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--saffron);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 2px;
    margin-top: 10px;
}

.city-other {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.city-confirm-btn {
    font-size: 12px;
    padding: 7px 16px;
}

/* ==================== 6. PROCESS STEPS ==================== */
.steps-section {
    background: var(--white);
    border-top: 1px solid var(--border);
}

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    position: relative;
}

.step-item {
    padding: 0;
    position: relative;
}

.step-content {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px 20px 24px;
    text-align: left;
    width: 100%;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .25s, border-color .25s, transform .25s;
    position: relative;
    min-height: 230px;
    display: flex;
    flex-direction: column;
}

    .step-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        border-radius: var(--r-lg) var(--r-lg) 0 0;
    }

.step-item:nth-child(1) .step-content::before {
    background: var(--saffron);
}

.step-item:nth-child(2) .step-content::before {
    background: var(--navy);
}

.step-item:nth-child(3) .step-content::before {
    background: var(--green);
}

.step-item:nth-child(4) .step-content::before {
    background: var(--saffron-dark);
}

.step-item:hover .step-content {
    box-shadow: var(--shadow-md);
    border-color: transparent;
    transform: translateY(-4px);
}

.step-num-badge {
    position: absolute;
    top: -1px;
    right: 16px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    opacity: 0.06;
    color: var(--text);
    pointer-events: none;
    user-select: none;
}

.step-fa-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.si-1 {
    background: var(--saffron-pale);
    color: var(--saffron-dark);
    border: 2px solid var(--saffron-mid);
}

.si-2 {
    background: var(--navy-light);
    color: var(--navy);
    border: 2px solid #c5cae9;
}

.si-3 {
    background: var(--green-pale);
    color: var(--green-dark);
    border: 2px solid var(--green-mid);
}

.si-4 {
    background: #fff3e0;
    color: #e65100;
    border: 2px solid #ffe0b2;
}

.step-tag {
    display: inline-block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 2px;
    margin-bottom: 8px;
}

.st-1 {
    background: var(--saffron-pale);
    color: var(--saffron-dark);
}

.st-2 {
    background: var(--navy-light);
    color: var(--navy);
}

.st-3 {
    background: var(--green-pale);
    color: var(--green-dark);
}

.st-4 {
    background: #fff3e0;
    color: #B85C00;
}

.step-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    text-align: left;
}

.step-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    text-align: left;
    flex: 1;
}

.step-arrow-fa {
    position: absolute;
    right: -33px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    border: none;
}

.sa-1 {
    background: var(--saffron);
    color: var(--white);
}

.sa-2 {
    background: var(--navy);
    color: var(--white);
}

.sa-3 {
    background: var(--green);
    color: var(--white);
}

/* ==================== 7. TESTIMONIALS ==================== */
.testi-section {
    background: var(--navy-light);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testi-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: transform .25s, box-shadow .25s;
    position: relative;
}

    .testi-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-md);
    }

.testi-stripe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    display: flex;
}

    .testi-stripe span {
        flex: 1;
    }

.ts-s span:nth-child(1) {
    background: var(--saffron);
}

.ts-s span:nth-child(2) {
    background: var(--navy);
}

.ts-s span:nth-child(3) {
    background: var(--green);
}

.ts-g span:nth-child(1) {
    background: var(--green);
}

.ts-g span:nth-child(2) {
    background: var(--navy);
}

.ts-g span:nth-child(3) {
    background: var(--saffron);
}

.ts-n span:nth-child(1) {
    background: var(--navy);
}

.ts-n span:nth-child(2) {
    background: var(--saffron);
}

.ts-n span:nth-child(3) {
    background: var(--green);
}

.testi-stars {
    color: #FFB800;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 12px;
    margin-top: 10px;
}

.testi-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testi-auth {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testi-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--white);
    flex-shrink: 0;
}

.av-s {
    background: var(--saffron);
}

.av-g {
    background: var(--green);
}

.av-n {
    background: var(--navy);
}

.testi-auth strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.testi-auth span {
    font-size: 11px;
    color: var(--text-muted);
}

/* ==================== 8. FOOTER ==================== */
.main-footer {
    background: #0b0f14;
    color: #cfd8dc;
    font-family: 'Segoe UI', sans-serif;
}

.footer-top {
    background: #000;
    padding: 12px 0;
    border-top: 3px solid red;
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--white);
}

    .brand img {
        height: 30px;
    }

    .brand span {
        font-size: 20px;
        font-weight: 500;
        line-height: 1.4;
        color: var(--white);
    }

.social-icons i {
    color: #111;
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: 10px;
    cursor: pointer;
    transition: 0.3s;
    background: var(--white);
}

    .social-icons i:hover {
        background: #9E0000;
        color: var(--white);
        animation: elementor-animation-push .3s linear 1;
    }

@keyframes elementor-animation-push {
    50% {
        transform: scale(.8);
    }

    100% {
        transform: scale(1);
    }
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 50px 0;
}

.footer-col h5 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
}

.footer-col p {
    font-size: 16px;
    line-height: 1.6;
    color: #8E94A5;
}

.footer-logo {
    height: 35px;
    margin-bottom: 10px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

    .footer-col ul li {
        margin-bottom: 8px;
        font-size: 15px;
        cursor: pointer;
        color: #8E94A5;
    }

        .footer-col ul li:hover {
            color: var(--white);
        }

.footer-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 14px;
}

    .footer-contact i {
        color: #9E0000;
    }

.address {
    font-size: 15px;
    margin-bottom: 8px;
    cursor: pointer;
    color: #8E94A5;
    font-style: normal;
}

.footer-bottom {
    text-align: center;
    padding: 15px;
    border-top: 1px solid #222;
    font-size: 14px;
    color: #8E94A5;
}

/* ==================== FADE-UP ANIMATION ==================== */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

.d1 {
    transition-delay: .1s;
}

.d2 {
    transition-delay: .2s;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1100px) {
    .vehicle-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .app-download-row {
        gap: 24px;
        padding: 28px;
    }

    .app-dl-features-new {
        grid-template-columns: 1fr;
    }

    .app-dl-qr-wrap {
        display: none;
    }

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

        .notice-row .nr-item:last-child {
            display: none;
        }
}

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

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

    .steps-timeline {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

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

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .btn-saffron, .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .notice-row {
        grid-template-columns: 1fr;
        border-radius: var(--r-lg);
    }

        .notice-row .nr-item:last-child {
            display: flex;
        }

    .nr-item {
        border-top: 1px solid var(--border);
    }

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

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

    .steps-timeline {
        grid-template-columns: 1fr;
    }

    .step-arrow-fa {
        display: none;
    }

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

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

    .app-download-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px;
    }

    .app-phone-mockup {
        display: none;
    }

    .app-dl-btns-new {
        width: 100%;
    }

    .app-dl-btn-new {
        flex: 1;
    }

    .app-dl-features-new {
        grid-template-columns: 1fr 1fr;
    }

    .search-wrap {
        flex-direction: column;
    }

    .car-scroll-panel {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .vehicle-grid {
        grid-template-columns: 1fr;
    }

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

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

    .footer-top .brand{
        flex-direction:column;
    }

    .brand span{
        text-align:center;
    }

    .social-icons{
        margin-top:10px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .car-slide img{
        max-width:250px;
    }

    .city-icon img{
        max-width:250px;
    }

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

    .app-dl-btns-new {
        flex-direction: column;
    }

    .app-download-row {
        padding: 20px;
    }

    .app-dl-features-new {
        grid-template-columns: 1fr;
    }
}
