/**
 * ============================================================
 * FILE: fleet.css
 * PROJECT: Rudra Holidays
 * ============================================================
 * Purpose:  Styles for the Coaches (fleet) page. Includes hero
 *           section, vehicle cards, spec pills, feature list,
 *           booking modal, and availability status badges.
 *
 * Used By:  html/fleet.html
 *
 * Depends On:
 *   theme.css       → dark mode overrides
 *   responsive.css  → media queries
 *
 * Contains:
 *   - CSS variables (:root) — same tokens as style.css
 *   - Global reset and base elements
 *   - Header & navigation
 *   - Fleet hero section (two-column layout)
 *   - Vehicle image wrap (tilt card effect)
 *   - Spec pills grid
 *   - Feature list
 *   - Booking modal overlay (#bookingModal)
 *   - Availability status badges (neutral/checking/available/booked)
 *   - CTA section
 *   - Footer strip
 * ============================================================
 */
:root {
    --primary-color: #b91c1c;
    --primary-hover: #991b1b;
    --primary-dark: #7f1d1d;
    --accent-color: #f59e0b;

    --bg-main: #faf7f0;
    --bg-alt: #f5efe3;
    --bg-card: #ffffff;

    --text-color: #1f2937;
    --text-muted: #6b7280;
    --text-light: #ffffff;

    --border-color: rgba(127, 29, 29, 0.12);
    --border-strong: rgba(127, 29, 29, 0.2);

    --shadow-sm: 0 6px 18px rgba(31, 41, 55, 0.06);
    --shadow-md: 0 14px 34px rgba(31, 41, 55, 0.10);
    --shadow-lg: 0 24px 60px rgba(31, 41, 55, 0.14);

    --glass-bg: rgba(255, 255, 255, 0.72);
    --glass-border: rgba(127, 29, 29, 0.12);

    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background:
        radial-gradient(circle at top left, rgba(185, 28, 28, 0.05), transparent 26%),
        linear-gradient(180deg, #fffdf8 0%, var(--bg-main) 100%);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

body.modal-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input {
    font: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1400px, calc(100% - clamp(24px, 4vw, 32px)));
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    outline: none;
    cursor: pointer;
    font-weight: 600;
    padding: 13px 22px;
    border-radius: 14px;
    transition: 0.3s ease;
    font-size: 0.95rem;
    white-space: nowrap;
}

.btn i {
    font-size: 1.15rem;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(3px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    box-shadow: 0 10px 28px rgba(185, 28, 28, 0.18);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(185, 28, 28, 0.24);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.72);
    color: var(--primary-dark);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: #fff;
    border-color: rgba(185, 28, 28, 0.18);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    padding: 16px 0;
    background: rgba(250, 247, 240, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(127, 29, 29, 0.08);
    box-shadow: 0 8px 22px rgba(31, 41, 55, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.logo img {
    height: 72px;
    width: auto;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-list a {
    color: var(--text-color);
    font-weight: 600;
    position: relative;
    transition: 0.3s ease;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-color);
}

.nav-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary-dark);
    font-size: 1.7rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.fleet-hero {
    padding: 110px 0 30px;
    position: relative;
    overflow: hidden;
}

.fleet-hero-grid {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.fleet-hero-copy h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    margin: 14px 0 16px;
    color: #1f2937;
}

.subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-size: 0.82rem;
    letter-spacing: 2.8px;
    font-weight: 800;
    text-transform: uppercase;
}

.subtitle::before,
.subtitle::after {
    content: "";
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 999px;
}

.hero-text {
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 1.02rem;
    max-width: 620px;
    margin: 0 auto;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 24px;
}

.hero-points {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(127, 29, 29, 0.10);
    color: var(--primary-dark);
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.fleet-hero-visual {
    position: relative;
    min-height: 420px;
    display: grid;
    place-items: center;
}

.visual-card {
    width: 100%;
    min-height: 420px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top, rgba(185, 28, 28, 0.08), transparent 42%),
        linear-gradient(180deg, #ffffff 0%, #fff8f1 100%);
    border: 1px solid rgba(127, 29, 29, 0.10);
    box-shadow: var(--shadow-lg);
    display: grid;
    place-items: center;
    padding: 26px;
}

.hero-illustration {
    width: 100%;
    max-width: 640px;
    height: auto;
    object-fit: contain;
}

.visual-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(127, 29, 29, 0.12);
    box-shadow: var(--shadow-sm);
    color: var(--primary-dark);
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.visual-badge i {
    color: var(--primary-color);
    font-size: 1.05rem;
}

.badge-top {
    top: 24px;
    right: 14px;
}

.badge-bottom {
    left: 10px;
    bottom: 22px;
}

.fleet-section,
.cta-section {
    padding: 22px 0 42px;
}

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px;
}

.section-head h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.05;
    margin: 14px 0 12px;
    color: #1f2937;
}

.section-head p:last-child {
    color: var(--text-muted);
    line-height: 1.75;
}

.fleet-card {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 0;
    border-radius: 28px;
    overflow: hidden;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    margin-bottom: 30px;
    transform-style: preserve-3d;
    transition: transform 0.22s ease, box-shadow 0.35s ease;
}

.fleet-card:hover {
    box-shadow: 0 24px 70px rgba(31, 41, 55, 0.16);
}

.reverse {
    grid-template-columns: 0.95fr 1.05fr;
}

.reverse .fleet-image-wrap {
    order: 2;
}

.reverse .fleet-details {
    order: 1;
}

.fleet-image-wrap {
    position: relative;
    min-height: 440px;
    background:
        radial-gradient(circle at center, rgba(185, 28, 28, 0.10), rgba(0,0,0,0) 54%),
        linear-gradient(180deg, #fff8f4 0%, #f7ede5 100%);
    overflow: hidden;
    display: grid;
    place-items: center;
    padding: 24px;
}

.image-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(185, 28, 28, 0.12);
    filter: blur(90px);
    z-index: 0;
}

.fleet-image {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 420px;
    object-fit: contain;
    filter: drop-shadow(0 18px 35px rgba(0,0,0,0.16));
    animation: floatVehicle 6s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.fleet-card:hover .fleet-image {
    transform: scale(1.04);
}

@keyframes floatVehicle {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-14px); }
}

.image-label {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(127, 29, 29, 0.90);
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.image-label span {
    font-size: 0.85rem;
    font-weight: 600;
}

.fleet-details {
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vehicle-tag {
    color: var(--primary-color);
    font-weight: 800;
    letter-spacing: 2.5px;
    font-size: 0.8rem;
    margin-bottom: 12px;
}

.fleet-details h3 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 2.8vw, 3rem);
    margin-bottom: 12px;
    line-height: 1;
    color: #111827;
}

.vehicle-description {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}

.spec-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

.spec-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(127, 29, 29, 0.10);
    color: #111827;
    font-weight: 600;
    transition: 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.spec-pill i {
    color: var(--primary-color);
    font-size: 1.05rem;
}

.spec-pill:hover {
    transform: translateY(-3px);
    background: rgba(185, 28, 28, 0.07);
    border-color: rgba(185, 28, 28, 0.20);
}

.feature-list {
    display: grid;
    gap: 12px;
    margin-bottom: 26px;
    color: var(--text-color);
}

.feature-list div {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.5;
    color: var(--text-color);
}

.feature-list i {
    color: var(--primary-color);
    font-size: 1.08rem;
    flex-shrink: 0;
}

.card-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-section {
    padding: 30px 0 30px;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 32px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(185, 28, 28, 0.12), transparent 35%),
        linear-gradient(180deg, #fff 0%, #fffaf4 100%);
    border: 1px solid rgba(127, 29, 29, 0.10);
    box-shadow: var(--shadow-lg);
}

.cta-inner h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.05;
    margin: 10px 0;
    color: #111827;
}

.cta-inner p:last-child {
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 560px;
}

.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer {
    background: #fffaf4;
    color: var(--text-color);
    margin-top: 18px;
}

.footer-content {
    padding: 28px 0 20px;
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 0.9fr;
    gap: 28px;
}

.footer-brand p {
    margin-top: 14px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 520px;
}

.footer-logo img {
    height: 72px;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #111827;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 1.05rem;
}

.footer-bottom {
    background: var(--primary-dark);
    color: #fff;
    padding: 18px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-bottom p {
    font-size: 0.98rem;
    letter-spacing: 0.2px;
}

.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particles span {
    position: absolute;
    border-radius: 50%;
    background: rgba(185, 28, 28, 0.50);
    box-shadow: 0 0 18px rgba(185, 28, 28, 0.24);
    animation: floatParticle linear infinite;
    opacity: 0.75;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.75;
    }
    50% {
        opacity: 0.45;
    }
    100% {
        transform: translateY(-120px) translateX(30px) scale(0.9);
        opacity: 0;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

.tilt-card {
    --rx: 0deg;
    --ry: 0deg;
    transform: perspective(1200px) rotateX(var(--rx)) rotateY(var(--ry));
    will-change: transform;
}

.booking-modal {
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: none;
    align-items: flex-start;
    justify-content: center;
    z-index: 9999;
    padding: 40px 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-modal.show {
    display: flex;
    opacity: 1;
}

.booking-panel {
    position: relative;
    width: min(820px, 100%);
    margin: auto;
    border-radius: 28px;
    background:
        radial-gradient(circle at top, rgba(185, 28, 28, 0.10), transparent 40%),
        rgba(255,255,255,0.98);
    border: 1px solid rgba(127, 29, 29, 0.10);
    box-shadow: 0 30px 80px rgba(0,0,0,0.30);
    padding: 28px;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.booking-modal.show .booking-panel {
    transform: scale(1) translateY(0);
}

.close-modal {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(185, 28, 28, 0.08);
    color: var(--primary-dark);
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    transition: background 0.3s ease;
}

.close-modal:hover {
    background: rgba(185, 28, 28, 0.14);
}

.booking-head {
    margin-bottom: 18px;
}

.booking-head h3 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 10px;
    color: #111827;
}

.booking-head p:last-child {
    color: var(--text-muted);
    line-height: 1.7;
}

.availability-row {
    margin: 18px 0 22px;
}

.availability-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid rgba(127,255,255,0.08);
}

.availability-status.neutral {
    background: rgba(255,255,255,0.82);
    color: var(--text-color);
    border-color: rgba(127, 29, 29, 0.10);
}

.availability-status.available {
    background: rgba(46, 204, 113, 0.10);
    color: #15803d;
    border-color: rgba(46, 204, 113, 0.20);
}

.availability-status.booked {
    background: rgba(231, 76, 60, 0.12);
    color: #b42318;
    border-color: rgba(231, 76, 60, 0.22);
}

.booking-form {
    display: grid;
    gap: 18px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-group {
    display: grid;
    gap: 10px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 700;
    color: #111827;
    font-size: 0.95rem;
}

.input-wrap,
.destination-add {
    width: 100%;
}

.input-wrap input,
.input-wrap textarea,
.destination-add input {
    width: 100%;
    border: 1px solid rgba(127, 29, 29, 0.12);
    background: #fff;
    color: #111827;
    border-radius: 16px;
    padding: 14px 16px;
    outline: none;
    transition: 0.3s ease;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
    font-family: inherit;
    resize: vertical;
}

.input-wrap input:focus,
.input-wrap textarea:focus,
.destination-add input:focus {
    border-color: rgba(185, 28, 28, 0.40);
    box-shadow: 0 0 0 4px rgba(185, 28, 28, 0.08);
}

.destination-add {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}

.add-btn {
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    padding: 0 18px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
}

.add-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(185, 28, 28, 0.18);
}

.destination-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(185, 28, 28, 0.07);
    border: 1px solid rgba(185, 28, 28, 0.12);
    color: var(--primary-dark);
}

.chip button {
    border: none;
    background: transparent;
    color: var(--primary-dark);
    cursor: pointer;
    display: inline-grid;
    place-items: center;
    font-size: 1rem;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 6px;
}

@media (max-width: 1100px) {
    .fleet-hero-grid,
    .fleet-card,
    .reverse {
        grid-template-columns: 1fr;
    }

    .reverse .fleet-image-wrap,
    .reverse .fleet-details {
        order: initial;
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .badge-top {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .nav-list {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .btn-nav {
        display: none;
    }

    .nav-list.open {
        display: flex;
        position: fixed;
        top: 96px;
        left: 16px;
        right: 16px;
        flex-direction: column;
        gap: 0;
        background: rgba(255, 255, 255, 0.97);
        border: 1px solid rgba(127, 29, 29, 0.10);
        border-radius: 22px;
        padding: 12px;
        box-shadow: var(--shadow-lg);
        z-index: 250;
    }

    .nav-list.open li {
        width: 100%;
    }

    .nav-list.open a {
        display: block;
        padding: 14px;
        border-radius: 14px;
    }

    .nav-list.open a:hover,
    .nav-list.open a.active {
        background: rgba(185, 28, 28, 0.08);
    }

    .nav-list.open a::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        width: min(1400px, calc(100% - 20px));
    }

    .fleet-hero {
        padding-top: 118px;
    }

    .fleet-hero-visual,
    .visual-card {
        min-height: 280px;
    }

    .fleet-details,
    .cta-inner,
    .booking-panel {
        padding: 22px;
    }

    .hero-actions,
    .card-actions,
    .cta-actions,
    .modal-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn,
    .card-actions .btn,
    .cta-actions .btn,
    .modal-actions .btn {
        width: 100%;
    }

    .spec-pill {
        width: 100%;
        justify-content: flex-start;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .destination-add {
        grid-template-columns: 1fr;
    }

    .badge-top,
    .badge-bottom {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
        margin-top: 12px;
        display: inline-flex;
    }

    .fleet-hero-visual {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        justify-content: flex-start;
        min-height: auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        padding: 16px 0;
    }
}

@media (max-width: 480px) {
    .fleet-hero {
        padding-top: 100px;
    }

    .fleet-hero-visual,
    .visual-card {
        min-height: 220px;
    }

    .fleet-image-wrap {
        min-height: 260px;
        padding: 16px;
    }

    .fleet-details {
        padding: 18px;
    }

    .cta-inner {
        padding: 18px;
        border-radius: 22px;
    }

    .booking-panel {
        padding: 18px;
        border-radius: 22px;
    }

    .hero-points span {
        padding: 8px 12px;
        font-size: 0.84rem;
    }
}/* ------------------------------------------
   VEHICLE SLIDER (DYNAMIC)
   ------------------------------------------ */
.vehicle-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 300px;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(0,0,0,0.05);
    z-index: 1;
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.slider-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    color: var(--primary-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.slider-btn:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

.slider-empty {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: var(--text-muted);
    font-size: 1.1rem;
    background: rgba(0,0,0,0.02);
}
