/* ============================================
   M'VTC REIMS — Premium Design System
   ============================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
    /* Colors */
    --primary: #0a0e27;
    --primary-light: #141937;
    --primary-dark: #060818;
    --accent: #c8a45e;
    --accent-light: #dfc07a;
    --accent-dark: #a88640;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-strong: rgba(255, 255, 255, 0.1);
    --white: #ffffff;
    --text: #c8cdd8;
    --text-muted: #7a8299;
    --success: #34d399;
    --danger: #f87171;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    --gap: 2rem;

    /* Borders & Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.3);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.4);
    --shadow-glow: 0 0 30px rgba(200, 164, 94, 0.3);

    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--section-padding);
    position: relative;
}

/* ---------- TYPOGRAPHY ---------- */
.text-gradient {
    background: linear-gradient(135deg, var(--accent), var(--accent-light), #f0d890);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.section__tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    padding: 6px 20px;
    background: rgba(200, 164, 94, 0.1);
    border: 1px solid rgba(200, 164, 94, 0.2);
    border-radius: var(--radius-full);
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section__description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn--primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(200, 164, 94, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn--outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn--full {
    width: 100%;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    text-decoration: none;
    line-height: 1;
}

.nav__logo-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav__logo-subtitle {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}

.logo__m {
    color: var(--accent);
}

.logo__vtc {
    color: var(--white);
}

.logo__reims {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 1.2rem;
    margin-left: 4px;
}

.nav__list {
    display: flex;
    gap: 0.5rem;
}

.nav__link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.nav__link:hover,
.nav__link.active {
    color: var(--white);
    background: var(--glass-strong);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav__phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 500;
}

.nav__phone:hover {
    color: var(--accent);
}

.nav__phone i {
    color: var(--accent);
}

.nav__cta {
    font-size: 0.85rem;
    padding: 10px 22px;
}

.nav__toggle,
.nav__close {
    display: none;
    font-size: 1.4rem;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(145deg, #0a0e27 0%, #0f1538 30%, #151d4a 60%, #0d1230 100%);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(200, 164, 94, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(100, 130, 200, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(200, 164, 94, 0.05) 0%, transparent 40%);
}

.hero__particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero__particles .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(200, 164, 94, 0.4);
    border-radius: 50%;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 6rem 1.5rem 4rem;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent);
    padding: 8px 24px;
    background: rgba(200, 164, 94, 0.1);
    border: 1px solid rgba(200, 164, 94, 0.2);
    border-radius: var(--radius-full);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero__badge i {
    font-size: 0.75rem;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero__stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    padding: 1.5rem 2.5rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
    display: inline-flex;
}

.stat {
    text-align: center;
}

.stat__number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.stat__label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat__divider {
    width: 1px;
    height: 40px;
    background: var(--glass-border);
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    background: var(--primary-dark);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}

.service-card {
    position: relative;
    padding: 2.5rem 2rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 164, 94, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card--featured {
    background: linear-gradient(145deg, rgba(200, 164, 94, 0.08), var(--glass));
    border-color: rgba(200, 164, 94, 0.15);
}

.service-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary);
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--accent);
    background: rgba(200, 164, 94, 0.1);
    border: 1px solid rgba(200, 164, 94, 0.15);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.service-card:hover .service-card__icon {
    background: rgba(200, 164, 94, 0.15);
    transform: scale(1.05);
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.service-card__text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card__price {
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.service-card__price strong {
    font-size: 1.1rem;
    color: var(--accent);
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent);
}

.service-card__link:hover {
    gap: 0.8rem;
}

.service-card__link i {
    font-size: 0.8rem;
    transition: var(--transition);
}

/* ============================================
   TARIFS
   ============================================ */
.tarifs {
    background: var(--primary);
}

.tarifs__tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.tarif-tab {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 12px 28px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--text);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tarif-tab:hover {
    background: var(--glass-strong);
    color: var(--white);
}

.tarif-tab.active {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary);
    border-color: var(--accent);
    font-weight: 600;
}

.tarif-panel {
    display: none;
}

.tarif-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tarif-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tarif-card {
    padding: 2rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

.tarif-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 164, 94, 0.2);
}

.tarif-card--highlight {
    border-color: rgba(200, 164, 94, 0.3);
    background: linear-gradient(145deg, rgba(200, 164, 94, 0.08), var(--glass));
}

.tarif-card__icon {
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.tarif-card__destination {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
    min-height: 2.8em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tarif-card__detail {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.tarif-card__price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-top: auto;
    margin-bottom: 0.25rem;
}

.tarif-card__price span {
    font-size: 1.5rem;
}

.tarif-card__type {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tarif-card__ar {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--text);
    padding-top: 0.75rem;
    border-top: 1px solid var(--glass-border);
}

.tarifs__note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* ============================================
   RESERVATION
   ============================================ */
.reservation {
    background: var(--primary-dark);
    position: relative;
}

.reservation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.reservation__wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

.reservation__form {
    padding: 2.5rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.form__group {
    margin-bottom: 1.25rem;
}

.form__label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.form__label i {
    color: var(--accent);
    font-size: 0.8rem;
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: var(--transition);
    outline: none;
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--text-muted);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    border-color: var(--accent);
    background: rgba(200, 164, 94, 0.05);
    box-shadow: 0 0 0 3px rgba(200, 164, 94, 0.1);
}

.form__select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23c8a45e'%3E%3Cpath d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form__select option {
    background: var(--primary);
    color: var(--text);
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form__estimation {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(200, 164, 94, 0.1), rgba(200, 164, 94, 0.05));
    border: 1px solid rgba(200, 164, 94, 0.2);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    animation: fadeIn 0.3s ease;
}

.estimation__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}

.estimation__label {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--text);
}

.estimation__price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

.estimation__note {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.form__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.reservation__info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.info-card {
    padding: 1.5rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: var(--transition);
}

.info-card:hover {
    border-color: rgba(200, 164, 94, 0.2);
    transform: translateX(4px);
}

.info-card__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent);
    background: rgba(200, 164, 94, 0.1);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.info-card h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.info-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   VEHICULE
   ============================================ */
.vehicule {
    background: var(--primary);
}

.vehicule__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vehicule__image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(145deg, var(--glass), rgba(200, 164, 94, 0.05));
    border: 1px solid var(--glass-border);
}

.vehicule__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 1rem;
    color: var(--text-muted);
}

.vehicule__placeholder i {
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.6;
}

.vehicule__placeholder span {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
}

.vehicule__content .section__tag {
    display: inline-block;
    margin-bottom: 1rem;
}

.vehicule__content .section__title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.vehicule__text {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.vehicule__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.vehicule__features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text);
}

.vehicule__features li i {
    color: var(--accent);
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
}

/* ============================================
   AVIS
   ============================================ */
.avis {
    background: var(--primary-dark);
    position: relative;
}

.avis::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.avis__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}

.avis-card {
    padding: 2rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.avis-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 164, 94, 0.15);
}

.avis-card__stars {
    display: flex;
    gap: 0.25rem;
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.avis-card__text {
    font-size: 0.95rem;
    color: var(--text);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.avis-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.avis-card__avatar {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 50%;
}

.avis-card__author strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--white);
}

.avis-card__author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}


/* ============================================
   FAQ
   ============================================ */
.faq {
    background: var(--primary);
}

.faq__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.faq-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1.1rem 1.25rem;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(200, 164, 94, 0.2);
}

.faq-item[open] {
    border-color: rgba(200, 164, 94, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-item summary {
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    float: right;
    color: var(--accent);
    font-size: 1.2rem;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    margin-top: 0.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}
/* ============================================
   CONTACT
   ============================================ */
.contact {
    background: var(--primary);
}

.contact__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.contact-card {
    padding: 2rem 1.5rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 164, 94, 0.2);
}

.contact-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent);
    background: rgba(200, 164, 94, 0.1);
    border-radius: var(--radius-md);
}

.contact-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--accent);
    font-weight: 500;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary-dark);
    padding: 4rem 0 0;
    border-top: 1px solid var(--glass-border);
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer__brand p {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer__links h4,
.footer__contact h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.footer__links ul li {
    margin-bottom: 0.5rem;
}

.footer__links a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer__links a:hover {
    color: var(--accent);
}

.footer__contact p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer__contact p i {
    color: var(--accent);
    width: 16px;
    text-align: center;
    font-size: 0.8rem;
}

.footer__bottom {
    border-top: 1px solid var(--glass-border);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: white;
    font-size: 1.8rem;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    color: white;
}

@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 6rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-strong);
    border: 1px solid var(--glass-border);
    color: var(--text);
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-right"] {
    transform: translateX(-30px);
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .services__grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .avis__grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .faq__grid { grid-template-columns: 1fr; max-width: 800px; margin: 0 auto; }
    .contact__grid { grid-template-columns: repeat(2, 1fr); }
    .vehicule__wrapper { grid-template-columns: 1fr; gap: 2rem; }
    .vehicule__content .section__title { text-align: center; }
    .vehicule__features { grid-template-columns: 1fr; }
    .reservation__wrapper { grid-template-columns: 1fr; }
    .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
    }

    /* Mobile nav */
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(30px);
        padding: 5rem 2rem 2rem;
        transition: var(--transition-slow);
        z-index: 1001;
        border-left: 1px solid var(--glass-border);
    }

    .nav__menu.show {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 0.25rem;
    }

    .nav__link {
        display: block;
        padding: 12px 16px;
        font-size: 1.1rem;
    }

    .nav__close {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        font-size: 1.6rem;
    }

    .nav__toggle {
        display: block;
    }

    .nav__phone span { display: none; }
    .nav__cta { display: none; }

    .hero__title { font-size: clamp(2rem, 8vw, 3rem); }

    .hero__stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .stat__divider {
        width: 60px;
        height: 1px;
    }

    .hero__cta .btn--lg {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .services__grid { grid-template-columns: 1fr; }
    .avis__grid { grid-template-columns: 1fr; }
    .tarif-grid { grid-template-columns: 1fr; }
    .contact__grid { grid-template-columns: 1fr; }

    .tarifs__tabs {
        flex-direction: column;
        align-items: center;
    }

    .tarif-tab {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .form__row { grid-template-columns: 1fr; }

    .reservation__form {
        padding: 1.5rem;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 54px;
        height: 54px;
        font-size: 1.5rem;
    }

    .back-to-top {
        right: 4.5rem;
        bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero__content { padding: 5rem 1rem 3rem; }
    .hero__badge { font-size: 0.75rem; }
    .section__title { font-size: 1.75rem; }
}

/* ============================================
   CONVERSION BOOST
   ============================================ */
.hero__microcopy {
    margin-top: -2.75rem;
    margin-bottom: 2.25rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.form__trust {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(200, 164, 94, 0.2);
    border-radius: var(--radius-md);
    background: rgba(200, 164, 94, 0.07);
}

.form__trust i {
    color: var(--accent);
}

.form__hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.55rem;
}

.form__group--consent {
    margin-top: 0.25rem;
}

.form__consent {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.6;
}

.form__consent input[type="checkbox"] {
    margin-top: 0.2rem;
    accent-color: var(--accent);
    flex-shrink: 0;
}

.form__consent a {
    color: var(--accent);
    text-decoration: underline;
}

.local-seo {
    background: var(--primary);
}

@media (max-width: 768px) {
    .hero__microcopy {
        margin-top: -1.5rem;
        margin-bottom: 1.5rem;
        font-size: 0.8rem;
    }
}
