/* ══════════════════════════════════════════════════════
   ELSASS LOC — PREMIUM DARK 2026 — Rouge / Dynamique
   ══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');

:root {
    --el-bg: #0a0a0a;
    --el-surface: #141414;
    --el-surface-2: #1e1e1e;
    --el-primary: #D90134;
    --el-accent: #D90134;
    --el-accent-soft: rgba(217,1,52,.1);
    --el-accent-glow: rgba(217,1,52,.25);
    --el-accent-light: #ff1a4a;
    --el-green: #D90134;
    --el-green-soft: rgba(217,1,52,.1);
    --el-white: #ffffff;
    --el-text: #d1d1d1;
    --el-text-muted: #9a9a9a;
    --el-text-dim: #666666;
    --el-gradient: linear-gradient(135deg, #D90134, #ff1a4a);
    --el-green-gradient: linear-gradient(135deg, #D90134, #ff1a4a);
    --radius: 20px;
    --radius-sm: 12px;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, system-ui, sans-serif;
    --shadow-md: 0 8px 32px rgba(0,0,0,.4);
    --shadow-lg: 0 24px 64px rgba(0,0,0,.5);
    --shadow-glow: 0 0 40px rgba(217,1,52,.15);
    --ease: cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border: 0; outline: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--el-bg); color: var(--el-text); line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: var(--el-accent); text-decoration: none; transition: color .3s var(--ease); }
a:hover { color: #ff1a4a; }
img { max-width: 100%; height: auto; }
.accent { color: var(--el-accent); }

.btn-primary {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    padding: .9rem 2.25rem; border-radius: 60px;
    background: var(--el-gradient); color: #fff;
    font-weight: 700; font-size: .95rem; cursor: pointer;
    transition: all .4s var(--ease); box-shadow: 0 4px 24px var(--el-accent-glow);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 48px rgba(217,1,52,.4); color: #fff; }
.btn-outline {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .85rem 2rem; border-radius: 60px;
    border: 1.5px solid rgba(255,255,255,.2) !important; background: rgba(255,255,255,.05);
    backdrop-filter: blur(10px); color: #fff; font-weight: 600; font-size: .9rem;
    cursor: pointer; transition: all .4s var(--ease);
}
.btn-outline:hover { background: rgba(255,255,255,.12); color: #fff; }

/* ══ NAVBAR ══ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(10,10,10,.85); backdrop-filter: blur(20px);
    padding: 0 2rem; height: 72px;
}
.navbar-content {
    max-width: 1400px; margin: 0 auto; height: 100%;
    display: flex; align-items: center; justify-content: space-between;
}
.brand-logo { height: 50px; filter: drop-shadow(0 0 10px rgba(217,1,52,.2)); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
    color: var(--el-text-muted); font-size: .8rem; font-weight: 500;
    letter-spacing: .1em; text-transform: uppercase;
    transition: color .3s; position: relative;
}
.nav-links a:hover { color: #fff; }
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--el-accent);
    transition: width .3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.btn-call {
    padding: .5rem 1.2rem; border-radius: 60px;
    background: var(--el-accent-soft); color: var(--el-accent);
    font-weight: 700; font-size: .85rem; transition: all .3s var(--ease);
}
.btn-call:hover { background: var(--el-accent); color: #fff; }

/* ══ HERO ══ */
.hero {
    position: relative; height: 100vh; min-height: 600px;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; filter: brightness(.65) contrast(1.05);
}
.hero::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, transparent, rgba(10,10,10,.7) 70%),
                linear-gradient(180deg, transparent 60%, var(--el-bg) 100%);
    pointer-events: none;
}
.hero-overlay {
    position: relative; z-index: 2; text-align: center; max-width: 800px; padding: 2rem;
}
.hero h1 {
    font-family: var(--font-display); color: #fff;
    font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700;
    line-height: 1.1; margin-bottom: 1.25rem;
    animation: fadeUp 1s var(--ease) .2s both;
}
.hero .subtitle {
    color: rgba(255,255,255,.6); font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 300; margin-bottom: 2.5rem;
    animation: fadeUp 1s var(--ease) .4s both;
}
.hero-actions {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
    animation: fadeUp 1s var(--ease) .6s both;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ══ SECTIONS ══ */
section { padding: 5rem 2rem; }
.section-title {
    font-family: var(--font-display); text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.8rem); color: #fff; margin-bottom: .5rem;
}
.section-subtitle {
    text-align: center; color: var(--el-text-muted); font-size: 1.05rem;
    margin-bottom: 3.5rem; font-weight: 300;
}

/* ══ VEHICLES GRID ══ */
.vehicles { max-width: 1200px; margin: 0 auto; }
.vehicle-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem;
}
.vehicle-card {
    border-radius: var(--radius); overflow: hidden;
    background: var(--el-surface); box-shadow: var(--shadow-md);
    transition: all .5s var(--ease); position: relative;
}
.vehicle-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: var(--el-gradient);
    transform: scaleX(0); transition: transform .4s var(--ease); transform-origin: left;
}
.vehicle-card:hover::after { transform: scaleX(1); }
.vehicle-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg), var(--shadow-glow); }
.vehicle-card img { width: 100%; height: 200px; object-fit: cover; transition: transform .6s var(--ease); display: block; }
.vehicle-card:hover img { transform: scale(1.06); }
.vehicle-info { padding: 1.5rem; }
.vehicle-info h3 { font-size: 1.05rem; color: #fff; margin-bottom: .25rem; }
.vehicle-type {
    font-size: .75rem; color: var(--el-accent); font-weight: 700;
    text-transform: uppercase; letter-spacing: .06em;
}
.vehicle-info p { font-size: .88rem; color: var(--el-text-muted); margin-top: .5rem; line-height: 1.5; }

/* ══ TARIFS ══ */
.tarifs-section { max-width: 1100px; margin: 0 auto; }
.tarif-table-wrap {
    overflow-x: auto; border-radius: var(--radius);
    background: var(--el-surface); box-shadow: var(--shadow-md); margin-bottom: 1.5rem;
}
.tarif-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.tarif-table thead { background: var(--el-surface-2); }
.tarif-table th {
    padding: 1rem 1.25rem; text-align: left;
    font-size: .7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .1em; color: var(--el-accent);
}
.tarif-table td { padding: .85rem 1.25rem; color: var(--el-text-muted); }
.tarif-table tbody tr { transition: background .2s; }
.tarif-table tbody tr:hover { background: rgba(217,1,52,.06); }
.tarif-table tbody tr:not(:last-child):not(.tarif-separator) td {
    border-bottom: 1px solid rgba(255,255,255,.04);
}
.tarif-name { color: #fff; font-weight: 600; }
.tarif-separator td { height: .5rem; padding: 0; }
.tarif-notes { max-width: 900px; margin: 0 auto 3rem; padding: 0 1rem; }
.tarif-notes p { color: var(--el-text-dim); font-size: .82rem; line-height: 1.7; margin-bottom: .4rem; }
.tarif-notes strong { color: var(--el-text-muted); }

/* ══ FLEET BLOCKS ══ */
.fleet-section { max-width: 1200px; margin: 0 auto; padding: 2rem 2rem 4rem; }
.fleet-block {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    margin-bottom: 3rem; border-radius: var(--radius); overflow: hidden;
    background: var(--el-surface); box-shadow: var(--shadow-md);
    transition: all .5s var(--ease);
}
.fleet-block:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg), var(--shadow-glow); }
.fleet-block.reverse { direction: rtl; }
.fleet-block.reverse > * { direction: ltr; }
.fleet-img { position: relative; overflow: hidden; }
.fleet-img img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; transition: transform .7s var(--ease);
}
.fleet-block:hover .fleet-img img { transform: scale(1.06); }
.fleet-text {
    padding: 2.5rem; display: flex; flex-direction: column; justify-content: center;
}
.fleet-num {
    font-family: var(--font-display); font-size: 2.5rem; font-weight: 800;
    color: rgba(217,1,52,.15); line-height: 1; margin-bottom: .75rem;
}
.fleet-text h2 { font-family: var(--font-display); font-size: 1.4rem; color: #fff; margin-bottom: .5rem; }
.fleet-text .badge { margin-bottom: 1rem; }
.fleet-text p { color: var(--el-text-muted); line-height: 1.8; margin-bottom: .5rem; font-size: .95rem; }
.fleet-price { color: var(--el-accent); font-size: .95rem; margin-top: .5rem; }
.fleet-price strong { color: #fff; }
.srv-link {
    display: inline-flex; align-items: center; gap: .4rem;
    color: var(--el-accent); font-weight: 700; font-size: .9rem;
    margin-top: .75rem; transition: gap .3s var(--ease);
}
.srv-link:hover { gap: .8rem; }

@media (max-width: 768px) {
    .fleet-block, .fleet-block.reverse { grid-template-columns: 1fr; direction: ltr; }
    .fleet-img { min-height: 220px; }
    .tarif-table { font-size: .78rem; }
    .tarif-table th, .tarif-table td { padding: .65rem .75rem; }
}

/* ══ VEHICLE DETAIL PAGE ══ */
.page-header {
    padding-top: 110px; padding-bottom: 3rem; text-align: center;
    background: radial-gradient(ellipse at center top, var(--el-accent-soft), transparent 50%);
}
.page-header h1 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); color: #fff; }
.page-header-sub { color: var(--el-text-muted); font-size: 1.1rem; margin-top: .75rem; }

.vehicles-detail { max-width: 1100px; margin: 0 auto; padding: 2rem 2rem 4rem; }
.vehicle-detail-card {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    margin-bottom: 3rem; border-radius: var(--radius); overflow: hidden;
    background: var(--el-surface); box-shadow: var(--shadow-md);
    transition: all .5s var(--ease);
}
.vehicle-detail-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg), var(--shadow-glow); }
.vehicle-detail-card.reverse { direction: rtl; }
.vehicle-detail-card.reverse > * { direction: ltr; }
.vehicle-detail-card img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; transition: transform .6s var(--ease);
}
.vehicle-detail-card > div:first-child { position: relative; overflow: hidden; min-height: 280px; }
.vehicle-detail-card:hover img { transform: scale(1.06); }
.vehicle-detail-card > div:last-child { padding: 2.5rem; }
.vehicle-detail-card h2 { font-family: var(--font-display); color: #fff; margin-bottom: .5rem; }
.badge {
    display: inline-block; padding: .25rem .75rem; border-radius: 60px;
    font-size: .72rem; font-weight: 700; margin-bottom: .75rem;
    background: var(--el-green-soft); color: var(--el-green);
}
.badge.electric { background: rgba(34,197,94,.1); color: #22c55e; }
.badge.camping { background: var(--el-accent-soft); color: var(--el-accent); }
.vehicle-detail-card p { color: var(--el-text-muted); line-height: 1.7; }
.cta-section {
    text-align: center; padding: 5rem 2rem;
    background: radial-gradient(ellipse at center, var(--el-accent-soft), transparent 60%);
    border-radius: 32px; max-width: 800px; margin: 0 auto;
}
.cta-section h2 { font-family: var(--font-display); color: #fff; margin-bottom: 1.5rem; }

/* ══ WELCOME ══ */
.welcome-section { max-width: 1200px; margin: 0 auto; }
.welcome-content { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center; }
.welcome-text h2 { font-family: var(--font-display); font-size: 2rem; color: #fff; margin-bottom: 1.25rem; }
.welcome-text p { color: var(--el-text-muted); line-height: 1.9; margin-bottom: .75rem; font-size: 1.02rem; }
.welcome-text strong { color: #fff; }
.welcome-image img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); }

/* ══ WHY SECTION ══ */
.why-section { max-width: 1200px; margin: 0 auto; }
.why-content { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: center; }
.why-image img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.why-text h2 { font-family: var(--font-display); font-size: 1.8rem; color: #fff; margin-bottom: 1.25rem; }
.why-text p { color: var(--el-text-muted); line-height: 1.9; margin-bottom: 1rem; font-size: 1.02rem; }

/* ══ RECRUTEMENT HOME ══ */
.recruit-home { max-width: 1200px; margin: 0 auto; }
.recruit-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.recruit-video { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.recruit-video video { width: 100%; display: block; }
.recruit-text h2 { font-family: var(--font-display); color: #fff; font-size: 1.8rem; margin-bottom: 1rem; }
.recruit-text p { color: var(--el-text-muted); font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.5rem; }

/* ══ CONTACT FULL ══ */
.contact-full { max-width: 800px; margin: 0 auto; }
.contact-full .contact-form { grid-template-columns: 1fr 1fr; }

/* ══ AGENCE ══ */
.agence-section { padding: 5rem 2rem; background: var(--el-surface); }
.agence-block {
    max-width: 1100px; margin: 0 auto;
    background: var(--el-surface-2); border-radius: var(--radius); overflow: hidden;
}
.agence-top {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
    padding: 2.5rem; align-items: center;
}
.agence-info {
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; text-align: center;
}
.agence-info h3 { font-family: var(--font-display); font-size: 1.2rem; color: #fff; margin-bottom: 1.25rem; }
.agence-info p { color: var(--el-text-muted); font-size: .95rem; margin-bottom: .5rem; line-height: 1.6; }
.agence-info a { color: var(--el-accent); font-weight: 600; }
.agence-horaires { display: flex; flex-direction: column; align-items: center; }
.agence-horaires h4 {
    font-size: .8rem; color: var(--el-accent); margin-bottom: .75rem;
    text-transform: uppercase; letter-spacing: .08em; font-weight: 700;
}
.agence-map { padding: 0 2.5rem 2.5rem; }
.agence-map iframe { width: 100%; height: 280px; border-radius: 16px; }

/* ══ HORAIRES ══ */
.horaires-section { max-width: 600px; margin: 0 auto; }
.horaires { display: flex; flex-direction: column; gap: .5rem; width: 100%; }
.horaire-row {
    display: flex; justify-content: space-between; padding: .85rem 1.5rem;
    border-radius: 10px; background: var(--el-surface); font-size: .9rem;
}
.horaire-row .jour { font-weight: 600; color: #fff; }
.horaire-row .heures { color: var(--el-text-muted); }

/* ══ CONTACT ══ */
.contact-section { background: radial-gradient(ellipse at bottom, rgba(217,1,52,.05), transparent 60%); }
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
    max-width: 1100px; margin: 0 auto;
}
.contact-info { display: flex; flex-direction: column; gap: .75rem; }
.contact-link { display: flex; align-items: center; gap: .6rem; color: var(--el-text); padding: .5rem 0; }
.contact-link svg { color: var(--el-accent); flex-shrink: 0; }
.contact-link.social { color: var(--el-accent); font-weight: 600; }

.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label {
    font-size: .7rem; font-weight: 600; color: var(--el-text-dim);
    text-transform: uppercase; letter-spacing: .08em; margin-bottom: .4rem;
}
.form-group input, .form-group textarea {
    padding: .8rem 1rem; border-radius: var(--radius-sm);
    background: var(--el-surface); color: var(--el-text);
    font-family: var(--font-body); font-size: .9rem; transition: all .3s var(--ease);
}
.form-group input:focus, .form-group textarea:focus {
    background: var(--el-surface-2);
    box-shadow: 0 0 0 2px var(--el-accent), 0 0 20px var(--el-accent-glow);
}
.btn-submit {
    grid-column: 1 / -1; padding: .9rem; border-radius: 60px;
    background: var(--el-gradient); color: #fff;
    font-weight: 700; font-size: 1rem; cursor: pointer;
    transition: all .4s var(--ease); box-shadow: 0 4px 24px var(--el-accent-glow);
}
.btn-submit:hover { transform: translateY(-3px); }
.btn-submit:disabled { opacity: .5; cursor: not-allowed; }
.form-status { grid-column: 1 / -1; padding: .75rem; border-radius: var(--radius-sm); text-align: center; font-size: .9rem; }
.form-status.success { background: rgba(48,209,88,.08); color: #30d158; }
.form-status.error { background: rgba(212,163,115,.08); color: var(--el-accent); }

/* ══ RECRUTEMENT PAGE ══ */
.recruit-page { max-width: 1100px; margin: 0 auto; padding: 2rem; }
.recruit-video-block {
    border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-lg); margin-bottom: 3rem;
}
.recruit-video-block video { width: 100%; display: block; max-height: 400px; object-fit: cover; }
.recruit-main {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.recruit-img img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.recruit-page .recruit-text h2 { font-family: var(--font-display); color: #fff; font-size: 1.8rem; margin-bottom: 1.25rem; }
.recruit-page .recruit-text p { color: var(--el-text-muted); font-size: 1.1rem; line-height: 1.9; margin-bottom: 1rem; }
.recruit-page .recruit-text a:not(.btn-primary) { color: var(--el-accent); }
.recruit-page .recruit-text strong { color: var(--el-accent); }

/* ══ LEGAL ══ */
.legal-content { max-width: 800px; margin: 0 auto; padding: 3rem 2rem; }
.legal-content h2 { color: #fff; margin: 2rem 0 .75rem; }
.legal-content p { color: var(--el-text-muted); margin-bottom: 1rem; }

/* ══ FOOTER ══ */
.footer { background: var(--el-surface); padding: 4rem 2rem 2rem; }
.footer-content {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 3rem;
}
.footer h3 { font-size: .85rem; color: #fff; margin-bottom: 1rem; font-weight: 700; }
.footer p, .footer a { font-size: .85rem; color: var(--el-text-dim); line-height: 1.8; }
.footer a { display: block; }
.footer a:hover { color: var(--el-accent); }
.copyright { text-align: center; font-size: .78rem; color: var(--el-text-dim); border-top: 1px solid rgba(255,255,255,.04); padding-top: 2rem; }

/* ══ COOKIE ══ */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background: rgba(20,20,20,.95); backdrop-filter: blur(20px);
    padding: 1rem 2rem; display: flex; align-items: center;
    justify-content: center; gap: 1.5rem; flex-wrap: wrap;
}
.cookie-banner p { font-size: .85rem; color: var(--el-text-muted); margin: 0; }
.cookie-banner a { color: var(--el-accent); }
.cookie-actions { display: flex; gap: .75rem; }
.btn-accept, .btn-refuse { padding: .45rem 1.25rem; border-radius: 60px; font-size: .8rem; cursor: pointer; font-family: var(--font-body); }
.btn-accept { background: var(--el-accent); color: #fff; }
.btn-refuse { background: transparent; color: var(--el-text-muted); }

/* ══ RESPONSIVE ══ */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .navbar { height: 60px; }
    .hero { height: 85vh; }
    .vehicle-grid { grid-template-columns: 1fr; }
    .contact-grid, .contact-form, .contact-full .contact-form { grid-template-columns: 1fr; }
    .vehicle-detail-card, .vehicle-detail-card.reverse { grid-template-columns: 1fr; direction: ltr; }
    .vehicle-detail-card > div:first-child { min-height: 220px; }
    .welcome-content, .why-content, .recruit-content, .recruit-main { grid-template-columns: 1fr; }
    .agence-top { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }
    section { padding: 3rem 1.25rem; }
}

#blazor-error-ui { background: var(--el-surface); color: var(--el-text); }
/* ══ BURGER MENU PREMIUM ══ */
.burger { display: none; background: none; cursor: pointer; padding: .5rem; z-index: 99999; position: relative; }
.burger span { display: block; width: 26px; height: 2px; background: #fff; margin: 6px 0; transition: all .4s cubic-bezier(.68,-.55,.27,1.55); border-radius: 2px; }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); background: var(--el-accent); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); background: var(--el-accent); }
.nav-phone { display: none; }
@media (max-width: 768px) {
    .burger { display: block; }
    .btn-call { display: none !important; }
    .nav-links {
        display: none !important; position: fixed !important;
        top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
        width: 100vw !important; height: 100vh !important;
        background: radial-gradient(ellipse at top right, #1a1414, #0a0a0a 60%) !important;
        z-index: 9999 !important; flex-direction: column !important;
        align-items: center !important; justify-content: center !important; gap: 0 !important;
    }
    .nav-links.show { display: flex !important; }
    .nav-links a {
        font-size: 1.4rem !important; font-weight: 600 !important; color: #fff !important;
        text-transform: none !important; padding: 1rem 2rem !important;
        position: relative; opacity: 0; transform: translateX(-40px);
        text-align: center !important; width: 100% !important;
    }
    .nav-links a::after { display: none !important; }
    .nav-links.show a { animation: menuSlideIn .5s cubic-bezier(.4,0,.2,1) forwards; }
    .nav-links.show a:nth-child(1) { animation-delay: .05s; }
    .nav-links.show a:nth-child(2) { animation-delay: .1s; }
    .nav-links.show a:nth-child(3) { animation-delay: .15s; }
    .nav-links.show a:nth-child(4) { animation-delay: .2s; }
    .nav-links.show a:nth-child(5) { animation-delay: .25s; }
    @keyframes menuSlideIn { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
    .nav-phone { display: block !important; color: var(--el-accent) !important; font-weight: 700 !important; font-size: 1.1rem !important; margin-top: 1rem !important; padding: .75rem 2rem !important; border-radius: 60px; background: rgba(217,1,52,.15) !important; }
}

/* ══ FLEET ACTIONS ══ */
.fleet-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; margin-top: 1rem; }
.btn-sm { padding: .6rem 1.5rem; font-size: .85rem; }

.loading-text, .loading-cell { text-align: center; color: var(--el-text-muted); padding: 2rem; font-style: italic; }

/* ══ VEHICLE DETAIL PAGE ══ */
.vd-page {
    padding: 100px 2rem 4rem;
    min-height: 100vh;
}
.vd-container { max-width: 900px; margin: 0 auto; }
.vd-back {
    display: inline-flex; align-items: center; gap: .5rem;
    color: var(--el-text-muted); font-size: .9rem; margin-bottom: 2rem;
}
.vd-back:hover { color: var(--el-accent); }

.vd-header {
    display: flex; justify-content: space-between; align-items: flex-start;
    flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem;
}
.vd-title-wrap h1 {
    font-family: var(--font-display); font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: #fff; margin-bottom: .5rem;
}
.vd-badge {
    display: inline-block; padding: .3rem .9rem; border-radius: 60px;
    font-size: .75rem; font-weight: 600;
    background: var(--el-accent-soft); color: var(--el-accent);
}
.vd-price {
    font-size: 1.25rem; font-weight: 700; color: var(--el-accent);
    background: var(--el-accent-soft); padding: .75rem 1.5rem;
    border-radius: var(--radius);
}

/* Video */
.vd-video {
    margin-bottom: 2rem; border-radius: var(--radius); overflow: hidden;
    background: #000; aspect-ratio: 16/9;
}
.vd-video iframe, .vd-video video { width: 100%; height: 100%; }

/* Gallery */
.vd-gallery { margin-bottom: 2rem; }
.vd-main-img {
    border-radius: var(--radius); overflow: hidden; margin-bottom: 1rem;
    cursor: pointer;
}
.vd-main-img img {
    width: 100%; height: auto; max-height: 500px;
    object-fit: cover; display: block;
    transition: transform .4s var(--ease);
}
.vd-main-img:hover img { transform: scale(1.02); }
.vd-thumbs { display: flex; gap: .75rem; flex-wrap: wrap; }
.vd-thumb {
    width: 80px; height: 60px; border-radius: 8px; overflow: hidden;
    cursor: pointer; opacity: .6; transition: all .3s var(--ease);
    border: 2px solid transparent;
}
.vd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.vd-thumb:hover, .vd-thumb.active { opacity: 1; border-color: var(--el-accent); }

/* Description */
.vd-description {
    background: var(--el-surface); padding: 2rem; border-radius: var(--radius);
    margin-bottom: 2rem;
}
.vd-description h2 {
    font-family: var(--font-display); font-size: 1.3rem; color: #fff;
    margin-bottom: 1rem;
}
.vd-description p { color: var(--el-text-muted); line-height: 1.8; }

/* Specs */
.vd-specs {
    display: flex; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem;
}
.vd-spec {
    display: flex; align-items: center; gap: .5rem;
    background: var(--el-surface); padding: .75rem 1.25rem;
    border-radius: 60px; font-size: .9rem; color: var(--el-text);
}
.vd-spec-icon { font-size: 1.1rem; }

/* Actions */
.vd-actions {
    display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
    padding: 2rem; background: var(--el-surface); border-radius: var(--radius);
}

/* Lightbox */
.vd-lightbox {
    position: fixed; inset: 0; z-index: 10000;
    background: rgba(0,0,0,.95); display: flex;
    align-items: center; justify-content: center;
}
.vd-lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.vd-lb-close {
    position: absolute; top: 1.5rem; right: 1.5rem;
    background: none; border: none; color: #fff;
    font-size: 2rem; cursor: pointer; z-index: 2;
}
.vd-lb-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,.1); border: none; color: #fff;
    font-size: 2.5rem; padding: 1rem; cursor: pointer;
    transition: background .3s;
}
.vd-lb-nav:hover { background: rgba(255,255,255,.2); }
.vd-lb-prev { left: 1rem; }
.vd-lb-next { right: 1rem; }
.vd-lb-counter {
    position: absolute; bottom: 1.5rem; left: 50%;
    transform: translateX(-50%); color: rgba(255,255,255,.7);
    font-size: .9rem;
}

@media (max-width: 768px) {
    .vd-page { padding: 80px 1rem 3rem; }
    .vd-header { flex-direction: column; }
    .vd-price { width: 100%; text-align: center; }
    .vd-thumbs { justify-content: center; }
    .vd-thumb { width: 60px; height: 45px; }
    .vd-specs { justify-content: center; }
    .vd-lb-nav { font-size: 1.8rem; padding: .75rem; }
}
