/* ============================================================
   FLEET EXPERIENCE — Dedicated Stylesheet
   Design philosophy: Cards must POP against #090a0c background.
   Uses elevated surfaces (#1c1f2a), strong borders, and glows.
   ============================================================ */

/* ─── BREADCRUMBS ─── */
.fleet-breadcrumbs {
    margin-top: 70px;
    padding: 14px 0;
    background: rgba(255, 255, 255, 0.025);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.82rem;
    color: var(--text-muted);
}
.fleet-breadcrumbs .container {
    display: flex;
    align-items: center;
    gap: 0;
}
.fleet-breadcrumbs a {
    color: var(--primary);
    transition: var(--transition-smooth);
}
.fleet-breadcrumbs a:hover { color: #fff; }
.fleet-breadcrumbs span { color: var(--text-main); }

/* ─── HERO ─── */
.fleet-hero-section {
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    background: radial-gradient(ellipse at 70% 50%, rgba(255, 122, 0, 0.06) 0%, transparent 65%),
                linear-gradient(180deg, rgba(255,122,0,0.03) 0%, transparent 100%);
}
.fleet-hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,122,0,0.04) 0%, transparent 60%);
    pointer-events: none;
}
.fleet-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.fleet-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.fleet-hero-content .section-tag { margin-bottom: 16px; }
.fleet-hero-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}
.fleet-hero-title span {
    background: linear-gradient(135deg, var(--primary), #ffb03a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: inherit !important;
}
.fleet-hero-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 500px;
}
/* Stats row: always 4 columns, never wraps */
.fleet-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, auto);
    align-items: center;
    gap: 0;
    width: fit-content;
    max-width: 100%;
}
.fleet-stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.fleet-stat-item:first-child { padding-left: 0; }
.fleet-stat-item:last-child  { border-right: none; }
.fleet-stat-item strong {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    white-space: nowrap;
}
.fleet-stat-item span {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-top: 5px;
    white-space: nowrap;
}
/* Hide the old separate divider elements */
.fleet-stat-divider { display: none; }
.fleet-hero-visual {
    display: flex;
    justify-content: center;
}
.fleet-hero-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 40px rgba(255,122,0,0.12);
    border: 1px solid rgba(255,122,0,0.18);
    max-width: 500px;
    width: 100%;
}
.fleet-hero-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}
.fleet-hero-img-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(9,10,12,0.88);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,122,0,0.25);
    color: #fff;
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    font-family: var(--font-heading);
}
.fleet-hero-img-badge svg { color: var(--primary); flex-shrink: 0; }

/* ─── VEHICLE FINDER / WIZARD ─── */
.fleet-finder-section {
    padding: 90px 0 80px;
    background: linear-gradient(180deg, rgba(28,31,42,0.6) 0%, transparent 100%);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

/* The finder card — MUST stand out from bg */
.finder-card {
    max-width: 860px;
    margin: 0 auto;
    background: #1c1f2a;              /* Clear elevated surface */
    border: 1px solid rgba(255, 122, 0, 0.3);
    border-radius: 20px;
    padding: 40px 44px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 0 30px rgba(255,122,0,0.07);
}

/* Progress bar */
.finder-progress-track {
    height: 3px;
    background: rgba(255,255,255,0.08);
    border-radius: 100px;
    margin-bottom: 36px;
    overflow: hidden;
}
.finder-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), #ffb03a);
    border-radius: 100px;
    transition: width 0.4s ease;
}

/* Step header */
.finder-step { display: none; }
.finder-step.active {
    display: block;
    animation: finderFadeIn 0.35s ease;
}
.finder-step-header { margin-bottom: 28px; }
.finder-step-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: 8px;
}
.finder-step-header h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/* Option buttons — HIGH contrast against #1c1f2a card */
.finder-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}
.finder-options-4 {
    grid-template-columns: repeat(2, 1fr);
}

.finder-opt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 22px 14px;
    background: #252836;
    border: 2px solid rgba(255,255,255,0.09);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
}
.finder-opt:hover {
    background: #2d3045;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255,122,0,0.18);
}
.finder-opt.selected {
    background: rgba(255,122,0,0.12);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255,122,0,0.15), 0 8px 24px rgba(255,122,0,0.15);
}
.finder-opt-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255,122,0,0.12);
    border: 1px solid rgba(255,122,0,0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    transition: all 0.25s ease;
}
.finder-opt:hover .finder-opt-icon,
.finder-opt.selected .finder-opt-icon {
    background: rgba(255,122,0,0.22);
    border-color: rgba(255,122,0,0.45);
}
.finder-opt-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    line-height: 1.2;
}
.finder-opt-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.3;
}
.finder-back-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* Recommendation result */
.finder-result {
    animation: finderFadeIn 0.4s ease;
}
.finder-result-inner {
    background: linear-gradient(135deg, rgba(255,122,0,0.1) 0%, rgba(28,31,42,0.9) 80%);
    border: 1px solid rgba(255,122,0,0.35);
    border-radius: 16px;
    padding: 36px;
    text-align: center;
}
.finder-result-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255,122,0,0.12);
    border: 1px solid rgba(255,122,0,0.25);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 16px;
}
.finder-result-inner h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}
.finder-result-inner p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 540px;
    margin: 0 auto 28px;
}
.finder-result-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ─── VEHICLE SHOWCASE ─── */
.fleet-showcase-section {
    padding: 90px 0 80px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 980px;
    margin: 0 auto;
}

/* Vehicle card — MUST be clearly distinct from page background */
.vehicle-exp-card {
    background: #1c1f2a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    scroll-margin-top: 110px;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.45);
}
.vehicle-exp-card:hover {
    border-color: rgba(255,122,0,0.45);
    box-shadow: 0 20px 50px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,122,0,0.25);
    transform: translateY(-5px);
}

/* Image zone */
.vcard-media {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #111318;
}
.vcard-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}
.vehicle-exp-card:hover .vcard-img {
    transform: scale(1.04);
}

/* Lens label pill */
.vcard-lens-label {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(9,10,12,0.82);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    z-index: 5;
    transition: all 0.2s ease;
}

/* Category badge */
.vcard-category {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    z-index: 5;
}
.vcard-category.cat-sedan  { background: rgba(99,179,237,0.2); color: #63b3ed; border: 1px solid rgba(99,179,237,0.3); }
.vcard-category.cat-suv    { background: rgba(72,187,120,0.2); color: #48bb78; border: 1px solid rgba(72,187,120,0.3); }
.vcard-category.cat-premium{ background: rgba(255,122,0,0.2);  color: var(--primary); border: 1px solid rgba(255,122,0,0.3); }
.vcard-category.cat-van    { background: rgba(183,148,244,0.2); color: #b794f4; border: 1px solid rgba(183,148,244,0.3); }

/* Lens switcher tabs */
.vcard-lens-tabs {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(9,10,12,0.92) 0%, transparent 100%);
    padding: 16px 12px 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    z-index: 5;
}
.vlens-btn {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.7);
    transition: all 0.2s ease;
    white-space: nowrap;
}
.vlens-btn:hover { background: rgba(255,255,255,0.14); color: #fff; }
.vlens-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #000;
    font-weight: 700;
}

/* Content area */
.vcard-content {
    padding: 16px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0;
}
.vcard-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 6px;
    gap: 10px;
    flex-wrap: nowrap;
}
.vcard-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}
.vcard-rate {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    white-space: nowrap;
    background: rgba(255,199,0,0.08);
    border: 1px solid rgba(255,199,0,0.18);
    padding: 2px 8px;
    border-radius: 6px;
    flex-shrink: 0;
}
.vcard-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 12px;
}

/* Meta pills row */
.vcard-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 12px;
    margin-top: 0px;
}
.vcard-meta-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}
.vcard-meta-label {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.35);
    font-weight: 600;
}
.vcard-meta-val {
    font-size: 0.8rem;
    font-weight: 700;
    color: #f3f4f6;
    line-height: 1.3;
}

/* Specs accordion */
.vcard-specs-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    color: rgba(255,255,255,0.8);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 0;
}
.vcard-specs-toggle:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,122,0,0.2);
    color: #fff;
}
.vcard-specs-toggle .sarrow {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}
.vcard-specs-toggle.open { border-color: rgba(255,122,0,0.2); }
.vcard-specs-toggle.open .sarrow { transform: rotate(180deg); }

.vcard-specs-drawer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s ease;
}
.vcard-specs-inner {
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.06);
    border-top: none;
    border-radius: 0 0 8px 8px;
}
.vcard-specs-inner p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    line-height: 1.5;
}
.vcard-specs-inner p strong { color: rgba(255,255,255,0.7); }
.specs-row-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.specs-row-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 0.77rem;
    padding: 2px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    gap: 8px;
}
.specs-row-list li:last-child { border-bottom: none; }
.specs-row-list li span:first-child { color: var(--text-muted); }
.specs-row-list li span:last-child { color: #fff; font-weight: 600; text-align: right; }

/* Card footer CTA */
.vcard-footer {
    margin-top: auto;
    padding-top: 12px;
}

.vehicle-exp-card .btn-whatsapp {
    padding: 10px 16px;
    font-size: 0.82rem;
    min-height: 42px;
}

.vcard-specs-wrapper { margin-bottom: 12px; }

/* ─── JOURNEY MATCH SECTION ─── */
.fleet-journey-section {
    padding: 90px 0 80px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    background: linear-gradient(180deg, transparent 0%, rgba(28,31,42,0.4) 100%);
}
.journey-match-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
}
.journey-match-card {
    background: #1c1f2a;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}
.journey-match-card:hover {
    border-color: rgba(255,122,0,0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}
.jm-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255,122,0,0.1);
    border: 1px solid rgba(255,122,0,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    margin-bottom: 18px;
}
.journey-match-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.journey-match-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}
.jm-vehicles {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
    padding-top: 6px;
}
.jm-vehicles span {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 9px;
    border-radius: 4px;
    background: rgba(255,122,0,0.1);
    border: 1px solid rgba(255,122,0,0.2);
    color: var(--primary);
}

/* ─── TRUST SECTION ─── */
.fleet-trust-section {
    padding: 90px 0 100px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.fleet-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: start;
}
.fleet-trust-card {
    background: #1c1f2a;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}
.fleet-trust-card:hover {
    border-color: rgba(255,122,0,0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}
.ftc-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255,122,0,0.1);
    border: 1px solid rgba(255,122,0,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    margin-bottom: 18px;
}
.fleet-trust-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.fleet-trust-card p {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ─── FUEL NOTICE ─── */
.fleet-fuel-notice {
    background: rgba(255,199,0,0.04);
    border-top: 1px solid rgba(255,199,0,0.1);
    border-bottom: 1px solid rgba(255,199,0,0.1);
    padding: 18px 0;
}
.fuel-notice-inner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 2px 0;
}
.fuel-notice-inner p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}
.fuel-notice-inner p strong { color: var(--accent-gold); }

/* ─── ANIMATIONS ─── */
@keyframes finderFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes resultSlideIn {
    from { opacity: 0; transform: scale(0.97); }
    to   { opacity: 1; transform: scale(1); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
    .journey-match-grid { grid-template-columns: repeat(2, 1fr); }
    .fleet-trust-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
    .fleet-hero-container { grid-template-columns: 1fr; gap: 40px; }
    .fleet-hero-title { font-size: 2.4rem; }
    .showcase-grid { grid-template-columns: 1fr; }
    .finder-options-4 { grid-template-columns: repeat(2, 1fr); }
    .finder-card { padding: 28px 24px; }
}

@media (max-width: 640px) {
    .fleet-hero-title { font-size: 2rem; }
    .finder-options { grid-template-columns: 1fr; }
    .finder-options-4 { grid-template-columns: 1fr; }
    .fleet-hero-stats { gap: 8px; }
    .fleet-stat-divider { display: none; }
    .fleet-stat-item { padding: 0 8px; }
    .journey-match-grid  { grid-template-columns: 1fr; }
    .fleet-trust-grid    { grid-template-columns: 1fr; }
    .finder-result-actions { flex-direction: column; }
    .finder-result-actions .btn { width: 100%; justify-content: center; }
    .vcard-meta { grid-template-columns: 1fr 1fr; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   MS CABS FLEET — MOBILE RESPONSIVE FIXES v2.0
   Applied: 2026-07-07
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── BUG-001: Fleet hero stats bar — 2×2 grid on mobile ── */
@media (max-width: 600px) {
    .fleet-hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        width: 100%;
        max-width: 100%;
    }
    .fleet-stat-item {
        padding: 12px 14px;
        border-right: 1px solid rgba(255,255,255,0.1);
        border-bottom: 1px solid rgba(255,255,255,0.1);
        align-items: flex-start;
    }
    .fleet-stat-item:first-child { padding-left: 14px; }
    .fleet-stat-item:nth-child(2) { border-right: none; }
    .fleet-stat-item:nth-child(3) { border-bottom: none; }
    .fleet-stat-item:last-child {
        border-right: none;
        border-bottom: none;
    }
    .fleet-stat-item strong {
        font-size: 1.3rem;
    }
    .fleet-stat-item span {
        font-size: 0.7rem;
    }
}

/* ── BUG-008: Lens tabs — 2×2 grid on mobile ── */
@media (max-width: 600px) {
    .vcard-lens-tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
        padding: 10px 10px 8px;
        position: static;
        background: rgba(9, 10, 12, 0.85);
    }
    .vlens-btn {
        width: 100%;
        text-align: center;
        font-size: 0.72rem;
        padding: 6px 8px;
        min-height: 34px;
    }
}

/* ── BUG-019: Fleet quiz result — reduce blank space below result card ── */
@media (max-width: 768px) {
    .quiz-result-section,
    .quiz-result-card,
    .quiz-result-wrap,
    .vehicle-quiz-result {
        margin-bottom: 10px !important;
        padding-bottom: 10px !important;
    }
    .quiz-section,
    .vehicle-quiz-section {
        padding-bottom: 20px !important;
    }
}

/* ── General fleet mobile ── */
@media (max-width: 480px) {
    .fleet-vehicle-card {
        border-radius: 12px;
    }
    .vcard-price-tag {
        font-size: 1.1rem;
    }
}
