/* ============================================
   BAHI DRIVER — Dark Luxury Landing Page
   ============================================ */

:root {
    --black: #0a0a0a;
    --matte-black: #111111;
    --charcoal: #1a1a1a;
    --charcoal-light: #222222;
    --gold: #C6A55C;
    --gold-dim: rgba(198, 165, 92, 0.15);
    --gold-glow: rgba(198, 165, 92, 0.3);
    --white: #f0ece4;
    --white-dim: rgba(240, 236, 228, 0.6);
    --glass-bg: rgba(26, 26, 26, 0.55);
    --glass-border: rgba(198, 165, 92, 0.12);
    --glass-blur: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* ---- PARTICLES CANVAS ---- */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ---- GLASS CARD UTILITY ---- */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.gold { color: var(--gold); }

/* ---- NAVIGATION ---- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(198, 165, 92, 0.08);
    transition: background 0.4s ease;
}

#navbar.scrolled {
    background: rgba(10, 10, 10, 0.9);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    filter: brightness(1.1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--white-dim);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.lang-selector {
    display: flex;
    gap: 6px;
    margin-left: 20px;
    flex-shrink: 0;
}
.lang-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.lang-btn:hover {
    background: var(--gold);
    color: var(--black);
}
.lang-btn.active {
    display: none;
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-burger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white-dim);
    transition: all 0.3s ease;
}

.nav-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 4px);
}
.nav-burger.active span:nth-child(2) {
    opacity: 0;
}
.nav-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -4px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 999;
    align-items: center;
    justify-content: center;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-menu li {
    margin: 1.5rem 0;
}

.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 200;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--gold);
}

/* ---- HERO SECTION ---- */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

.hero-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(198, 165, 92, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 2rem;
}

.hero-logo {
    display: block;
    margin: 0 auto 2.5rem;
    height: 320px;
    width: auto;
    filter: brightness(1.15) drop-shadow(0 0 24px rgba(198, 165, 92, 0.25));
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 200;
    line-height: 1.3;
    letter-spacing: 0.02em;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.hero-line {
    display: block;
}

.hero-sub {
    font-size: 1rem;
    font-weight: 300;
    color: var(--white-dim);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hero-cta:hover {
    box-shadow: 0 0 30px rgba(198, 165, 92, 0.3);
    transform: translateY(-1px);
}

/* ---- SECTIONS ---- */
.section {
    position: relative;
    z-index: 1;
    padding: 6rem 0;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 200;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 3.5rem;
}

/* ---- L'UNIVERS ---- */
.univers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.univers-card {
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.univers-card:hover {
    border-color: rgba(198, 165, 92, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.univers-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.5rem;
    color: var(--gold);
}

.univers-icon svg {
    width: 100%;
    height: 100%;
}

.univers-card h3 {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: var(--white);
}

.univers-card p {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--white-dim);
}

/* ---- BOOKING ---- */
#reservation {
    position: relative;
    overflow: hidden;
}

#reservation::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('bg-reservation.png') center center / cover no-repeat;
    opacity: 0.18;
    z-index: 0;
}

#reservation::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        var(--black) 0%,
        rgba(10, 10, 10, 0.4) 30%,
        rgba(10, 10, 10, 0.4) 70%,
        var(--black) 100%
    );
    z-index: 0;
}

#reservation > .section-inner {
    position: relative;
    z-index: 1;
}

.booking-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 2.5rem;
    border: 1px solid rgba(198, 165, 92, 0.2);
}

.booking-fields {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.field-group {
    flex: 1;
    position: relative;
}

.autocomplete-list {
    display: none;
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    right: 0;
    z-index: 999;
    background: #161616;
    border: 1px solid rgba(198, 165, 92, 0.35);
    border-radius: 6px;
    max-height: 220px;
    overflow-y: auto;
    box-shadow: 0 8px 24px rgba(0,0,0,0.6);
}
.autocomplete-list.open { display: block; }
.autocomplete-item {
    padding: 10px 14px;
    font-size: 0.82rem;
    color: #bbb;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.15s, color 0.15s;
    line-height: 1.4;
}
.autocomplete-item:last-child { border-bottom: none; }
.autocomplete-item:hover, .autocomplete-item:focus {
    background: rgba(198, 165, 92, 0.12);
    color: var(--gold);
}
@media (max-width: 600px) {
    .autocomplete-item { padding: 12px 12px; font-size: 0.85rem; }
}

.field-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white-dim);
    margin-bottom: 0.5rem;
}

.field-group label svg {
    color: var(--gold);
}

.field-group input {
    width: 100%;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s ease;
}

.field-group input::placeholder {
    color: rgba(240, 236, 228, 0.3);
}

.field-group input:focus {
    border-color: rgba(198, 165, 92, 0.4);
}

.field-row {
    display: flex;
    gap: 1rem;
}

/* Booking mode toggle */
.booking-mode-toggle {
    display: flex;
    gap: 0;
    margin-bottom: 2rem;
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    overflow: hidden;
}

.mode-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    color: var(--white-dim);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mode-btn.active {
    background: var(--gold-dim);
    color: var(--gold);
    font-weight: 400;
}

.mode-btn:hover:not(.active) {
    background: rgba(255,255,255,0.04);
    color: var(--white);
}

/* Hidden utility */
.hidden {
    display: none !important;
}

/* Select input */
select {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C6A55C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    transition: border-color 0.3s ease;
}

select:focus {
    outline: none;
    border-color: rgba(198, 165, 92, 0.4);
}

select option {
    background: var(--charcoal);
    color: var(--white);
}

/* Vehicle selector */
.vehicle-label {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white-dim);
    margin-bottom: 1rem;
}

.vehicle-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.vehicle-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--white-dim);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.vehicle-btn:hover {
    border-color: rgba(198, 165, 92, 0.3);
    color: var(--white);
}

.vehicle-btn.active {
    border-color: var(--gold);
    background: var(--gold-dim);
    color: var(--gold);
}

.vehicle-btn svg {
    transition: color 0.3s ease;
}

.vehicle-name {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.vehicle-detail {
    font-size: 0.7rem;
    font-weight: 300;
    opacity: 0.6;
}

/* Price display */
.booking-price {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: rgba(198, 165, 92, 0.05);
    border: 1px solid rgba(198, 165, 92, 0.1);
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.price-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.price-divider {
    width: 1px;
    height: 36px;
    background: var(--glass-border);
}

.price-label {
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--white-dim);
    text-transform: uppercase;
}

.price-value {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--gold);
    transition: all 0.3s ease;
}

.price-value.shimmer {
    animation: goldShimmer 0.8s ease;
}

@keyframes goldShimmer {
    0% { opacity: 0.4; text-shadow: 0 0 0 transparent; }
    50% { opacity: 1; text-shadow: 0 0 20px rgba(198, 165, 92, 0.5); }
    100% { opacity: 1; text-shadow: 0 0 0 transparent; }
}

/* Dispo price breakdown */
.dispo-breakdown {
    padding: 1rem 1.2rem;
    background: rgba(198, 165, 92, 0.05);
    border: 1px solid rgba(198, 165, 92, 0.1);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.dispo-breakdown-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dispo-breakdown-label {
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--white-dim);
    letter-spacing: 0.04em;
}
.dispo-breakdown-val {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--white);
}
.dispo-breakdown-divider {
    height: 1px;
    background: var(--glass-border);
    margin: 0.2rem 0;
}
.dispo-breakdown-total .dispo-breakdown-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.dispo-breakdown-total .dispo-breakdown-val {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--gold);
}

/* Dispo devis message */
.dispo-devis-msg {
    margin-top: 0.75rem;
    padding: 0.85rem 1rem;
    background: rgba(198, 165, 92, 0.06);
    border: 1px solid rgba(198, 165, 92, 0.18);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.dispo-devis-msg p {
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--white-dim);
    line-height: 1.5;
}
.dispo-devis-btn {
    display: inline-block;
    padding: 0.45rem 1rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.dispo-devis-btn:hover {
    background: var(--gold);
    color: var(--black);
}

/* Discrétion message */
.discretion-message {
    margin-top: 0.75rem;
    padding: 0.85rem 1rem;
    background: rgba(198, 165, 92, 0.06);
    border: 1px solid rgba(198, 165, 92, 0.18);
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--white-dim);
    letter-spacing: 0.02em;
}

/* Client info section */
.client-info-section {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--glass-border);
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

/* Booking confirmation message */
.booking-confirm {
    text-align: center;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.booking-confirm-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(198, 165, 92, 0.1);
    border: 1px solid rgba(198, 165, 92, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}
.booking-confirm-title {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.04em;
}
.booking-confirm-text {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--white-dim);
    line-height: 1.7;
    max-width: 420px;
}
.booking-confirm-reset {
    margin-top: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    color: var(--white-dim);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
}
.booking-confirm-reset:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ---- BOOKING MAP ---- */
#booking-map {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    margin-top: 16px;
}

#booking-map .leaflet-control-zoom a {
    background: var(--charcoal) !important;
    color: var(--gold) !important;
    border-color: var(--glass-border) !important;
}

#booking-map .leaflet-popup-content-wrapper,
#booking-map .leaflet-popup-tip {
    background: var(--charcoal) !important;
    color: var(--white) !important;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.85rem;
}

/* CTA Button */
.booking-cta {
    width: 100%;
    padding: 1rem;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
}

.booking-cta:hover {
    box-shadow: 0 0 30px rgba(198, 165, 92, 0.25);
    transform: translateY(-1px);
}

/* ---- FLEET ---- */
.fleet-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 2rem 2rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.fleet-scroll::-webkit-scrollbar {
    display: none;
}

.fleet-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    padding: 0 calc((100vw - 1200px) / 2);
}

.fleet-card {
    width: 360px;
    flex-shrink: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.fleet-card:hover {
    border-color: rgba(198, 165, 92, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.fleet-image {
    height: 220px;
    overflow: hidden;
    border-bottom: 1px solid var(--glass-border);
    position: relative;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
    filter: brightness(0.85) saturate(0.9);
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.05);
    filter: brightness(0.95) saturate(1);
}

.fleet-info {
    padding: 1.5rem;
}

.fleet-name {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.fleet-type {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--white-dim);
    margin-bottom: 1.2rem;
}

.fleet-specs {
    display: flex;
    gap: 1.2rem;
}

.spec {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--white-dim);
}

.spec svg {
    color: var(--gold);
    opacity: 0.7;
}

/* ---- PROTECTION & DISCRÉTION VIP ---- */
#protection {
    background: linear-gradient(180deg, var(--black) 0%, rgba(15, 12, 8, 1) 100%);
}

.protection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* Base card */
.protection-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    transition: all 0.4s ease;
}

/* Standard — sobre, sans surbrillance */
.protection-card--standard {
    opacity: 0.85;
}
.protection-card--standard:hover {
    opacity: 1;
    transform: translateY(-3px);
}

/* VIP Premium — bordure dorée */
.protection-card--vip {
    border-color: rgba(198, 165, 92, 0.4);
    box-shadow: 0 0 40px rgba(198, 165, 92, 0.06);
}
.protection-card--vip:hover {
    border-color: rgba(198, 165, 92, 0.7);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(198, 165, 92, 0.1);
}

/* Protection — bordure subtile gris-argent */
.protection-card--protection {
    border-color: rgba(180, 180, 180, 0.2);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}
.protection-card--protection:hover {
    border-color: rgba(180, 180, 180, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Badge top (Premium / Sécurité) */
.protection-badge-top {
    position: absolute;
    top: -1px;
    right: 1.5rem;
    background: var(--gold);
    color: var(--black);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.25rem 0.7rem;
    border-radius: 0 0 6px 6px;
}
.protection-badge-top--grey {
    background: rgba(160, 160, 160, 0.25);
    color: rgba(240, 236, 228, 0.6);
}

/* Icône */
.protection-icon {
    width: 44px;
    height: 44px;
    color: var(--gold);
    flex-shrink: 0;
}
.protection-card--standard .protection-icon {
    color: var(--white-dim);
}
.protection-card--protection .protection-icon {
    color: rgba(200, 200, 200, 0.7);
}
.protection-icon svg {
    width: 100%;
    height: 100%;
}

/* Titre */
.protection-title {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--white);
}
.protection-card--vip .protection-title {
    color: var(--gold);
}

/* Description */
.protection-desc {
    font-size: 0.83rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--white-dim);
    flex: 1;
}

/* Badge bas */
.protection-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    align-self: flex-start;
}
.protection-badge--gold {
    background: rgba(198, 165, 92, 0.12);
    color: var(--gold);
    border: 1px solid rgba(198, 165, 92, 0.3);
}
.protection-badge--grey {
    background: rgba(160, 160, 160, 0.08);
    color: rgba(200, 200, 200, 0.55);
    border: 1px solid rgba(160, 160, 160, 0.15);
}

/* CTA */
.protection-cta-wrap {
    text-align: center;
    margin-bottom: 2rem;
}
.protection-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.4s ease;
}
.protection-cta:hover {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 0 30px rgba(198, 165, 92, 0.25);
}

/* Mention légale */
.protection-legal {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 300;
    color: rgba(240, 236, 228, 0.25);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    letter-spacing: 0.03em;
}

/* ============================================
   ADMIN / DRIVER PANEL
   ============================================ */
.admin-panel {
    background: #0d0d0d;
    border-top: 1px solid rgba(198, 165, 92, 0.3);
    padding: 40px 16px;
}
.admin-panel:not(.hidden) {
    display: block !important;
}
.admin-inner {
    max-width: 860px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}
.admin-header {
    text-align: center;
    margin-bottom: 32px;
}
.admin-header h2 {
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--cream);
    margin-bottom: 6px;
}
.admin-sub {
    font-size: 0.75rem;
    color: rgba(240,236,228,0.35);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.admin-section-title {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(198,165,92,0.15);
}
.admin-form { margin-bottom: 28px; }
.admin-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    margin-bottom: 12px;
}
.admin-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}
.admin-btn {
    width: 100%;
    padding: 16px 20px;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: opacity 0.2s;
    text-align: center;
    min-height: 52px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}
.admin-btn:active { opacity: 0.75; }
.admin-btn--confirm { background: rgba(198,165,92,0.2); color: var(--gold); border: 1px solid var(--gold); }
.admin-btn--enroute { background: rgba(80,160,80,0.15); color: #7ecf7e; border: 1px solid rgba(80,160,80,0.4); }
.admin-btn--refuse  { background: rgba(200,80,80,0.15); color: #e07070; border: 1px solid rgba(200,80,80,0.4); }
.admin-feedback {
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.5;
}
.admin-feedback--ok  { background: rgba(80,160,80,0.15); color: #7ecf7e; border: 1px solid rgba(80,160,80,0.3); }
.admin-feedback--err { background: rgba(200,80,80,0.15); color: #e07070; border: 1px solid rgba(200,80,80,0.3); }
.admin-accepted-msg {
    width: 100%;
    padding: 14px;
    text-align: center;
    color: #7ecf7e;
    font-size: 0.88rem;
    background: rgba(80,160,80,0.08);
    border: 1px solid rgba(80,160,80,0.25);
    border-radius: 8px;
    box-sizing: border-box;
}

@media (max-width: 480px) {
    .admin-panel { padding: 28px 12px; }
    .admin-header h2 { font-size: 1.2rem; }
    .admin-row { grid-template-columns: 1fr; }
    .admin-btn { font-size: 0.95rem; padding: 18px 16px; min-height: 56px; }
}

/* ============================================
   FORMULAIRE DE CONTACT (footer)
   ============================================ */
.contact-form-wrap {
    background: #111;
    border-bottom: 1px solid rgba(198,165,92,0.15);
    padding: 60px 20px;
}
.contact-form-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}
.contact-form-title {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--cream);
    margin-bottom: 6px;
}
.contact-form-sub {
    font-size: 0.78rem;
    color: rgba(240,236,228,0.35);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 32px;
}
.contact-form { text-align: left; }
.contact-row {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
}
.contact-row .field-group { flex: 1; }
.contact-form .field-group { margin-bottom: 14px; }
.contact-form textarea {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(198,165,92,0.2);
    border-radius: 6px;
    color: var(--cream);
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 300;
    padding: 12px 16px;
    resize: vertical;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.contact-form textarea:focus { border-color: rgba(198,165,92,0.5); }
.contact-form textarea::placeholder { color: rgba(240,236,228,0.25); }
.contact-submit {
    width: 100%;
    background: linear-gradient(135deg, #c6a55c, #a8884a);
    color: #0d0d0d;
    border: none;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px;
    cursor: pointer;
    transition: opacity 0.2s;
    margin-top: 4px;
}
.contact-submit:hover { opacity: 0.85; }
.contact-submit:disabled { opacity: 0.5; cursor: default; }
.contact-confirm {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 18px;
    background: rgba(80,160,80,0.1);
    border: 1px solid rgba(80,160,80,0.3);
    border-radius: 6px;
    color: #7ecf7e;
    font-size: 0.85rem;
}
@media (max-width: 600px) {
    .contact-row { flex-direction: column; gap: 0; }
}

/* Responsive */
@media (max-width: 900px) {
    .protection-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .protection-card--standard {
        opacity: 1;
    }
}

/* ---- FOOTER ---- */
#contact {
    position: relative;
    z-index: 1;
}

.footer-map {
    position: relative;
    height: 300px;
    background: var(--charcoal);
    overflow: hidden;
}

.map-overlay {
    position: relative;
    width: 100%;
    height: 100%;
}

.map-grid {
    position: absolute;
    inset: 0;
}

.map-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
}

.map-line.h {
    left: 0;
    width: 100%;
    height: 1px;
}

.map-line.v {
    top: 0;
    width: 1px;
    height: 100%;
}

.map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(198, 165, 92, 0.3);
    animation: pulse 2s infinite ease-out;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.footer-content {
    background: var(--matte-black);
    border-top: 1px solid rgba(198, 165, 92, 0.1);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    filter: brightness(1.1);
}

.footer-tagline {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--white-dim);
    letter-spacing: 0.1em;
}

.footer-info {
    display: flex;
    gap: 4rem;
}

.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white-dim);
    margin-bottom: 1rem;
}

.gold-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.5rem;
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.gold-btn svg {
    color: var(--black);
}

.gold-btn:hover {
    box-shadow: 0 0 25px rgba(198, 165, 92, 0.3);
}

.footer-email {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--white-dim);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: var(--white-dim);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(240, 236, 228, 0.3);
    letter-spacing: 0.05em;
}

/* ---- ANIMATIONS ---- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .univers-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .nav-links { display: none; }
    .nav-burger { display: flex; }

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

    .footer-info {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .fleet-track {
        padding: 0 1rem;
    }

    .fleet-card {
        width: 300px;
    }

    .booking-card {
        padding: 1.5rem;
    }

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

    .field-row {
        flex-direction: column;
    }
}

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

    .hero-sub {
        font-size: 0.8rem;
    }

    .section {
        padding: 4rem 0;
    }

    .fleet-card {
        width: 280px;
    }
}
