/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Performance optimizations */
html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

:root {
    /* Palette principale - Luxe Automobile */
    --primary-color: #0A0A0C; /* Noir Obsidienne */
    --secondary-color: #141417; /* Gris Carbone */
    --tertiary-color: #1c1c21;
    --surface-color: #F8F9FA; /* Gris perle très lumineux */
    --background-color: #ffffff;

    /* Accent */
    --accent-color: #9B111E; /* Rouge Rubis Profond */
    --accent-hover: #b81424;
    --accent-light: #e62e40;
    --accent-subtle: rgba(155, 17, 30, 0.08);
    --accent-gradient: linear-gradient(135deg, var(--accent-color), var(--accent-hover));

    /* Typographie */
    --text-primary: #0A0A0C;
    --text-secondary: #36363a;
    --text-muted: #6b6b72;
    --text-light: #9aa7b8;

    /* Neutres (Restent similaires pour les bordures) */
    --white: #ffffff;
    --black: #000000;
    --gray-50: #f8fafc;
    --gray-100: #f0f3f8;
    --gray-200: #e2e8f0;
    --gray-300: #ccd6e0;
    --gray-400: #9aa7b8;
    --gray-500: #6b7a90;
    --gray-600: #52627a;
    --gray-700: #364152;
    --gray-800: #202b3c;
    --gray-900: #151e2b;

    /* Ombres & contours - Version ultra-luxe */
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.04);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 25px 60px rgba(0, 0, 0, 0.15);
    --shadow-luxury: 0 30px 80px -12px rgba(0, 0, 0, 0.25);
    --border-soft: 1px solid rgba(0, 0, 0, 0.05);
    --border-strong: 1px solid rgba(0, 0, 0, 0.12);
    --border-glass: 1px solid rgba(255, 255, 255, 0.15);
    --border-gold: 1px solid rgba(197, 160, 89, 0.3);
    
    /* Accent doré luxe */
    --gold-accent: #C5A059; /* Or Champagne raffiné */
    --gold-accent-light: rgba(197, 160, 89, 0.15);
    --gold-accent-dark: #b08d4a;

    /* Rayons - Plus nets et modernes */
    --border-radius-sm: 8px;
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    --border-pill: 999px;

    /* Transitions */
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.65;
    color: var(--text-primary);
    background-color: var(--background-color);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.75rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.6rem, 5vw, 3.4rem); }
h2 { font-size: clamp(2rem, 3vw, 2.6rem); }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

strong {
    color: var(--text-primary);
}

a {
    color: inherit;
    text-decoration: none;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 5rem 0;
}

/* Réduction de l'espacement entre sections consécutives */
.section + .section {
    padding-top: 3rem;
}

.section--light {
    background: var(--background-color);
}

.section--surface {
    background: var(--white);
}

.section--dark {
    background: var(--primary-color);
    color: var(--surface-color);
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.5rem;
}

.section-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(197, 160, 89, 0.1);
    color: var(--gold-accent-dark);
    padding: 0.6rem 1.8rem;
    border-radius: var(--border-pill);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    border: var(--border-gold);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.08);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.section-header .section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.3s ease;
}

.section-header .section-badge:hover::before {
    left: 100%;
}

.section-header h2 {
    margin-bottom: 0.75rem;
}

.section-header p {
    margin-bottom: 0;
    color: var(--text-muted);
}

/* Navigation - Version luxe */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78));
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 14px 42px rgba(9, 10, 12, 0.08), 0 1px 0 rgba(255, 255, 255, 0.82) inset;
    will-change: transform, background, box-shadow;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(155, 17, 30, 0.08) 20%,
        rgba(155, 17, 30, 0.22) 50%,
        rgba(155, 17, 30, 0.08) 80%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.navbar::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 18px;
    background: linear-gradient(180deg, rgba(155, 17, 30, 0.08), transparent 78%);
    opacity: 0.55;
    pointer-events: none;
}

.navbar.scrolled::before {
    opacity: 1;
}

.navbar.scrolled {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.9));
    box-shadow: 0 18px 44px rgba(9, 10, 12, 0.1), 0 1px 0 rgba(255, 255, 255, 0.88) inset;
    border-bottom: 1px solid rgba(10, 10, 12, 0.06);
}

.navbar.scrolled-strong {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 255, 255, 0.95)) !important;
    box-shadow: 0 22px 50px rgba(9, 10, 12, 0.12), 0 1px 0 rgba(255, 255, 255, 0.92) inset !important;
    border-bottom: 1px solid rgba(10, 10, 12, 0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.9rem 0.5rem 0;
    transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
}

.logo-container:hover {
    transform: translateY(-2px) scale(1.01);
    opacity: 0.96;
    filter: drop-shadow(0 10px 18px rgba(155, 17, 30, 0.12));
}

.logo-ar {
    width: 220px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.logo-svg {
    width: 100%;
    height: 100%;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    display: block;
}

.logo-img-small {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    display: block;
}

/* Logo blanc pour les sections sombres - géré par JavaScript */
/* Le logo blanc sera chargé automatiquement par logo-loader.js */

/* Fallback CSS si JavaScript ne charge pas le logo blanc */
.footer .logo-img-small:not([src*="logoblanc"]),
.footer .logo-img:not([src*="logoblanc"]) {
    filter: brightness(0) invert(1);
}

.section--dark .logo-img:not([src*="logoblanc"]) {
    filter: brightness(0) invert(1);
}


.logo-accent {
    color: var(--accent-color);
}

.nav-menu {
    display: flex;
    gap: 0.35rem;
    align-items: center;
    padding: 0.5rem;
    background:
        radial-gradient(circle at top left, rgba(155, 17, 30, 0.08), transparent 38%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 249, 250, 0.88));
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 22px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        0 18px 38px rgba(10, 10, 12, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 0 0 1px rgba(10, 10, 12, 0.04);
    position: relative;
    overflow: hidden;
}

.nav-menu::before {
    content: '';
    position: absolute;
    top: -70%;
    right: -10%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(155, 17, 30, 0.1), transparent 65%);
    pointer-events: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    margin-left: 1rem;
}

.nav-reserve-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.95rem 1.45rem;
    border-radius: 18px;
    background: linear-gradient(135deg, #7f0f19 0%, var(--accent-color) 100%);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(155, 17, 30, 0.22);
    box-shadow:
        0 18px 30px rgba(155, 17, 30, 0.18),
        0 1px 0 rgba(255, 255, 255, 0.22) inset;
    transition: var(--transition);
    overflow: hidden;
}

.nav-reserve-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent 55%);
    opacity: 0.75;
    transition: opacity 0.25s ease;
}

.nav-reserve-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 22px 36px rgba(155, 17, 30, 0.24),
        0 1px 0 rgba(255, 255, 255, 0.28) inset;
}

.nav-reserve-btn:hover::before {
    opacity: 1;
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    padding: 0.82rem 1.08rem;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    overflow: hidden;
    white-space: nowrap;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 1;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(155, 17, 30, 0.1) 0%,
        rgba(155, 17, 30, 0.04) 100%);
    opacity: 0;
    border-radius: 16px;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.42rem;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 58%;
    height: 2.5px;
    border-radius: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--accent-color) 50%,
        transparent 100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.nav-link:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow:
        inset 0 0 0 1px rgba(155, 17, 30, 0.08),
        0 10px 18px rgba(155, 17, 30, 0.08);
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link:active {
    transform: translateY(0);
}

.nav-link.active {
    color: var(--accent-color);
    font-weight: 800;
    background: linear-gradient(135deg,
        rgba(155, 17, 30, 0.14) 0%,
        rgba(155, 17, 30, 0.06) 100%);
    box-shadow:
        0 12px 24px rgba(155, 17, 30, 0.12),
        0 0 0 1px rgba(155, 17, 30, 0.08) inset;
}

.nav-link.active::before {
    opacity: 1;
}

.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
    background: var(--accent-color);
    width: 70%;
    height: 3px;
    box-shadow: 0 0 12px rgba(215, 38, 56, 0.5);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.8rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 249, 250, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 10px 24px rgba(10, 10, 12, 0.06);
    transition: all 0.3s ease;
    gap: 5px;
}

.nav-toggle:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(248, 249, 250, 0.92));
    transform: translateY(-2px) scale(1.03);
}

.bar {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.92) 0%, rgba(27, 38, 59, 0.85) 45%, rgba(65, 90, 119, 0.65) 100%);
    padding-top: 60px;
    position: relative;
    overflow: hidden;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Page Hero */
.page-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.95), rgba(65, 90, 119, 0.75));
    margin-top: -60px;
    padding-top: 60px;
    position: relative;
    overflow: hidden;
}

.services-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 75vh;
    margin-top: -60px;
    padding: 60px 0 6rem;
    color: var(--white);
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(15, 23, 42, 0.75) 40%, rgba(10, 10, 10, 0.6) 100%),
                url('images/vehicules/IMG_2605.jpg') center/cover no-repeat;
    overflow: hidden;
}

.services-hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(220, 38, 38, 0.45), transparent 50%);
    pointer-events: none;
}

.services-hero--editorial {
    min-height: 88vh;
    padding: 10rem 0 7rem;
    background-position: center 42%;
}

.services-hero__backdrop {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 10, 12, 0.88) 0%, rgba(10, 10, 12, 0.66) 40%, rgba(10, 10, 12, 0.84) 100%),
        radial-gradient(circle at top right, rgba(197, 160, 89, 0.18), transparent 26%),
        radial-gradient(circle at bottom left, rgba(155, 17, 30, 0.18), transparent 28%);
    pointer-events: none;
}

.services-hero__content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.services-hero__content--editorial {
    max-width: 980px;
    text-align: left;
}

.services-hero__eyebrow {
    display: inline-block;
    margin-bottom: 1.4rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.services-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(14px);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

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

.services-hero__title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
    color: var(--white);
}

.services-hero__title--editorial {
    max-width: 900px;
    font-size: clamp(3.2rem, 6vw, 5.4rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.services-hero__title span {
    color: var(--white);
}

.services-hero__subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 2.5rem;
    max-width: 560px;
}

.services-hero__subtitle--editorial {
    max-width: 760px;
    font-size: 1.16rem;
    color: rgba(255, 255, 255, 0.84);
}

/* services-hero__actions utilise maintenant les styles standardisés ci-dessus */
.services-hero__actions .btn {
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.25);
}

.services-hero__actions .btn.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.25);
}

.services-hero__actions .btn.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
}

.services-hero__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    max-width: 520px;
    margin-top: 2.5rem;
}

.services-hero__stats--editorial {
    max-width: 760px;
    border-top: none !important;
    padding-top: 0 !important;
    gap: 1rem !important;
}

.services-hero__stat {
    padding: 1.25rem 1.5rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    text-align: center;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.35);
}

.services-hero__stats--editorial .services-hero__stat {
    text-align: left;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.services-hero__stat .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.services-hero__stat .stat-label {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 768px) {
    .services-hero {
        min-height: 65vh;
        padding: 80px 0 4rem;
        text-align: center;
    }

    .services-hero--editorial {
        min-height: 72vh;
        padding: 8rem 0 4.5rem;
        background-position: center;
    }

    .services-hero__content {
        max-width: 100%;
    }

    .services-hero__content--editorial {
        text-align: center;
    }

    .services-hero__actions {
        justify-content: center;
    }

    .services-hero__stats {
        max-width: 100%;
    }

    .services-hero__title--editorial,
    .services-hero__subtitle--editorial,
    .services-hero__stats--editorial {
        max-width: 100%;
    }
}

/* Garage Hero - Original design with badge and improved visibility */
.garage-hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    margin-top: -60px;
    padding-top: 60px;
}

.garage-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.garage-hero .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.garage-hero .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.4) contrast(1.1);
    will-change: transform;
    backface-visibility: hidden;
}

.garage-hero .hero-image-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.garage-hero .fallback-content {
    text-align: center;
    color: var(--white);
    z-index: 3;
}

.garage-hero .fallback-content i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.garage-hero .fallback-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.garage-hero .fallback-content p {
    font-size: 1.2rem;
    color: var(--gray-300);
    margin: 0;
}

.garage-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 2;
}

.garage-hero .hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.garage-hero .hero-text {
    max-width: 600px;
    color: var(--white);
}

.garage-hero .header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(220, 38, 38, 0.2);
    border: 1px solid rgba(220, 38, 38, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.garage-hero .header-badge i {
    font-size: 1rem;
}

.garage-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8);
}

.garage-hero .title-line {
    display: block;
}

.garage-hero .title-line.accent {
    color: var(--accent-color);
}

.garage-hero .hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 2rem;
    max-width: 500px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.garage-hero .hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.garage-hero .stat-item {
    text-align: center;
}

.garage-hero .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.garage-hero .stat-label {
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Garage Section Styles */
.garage {
    padding: 5rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.garage-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
}

.feature-content p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.garage-locations-section {
    margin-top: 4rem;
    margin-bottom: 3rem;
}

.garage-locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.garage-location-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(13, 27, 42, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.garage-location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.garage-location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(13, 27, 42, 0.15);
    border-color: var(--accent-color);
}

.garage-location-card:hover::before {
    transform: scaleX(1);
}

.location-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.garage-location-card:hover .location-icon {
    transform: scale(1.1) rotate(5deg);
}

.location-icon i {
    font-size: 2rem;
    color: var(--white);
}

.location-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.location-address {
    margin-bottom: 2rem;
}

.location-address p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-600);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.location-address p:last-child {
    margin-bottom: 0;
}

.location-address i {
    color: var(--accent-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.location-btn,
.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    border: none;
    cursor: pointer;
}

.location-btn:hover,
.about-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.5);
    animation: buttonPulse 1.5s ease-in-out infinite;
}

.location-btn i,
.about-btn i {
    font-size: 1rem;
}

.garage-services-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3.5rem 2rem;
    border-radius: 20px;
    margin-top: 3rem;
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 500px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.service-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
}

.service-item p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}



.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    animation: fadeInUp 0.25s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight {
    color: var(--white);
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-200);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ============================================
   BOUTONS STANDARDISÉS - DESIGN UNIFORME
   ============================================ */

.hero-buttons,
.cta-buttons,
.slide-buttons,
.services-hero__actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
}

/* Espacement supplémentaire pour éviter que les boutons se collent aux sections */
.hero-buttons + .section,
.cta-buttons + .section,
.slide-buttons + .section {
    margin-top: 4rem;
}

.hero-buttons .btn + .btn,
.cta-buttons .btn + .btn,
.slide-buttons .btn + .btn,
.services-hero__actions .btn + .btn {
    margin-left: 0;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 1rem 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    font-weight: 700;
    font-size: 0.88rem;
    line-height: 1.5;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
    background: rgba(10, 10, 12, 0.86);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: var(--white);
    overflow: hidden;
    white-space: nowrap;
    min-width: auto;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: var(--transition-fast);
}

.btn:hover,
.btn:focus {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
    border-color: rgba(255, 255, 255, 0.18);
}

.btn:hover::before,
.btn:focus::before {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, #7f0f19 0%, var(--accent-color) 100%);
    color: var(--white);
    border-color: rgba(155, 17, 30, 0.35);
    box-shadow: 0 14px 30px rgba(155, 17, 30, 0.28);
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, #95111d 0%, var(--accent-hover) 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: none;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(13, 27, 42, 0.16);
    box-shadow: none;
}

.btn-outline:hover,
.btn-outline:focus {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 12px 24px rgba(10, 10, 12, 0.12);
}

.hero-image {
    animation: fadeInRight 0.25s ease-out 0.3s both;
}

.car-showcase {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-100) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.car-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transform: rotate(-5deg);
    transition: var(--transition);
}

.car-card:hover {
    transform: rotate(0deg) scale(1.05);
}

.car-image {
    width: 200px;
    height: 120px;
    background: var(--accent-color);
    border-radius: 10px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.car-image::before {
    content: '🚗';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
}

.car-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.car-info p {
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-stats {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 2;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 3rem 0 5rem;
    background: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.slogan-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.05rem;
    color: var(--accent-color);
    font-weight: 600;
    margin: 0.25rem auto 1.5rem;
    letter-spacing: 0.02em;
    text-transform: none;
    background: var(--accent-subtle);
    padding: 0.45rem 1.1rem;
    border-radius: var(--border-pill);
    position: relative;
}

.slogan-text::after {
    display: none;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 3.5rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 8px 40px rgba(13, 27, 42, 0.08);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(13, 27, 42, 0.06);
    position: relative;
    overflow: hidden;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--gold-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 80px rgba(13, 27, 42, 0.15);
    border-color: rgba(215, 38, 56, 0.2);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(215, 38, 56, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--gold-accent-light);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(215, 38, 56, 0.35);
}

.service-card:hover .service-icon::after {
    opacity: 1;
    transform: scale(1.1);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Vehicles Section */
.vehicles {
    padding: 3rem 0 5rem;
    background: transparent;
}

.vehicle-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--gray-300);
    background: var(--white);
    color: var(--text-secondary);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.vehicle-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    border: var(--border-soft);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition-slow);
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-luxury);
    border-color: rgba(0, 0, 0, 0.1);
}

.vehicle-image {
    height: 200px;
    background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.vehicle-image::before {
    content: '🚙';
    font-size: 4rem;
}

.vehicle-image.has-image::before {
    display: none;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.05);
}

.vehicle-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.vehicle-badge:not(.occasion):not(.location) {
    background: var(--accent-color);
    color: var(--white);
}

.vehicle-badge.occasion {
    background: #28a745;
    color: var(--white);
}

.vehicle-badge.location {
    background: #ffc107;
    color: var(--primary-color);
}

.vehicle-info {
    padding: 1.5rem;
}

.vehicle-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.vehicle-specs {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.vehicle-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Brands Section */
.brands {
    padding: 6rem 0;
    background: var(--black);
    color: var(--white);
}

.brands .section-header h2 {
    color: var(--white);
}

.brands .section-header p {
    color: var(--gray-300);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.brand-item {
    --brand-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.brand-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-color), rgba(255, 255, 255, 0.9));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-item:hover::before {
    transform: scaleX(1);
}

.brand-item:hover {
    transform: translateY(-8px);
    border-color: color-mix(in srgb, var(--brand-color) 65%, white 35%);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    background: color-mix(in srgb, var(--brand-color) 14%, rgba(255, 255, 255, 0.05));
}

.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.1rem;
    transition: var(--transition);
    min-height: 96px;
}

.brand-logo i {
    font-size: 2.5rem;
    color: var(--accent-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
}

.brand-item:hover .brand-logo i {
    transform: scale(1.2) translateY(-5px);
    opacity: 1;
    color: var(--gold-accent);
}

.brand-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.brand-item:hover .brand-name {
    color: var(--brand-color);
    transform: translateY(-2px);
}

.brand-logo img {
    width: auto;
    height: 42px;
    max-width: 132px;
    object-fit: contain;
    filter: none;
    opacity: 0.92;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-item:hover .brand-logo img {
    opacity: 1;
    transform: scale(1.08);
    filter: drop-shadow(0 0 14px color-mix(in srgb, var(--brand-color) 70%, transparent));
}

.brand-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.55rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.06);
}

.brand-fallback--lexus {
    border-radius: 999px;
}

.brand-fallback--range-rover {
    padding-inline: 1.2rem;
    background: color-mix(in srgb, var(--brand-color) 18%, rgba(255, 255, 255, 0.05));
}

.brand-fallback--mercedes {
    gap: 0.55rem;
}

.brand-fallback--mercedes::before {
    content: '✦';
    font-size: 0.9rem;
    line-height: 1;
}

/* Garage Section */
.garage {
    padding: 6rem 0;
    background: var(--white);
}

.garage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.garage-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.garage-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.garage-features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature i {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.feature p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.garage-image {
    position: relative;
}

.garage-showcase {
    height: 400px;
    background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.garage-showcase::before {
    content: '🔧';
    font-size: 6rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--gray-100);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top center, rgba(197, 160, 89, 0.12), transparent 38%),
        linear-gradient(180deg, #111216 0%, #09090b 100%);
    color: var(--white);
    padding: 2rem 0 0.9rem;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(180px, 42vw);
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
    opacity: 0.95;
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(280px, 1.4fr) repeat(3, minmax(160px, 1fr));
    gap: 1.2rem;
    align-items: start;
    margin-bottom: 0.9rem;
}

.footer-section:first-child {
    position: relative;
    padding: 0.85rem 0.95rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.footer-section:first-child::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(155, 17, 30, 0.1), transparent 45%);
    pointer-events: none;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.7rem;
}

.logo-ar-small {
    width: 188px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 0.6rem;
    color: var(--white);
}

.footer-section h4 {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-section h4::before {
    content: '';
    width: 18px;
    height: 1px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
}

.footer-slogan {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0.28rem 0.72rem;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
    font-size: 0.68rem;
    margin-bottom: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    border: 1px solid rgba(155, 17, 30, 0.24);
    border-radius: var(--border-pill);
    background: rgba(155, 17, 30, 0.14);
}

.footer-section p {
    color: var(--gray-400);
    line-height: 1.45;
    margin-bottom: 0.65rem;
    font-size: 0.88rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.32rem;
}

.footer-section ul li a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
    position: relative;
}

.footer-section ul li a:hover {
    color: var(--white);
}

.footer-section ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.footer-section ul li a:hover::after {
    transform: scaleX(1);
}

.social-links {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.2rem;
}

.social-links a {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
    background: rgba(155, 17, 30, 0.18);
    color: var(--white);
    border-color: rgba(155, 17, 30, 0.35);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

.newsletter {
    display: flex;
    gap: 0.4rem;
}

.newsletter input {
    flex: 1;
    min-height: 38px;
    padding: 0.62rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    font-family: inherit;
    backdrop-filter: blur(8px);
}

.newsletter input::placeholder {
    color: var(--gray-400);
}

.newsletter button {
    min-width: 40px;
    min-height: 38px;
    padding: 0.62rem 0.8rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(155, 17, 30, 0.24);
}

.newsletter button:hover {
    background: var(--accent-hover);
    box-shadow: 0 12px 24px rgba(155, 17, 30, 0.32);
}

.footer-bottom {
    text-align: center;
    padding-top: 0.9rem;
    border-top: 1px solid var(--gray-700);
    color: var(--gray-400);
    font-size: 0.86rem;
}

.legal-info {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.6rem 1rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.65rem;
    padding: 0.5rem 0.85rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

.legal-info p {
    margin: 0;
    font-size: 0.82rem;
    color: var(--white);
}

.footer .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 1.7rem 0 0.85rem;
    }

    .logo-ar-small {
        width: 168px;
        height: 48px;
    }

    .footer-section:first-child {
        padding: 0.85rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 24px;
        height: 86px;
    }

    .logo-ar {
        width: 176px;
        height: 48px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 86px;
        flex-direction: column;
        align-items: stretch;
        background:
            radial-gradient(circle at top right, rgba(155, 17, 30, 0.09), transparent 32%),
            linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 250, 0.96));
        backdrop-filter: blur(34px) saturate(200%);
        -webkit-backdrop-filter: blur(34px) saturate(200%);
        width: 100%;
        text-align: left;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow:
            0 18px 46px rgba(0, 0, 0, 0.14),
            0 1px 0 rgba(255, 255, 255, 0.9) inset;
        padding: 1.25rem 1rem 1.5rem;
        border-top: 1px solid rgba(215, 38, 56, 0.08);
        gap: 0.65rem;
        max-height: calc(100vh - 86px);
        overflow-y: auto;
        border-radius: 0 0 24px 24px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-actions {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }
    
    .nav-link {
        padding: 1.1rem 1.25rem;
        font-size: 0.95rem;
        width: 100%;
        margin: 0 auto;
        text-align: left;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.58);
        box-shadow: 0 8px 20px rgba(10, 10, 12, 0.04);
    }
    
    .nav-link::before {
        border-radius: 18px;
    }
    
    .nav-link::after {
        left: 1.3rem;
        transform: scaleX(0);
        transform-origin: left;
        bottom: 0.72rem;
        width: 72px;
    }
    
    .nav-link:hover {
        transform: translateX(6px);
        background: rgba(155, 17, 30, 0.06);
    }
    
    .nav-link.active {
        color: var(--accent-color);
        font-weight: 800;
        background: linear-gradient(135deg, 
            rgba(215, 38, 56, 0.12) 0%, 
            rgba(215, 38, 56, 0.18) 100%);
        box-shadow: 0 10px 24px rgba(215, 38, 56, 0.12),
                    0 0 0 1px rgba(215, 38, 56, 0.15) inset;
    }
    
    .nav-link.active::after {
        display: block;
        left: 1.3rem;
        transform: scaleX(1);
        width: 88px;
        height: 3px;
        box-shadow: 0 0 12px rgba(215, 38, 56, 0.5);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background: var(--accent-color);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background: var(--accent-color);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .vehicles-grid {
        grid-template-columns: 1fr;
    }

    .garage-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .logo-ar-small {
        width: 180px;
        height: 54px;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .services,
    .vehicles,
    .garage,
    .contact {
        padding: 4rem 0;
    }
}

/* Additional Styles for New Sections */

/* Service Features */
.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.service-card .feature-tag {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Garage Specialties */
.garage-specialties {
    margin-top: 2rem;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.specialty-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: var(--gray-100);
    border-radius: 10px;
    transition: var(--transition);
}

.specialty-item:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
}

.specialty-item i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.specialty-item:hover i {
    color: var(--white);
}

/* Showcase Overlay */
.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.showcase-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background: var(--gray-100);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.rating {
    color: var(--accent-color);
}

/* Map Section */
.map-section {
    padding: 6rem 0;
    background: var(--white);
}

.map-container {
    margin-top: 3rem;
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-secondary);
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.map-placeholder h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.map-placeholder p {
    margin-bottom: 0.5rem;
}

.map-placeholder .btn {
    margin-top: 1.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--gray-100);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--gray-100);
}

.faq-question h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: var(--accent-color);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Contact Form Enhancements */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    cursor: pointer;
}

/* Contact Item Enhancement */
.contact-item {
    margin-bottom: 2rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

/* Home Page New Sections */

/* Why Choose Us Section */
.why-choose-us {
    padding: 3rem 0 5rem;
    background: transparent;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.why-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--white);
    font-size: 2rem;
}

.why-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.why-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Services Preview Section */
.services-preview {
    padding: 3rem 0 2rem;
    background: transparent;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 0;
}

/* Service Links */
.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--accent-light);
    transform: translateX(5px);
}

/* Featured Vehicles Section */
.featured-vehicles {
    padding: 2.5rem 0 5rem;
    background: transparent;
}

.vehicles-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.vehicle-showcase-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(13, 27, 42, 0.08);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(13, 27, 42, 0.06);
    position: relative;
}

.vehicle-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--gold-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.vehicle-showcase-card:hover::before {
    transform: scaleX(1);
}

.vehicle-showcase-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 80px rgba(13, 27, 42, 0.15);
}

.vehicle-showcase-image {
    height: 200px;
    background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.vehicle-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vehicle-showcase-card:hover .vehicle-showcase-image img {
    transform: scale(1.08);
}

.vehicle-badge.featured {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.vehicle-showcase-info {
    padding: 2rem;
}

.vehicle-showcase-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.vehicle-specs {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.vehicle-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.vehicle-features .feature {
    background: var(--gray-100);
    color: var(--text-secondary);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.vehicle-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.vehicles-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Testimonials Home Section */
.testimonials-home {
    padding: 3rem 0 5rem;
    background: transparent;
}

/* Testimonials Grid avec rotation automatique fluide */
.testimonials-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonials-grid .testimonial-card {
    opacity: 1;
    transition: opacity 0.4s ease;
    position: relative;
    width: 100%;
    min-height: 0;
}

.testimonials-grid .testimonial-card.hidden {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    visibility: hidden;
    width: 0;
    height: 0;
    overflow: hidden;
}

.testimonials-grid .testimonial-card.visible {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    position: relative;
}

/* Boutons de navigation discrets */
.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.testimonials-grid:hover ~ .testimonials-nav,
.testimonials-nav:hover {
    opacity: 1;
}

.testimonials-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(215, 38, 56, 0.3);
    background: rgba(255, 255, 255, 0.9);
    color: var(--accent-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.testimonials-nav-btn:hover {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(215, 38, 56, 0.2);
}

.testimonials-nav-btn:active {
    transform: scale(0.95);
}

@media (max-width: 968px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        min-height: 300px;
    }
}

.quote-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    opacity: 0.3;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--gray-800));
    color: var(--white);
}

.cta-content {
    text-align: center;
}

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Styles spécifiques pour cta-buttons - déjà défini ci-dessus */
.cta-buttons .btn {
    min-width: 180px;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .specialties-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    /* Home Page Responsive */
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .vehicles-showcase {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-text h2 {
        font-size: 2rem;
    }
    
    .cta-text p {
        font-size: 1rem;
    }
}

/* Enhanced Visual Effects and Animations */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Enhanced Card Hover Effects */
.service-card, .why-card, .vehicle-showcase-card, .testimonial-card {
    position: relative;
    overflow: hidden;
}

.service-card::before, .why-card::before, .vehicle-showcase-card::before, .testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-gradient);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover::before, .why-card:hover::before, .vehicle-showcase-card:hover::before, .testimonial-card:hover::before {
    opacity: 0.05;
}

/* Floating Animation Enhancement */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(2deg);
    }
    66% {
        transform: translateY(-5px) rotate(-1deg);
    }
}

@keyframes floatReverse {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-8px) rotate(-2deg);
    }
    66% {
        transform: translateY(-3px) rotate(1deg);
    }
}

.floating-car {
    animation: float 6s ease-in-out infinite;
}

.floating-gear {
    animation: floatReverse 8s ease-in-out infinite;
}

.floating-star {
    animation: float 7s ease-in-out infinite;
}

/* Enhanced Glow Effects */
.why-icon, .service-icon {
    position: relative;
}

.why-icon::after, .service-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: var(--accent-gradient);
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
    transition: var(--transition);
    z-index: -1;
}

.why-card:hover .why-icon::after, .service-card:hover .service-icon::after {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
}

/* Enhanced Text Animations */
.hero-title {
    color: var(--white);
}

/* Enhanced Background Patterns */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(220, 38, 38, 0.05) 0%, transparent 50%);
    z-index: -1;
}

/* Enhanced Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Enhanced Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.shimmer-effect {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    background-size: 200px 100%;
    animation: shimmer 2s infinite;
}

/* Enhanced Focus States */
.nav-link:focus, .btn:focus, input:focus, textarea:focus, select:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Enhanced Selection */
::selection {
    background: var(--accent-color);
    color: var(--white);
}

::-moz-selection {
    background: var(--accent-color);
    color: var(--white);
}

/* Enhanced Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gradient);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-dark);
}

/* Enhanced Mobile Touch Effects */
@media (hover: none) and (pointer: coarse) {
    .btn:active {
        transform: scale(0.95);
    }
    
    .service-card:active, .why-card:active, .vehicle-showcase-card:active {
        transform: scale(0.98);
    }
}

/* Modern About Page Styles */

/* Modern Hero Section */
.modern-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(220, 38, 38, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(220, 38, 38, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(220, 38, 38, 0.2), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255, 255, 255, 0.1), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(220, 38, 38, 0.1) 0%,
        transparent 50%,
        rgba(220, 38, 38, 0.05) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}


.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}

.title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
    animation: wordReveal 0.4s ease forwards;
}

.title-word:nth-child(1) { animation-delay: 0.1s; }
.title-word:nth-child(2) { animation-delay: 0.2s; }
.title-word:nth-child(3) { animation-delay: 0.3s; }
.title-word:nth-child(4) { animation-delay: 0.4s; }

@keyframes wordReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-word.highlight {
    color: var(--white);
    position: relative;
}

.title-word.highlight::after {
    display: none;
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-cta {
    margin-bottom: 4rem;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-modern.primary {
    background: var(--accent-color);
    color: white;
    box-shadow: 0 10px 30px rgba(215, 38, 56, 0.3);
}

.btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
}

.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}


@keyframes floatAround {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(-3deg); }
    75% { transform: translateY(-15px) rotate(2deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: white;
    opacity: 0.7;
    z-index: 2;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--accent-color));
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Modern Leadership Section */
.leadership-modern {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
}

.section-header-modern {
    text-align: center;
    margin-bottom: 5rem;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-gradient);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.section-title-modern {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.title-line {
    width: 80px;
    height: 4px;
    background: var(--accent-gradient);
    margin: 0 auto;
    border-radius: 2px;
}

.leadership-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.director-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
}

.director-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-gradient);
    opacity: 0.02;
    z-index: 0;
}

.card-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(220, 38, 38, 0.3) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.director-card:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--accent-color);
    font-weight: 600;
}

.card-decoration {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
}

.card-content {
    padding: 3rem;
    position: relative;
    z-index: 1;
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.director-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.director-role {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
}

.director-quote {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 16px;
    border-left: 4px solid var(--accent-color);
}

.director-quote i {
    color: var(--accent-color);
    font-size: 1.5rem;
    opacity: 0.7;
}

.director-quote p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 1rem 0;
}

.director-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* History Timeline Section */
.history-section {
    padding: 8rem 0;
    background: var(--white);
    position: relative;
}

.history-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-gradient);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.marker-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.timeline-line {
    width: 2px;
    height: 100px;
    background: var(--accent-gradient);
    margin-top: 1rem;
}

.timeline-content {
    flex: 1;
    padding: 0 3rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 2rem;
    padding: 2rem;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.timeline-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Values Section */
.values-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.value-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.value-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Modern Stats Section */
.stats-modern {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--gray-800) 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-card-modern {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-card-modern:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-card-modern .stat-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.stat-card-modern .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-card-modern .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .timeline-item {
        flex-direction: column !important;
        text-align: center;
    }
    
    .timeline-content {
        margin: 2rem 0;
    }
    
    .history-timeline::before {
        left: 30px;
    }
    
    .timeline-marker {
        position: absolute;
        left: 0;
    }
    
    .director-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title-modern {
        font-size: 2rem;
    }
    
    .director-name {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Leadership Section Premium Styles */

.leadership-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.leadership-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(220, 38, 38, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(220, 38, 38, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.leadership-content {
    position: relative;
    z-index: 1;
}

.director-profile {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}

.director-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.director-image {
    position: relative;
    width: 350px;
    height: 450px;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.director-image:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.director-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.director-image:hover img {
    transform: scale(1.05);
}

.director-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(220, 38, 38, 0.2) 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.director-image:hover .director-overlay {
    opacity: 1;
}

.director-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--accent-color);
    font-weight: 600;
    box-shadow: var(--shadow);
}

.director-badge i {
    font-size: 1.2rem;
}

.director-frame {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--accent-color);
    border-radius: var(--border-radius-xl);
    opacity: 0.3;
    z-index: -1;
}

.director-info {
    padding-left: 2rem;
}

.director-header {
    margin-bottom: 2rem;
}

.director-name {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.director-title {
    font-size: 1.3rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
}

.director-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.director-slogan {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-color);
    position: relative;
    margin-bottom: 2rem;
}

.director-slogan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-gradient);
    opacity: 0.05;
    border-radius: var(--border-radius-lg);
    z-index: -1;
}

.director-slogan i {
    color: var(--accent-color);
    font-size: 1.5rem;
    opacity: 0.7;
}

.director-slogan span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.6;
    font-style: italic;
    margin: 0 1rem;
}

.director-description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
}

.director-description p {
    margin-bottom: 2rem;
}

.director-achievements {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.achievement-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
    border-left-color: var(--accent-color);
}

.achievement-item i {
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.achievement-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.achievement-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive Design for Leadership Section */
@media (max-width: 768px) {
    .leadership-section {
        padding: 4rem 0;
    }
    
    .director-profile {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .director-image {
        width: 280px;
        height: 350px;
        margin: 0 auto;
    }
    
    .director-info {
        padding-left: 0;
    }
    
    .director-name {
        font-size: 2.2rem;
    }
    
    .director-title {
        font-size: 1.1rem;
    }
    
    .director-slogan {
        padding: 1.5rem;
    }
    
    .director-slogan span {
        font-size: 1rem;
        margin: 0 0.5rem;
    }
    
    .director-achievements {
        grid-template-columns: 1fr;
    }
    
    .achievement-item {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .director-image {
        width: 250px;
        height: 320px;
    }
    
    .director-name {
        font-size: 1.8rem;
    }
    
    .director-slogan span {
        font-size: 0.95rem;
    }
}

/* Professional Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: -60px; /* Compensate for navbar height */
    padding-top: 60px; /* Add padding for content visibility */
    top: 0;
    left: 0;
    right: 0;
    width: 100vw; /* Full viewport width */
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.25s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.placeholder-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: white;
    font-size: 2rem;
    text-align: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 12, 0.75) 0%,
        rgba(10, 10, 12, 0.3) 50%,
        rgba(10, 10, 12, 0.85) 100%
    );
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.content-wrapper {
    max-width: 800px;
    color: white;
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(197, 160, 89, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: var(--border-gold);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.slide-badge i {
    color: var(--gold-accent);
}

.slide-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.slide-title .highlight {
    color: var(--white);
}

.slide-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
}

.slide-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    font-weight: 500;
}

/* slide-buttons utilise maintenant les styles standardisés ci-dessus */
.slide-buttons .btn-primary {
    background: linear-gradient(135deg, #7f0f19 0%, var(--accent-color) 100%);
    color: white;
    border: none;
    box-shadow: 0 14px 34px rgba(155, 17, 30, 0.32);
}

.slide-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(155, 17, 30, 0.38);
}

.slide-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slide-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-3px);
}

/* Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 4;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.dot.active {
    background: var(--accent-color);
    border-color: white;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 4;
    pointer-events: none;
}

.nav-arrow {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.nav-arrow.prev {
    left: 2rem;
}

.nav-arrow.next {
    right: 2rem;
}



/* Slider Responsive Design */
@media (max-width: 768px) {
    .slide-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .slide-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .nav-arrow {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .nav-arrow.prev {
        left: 1rem;
    }
    
    .nav-arrow.next {
        right: 1rem;
    }
    
    
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
}

/* ===============================================
   CONTACT PAGE MODERN STYLES
   =============================================== */

/* Contact Hero Modern */
.contact-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    margin-top: -60px;
    padding-top: 60px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    filter: brightness(0.4) contrast(1.2);
    will-change: transform;
    backface-visibility: hidden;
}

.hero-image-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.fallback-content {
    text-align: center;
    color: white;
}

.fallback-content i {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.fallback-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fallback-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 2;
}


.hero-content {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    text-align: center;
}

.hero-text {
    color: white;
    max-width: 800px;
    width: 100%;
}


.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    animation: slideInUp 0.25s ease-out;
    color: var(--white);
}

.title-line.accent {
    color: var(--white);
    animation-delay: 0.2s;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    animation: slideInUp 0.25s ease-out 0.4s both;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    animation: slideInUp 0.25s ease-out 0.3s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    animation: slideInUp 0.25s ease-out 0.4s both;
}

.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--accent-color);
    color: white;
    padding: 0.9rem 1.5rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(215, 38, 56, 0.3);
}

.btn-primary-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(215, 38, 56, 0.35);
    gap: 0.8rem;
}

.btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.9rem 1.5rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    gap: 0.8rem;
}


/* Contact Section Modern */
.contact-modern {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-header-modern {
    text-align: center;
    margin-bottom: 4rem;
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.decoration-line {
    width: 60px;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: 1px;
}

.decoration-circle {
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.section-title-modern {
    position: relative;
    margin-bottom: 1rem;
}


.title-text {
    position: relative;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    z-index: 2;
}

.section-subtitle-modern {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-modern {
    display: grid;
    gap: 2rem;
}

.contact-card-modern {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.05), transparent);
    transition: left 0.3s;
}

.contact-card-modern:hover::before {
    left: 100%;
}

.contact-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.card-icon-modern {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.card-content-modern h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.card-content-modern p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.address-detail {
    font-weight: 500;
    color: var(--text-dark);
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.phone-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: var(--accent-hover);
}

.email-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: var(--accent-hover);
}

.response-time {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.day {
    font-weight: 500;
    color: var(--text-dark);
}

.time {
    font-weight: 600;
    color: var(--accent-color);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.card-link:hover {
    gap: 0.8rem;
}

/* Contact Form Modern */
.contact-form-modern {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-gradient);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-light);
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.input-group-modern {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    z-index: 2;
    font-size: 1.1rem;
}

.input-group-modern input,
.input-group-modern textarea {
    width: 100%;
    padding: 1.2rem 1rem 1.2rem 3rem;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    font-size: 1rem;
    background: #f8f9fa;
    transition: all 0.3s ease;
    outline: none;
}

.input-group-modern textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.input-group-modern input:focus,
.input-group-modern textarea:focus {
    border-color: var(--accent-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.input-group-modern label {
    position: absolute;
    left: 3rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.input-group-modern input:focus + label,
.input-group-modern input:valid + label,
.input-group-modern textarea:focus + label,
.input-group-modern textarea:valid + label {
    top: 0;
    left: 1rem;
    font-size: 0.85rem;
    color: var(--accent-color);
    background: white;
    padding: 0 0.5rem;
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.input-group-modern input:focus ~ .input-line,
.input-group-modern textarea:focus ~ .input-line {
    width: 100%;
}

.textarea-group {
    grid-column: 1 / -1;
}

.select-group-modern {
    position: relative;
}

.select-group-modern select {
    width: 100%;
    padding: 1.2rem 3rem 1.2rem 3rem;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    font-size: 1rem;
    background: #f8f9fa;
    transition: all 0.3s ease;
    outline: none;
    appearance: none;
    cursor: pointer;
}

.select-group-modern select:focus {
    border-color: var(--accent-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    pointer-events: none;
}

.checkbox-group-modern {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-group-modern input[type="checkbox"] {
    display: none;
}

.checkbox-group-modern input[type="checkbox"]:checked + .checkbox-label .checkbox-custom {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.checkbox-group-modern input[type="checkbox"]:checked + .checkbox-label .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.submit-btn-modern {
    position: relative;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    align-self: center;
    min-width: 180px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.submit-btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.3);
}

.submit-btn-modern:active {
    transform: translateY(0);
}

.btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.submit-btn-modern:active .btn-ripple {
    width: 300px;
    height: 300px;
}

/* Map Section Modern */
.map-section-modern {
    padding: 6rem 0;
    background: #0d1b2a;
    color: #ffffff;
}

.map-section-modern .section-header-modern,
.map-section-modern .section-subtitle-modern,
.map-section-modern .detail-card,
.map-section-modern .map-card-modern {
    color: #ffffff;
}

.map-container-modern {
    display: block;
    width: 100%;
}

.map-card-modern {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.map-visual {
    position: relative;
    height: 600px;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.95), rgba(65, 90, 119, 0.85));
}

.map-visual iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    position: relative;
    z-index: 1;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(13, 27, 42, 0.95));
    padding: 2rem;
    z-index: 2;
    pointer-events: none;
}

.location-info {
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
}

.location-info h4 {
    color: rgba(255, 255, 255, 0.95);
}

.location-info p {
    color: rgba(255, 255, 255, 0.8);
}

.map-actions {
    padding: 2rem;
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.map-btn-modern {
    flex: 1;
    min-width: 150px;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-btn-modern.primary {
    background: var(--accent-color);
    color: white;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.25);
}

.map-btn-modern.secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.map-btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.3);
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.detail-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.detail-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: white;
}

.detail-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* FAQ Section Modern */
.faq-section-modern {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-container-modern {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-modern {
    background: white;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.faq-question-modern {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.faq-question-modern:hover {
    background: rgba(220, 38, 38, 0.02);
}

.question-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.question-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.question-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.question-arrow {
    color: var(--accent-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item-modern.active .question-arrow {
    transform: rotate(180deg);
}

.faq-answer-modern {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item-modern.active .faq-answer-modern {
    max-height: 300px;
}

.answer-content {
    padding: 0 2rem 2rem;
    border-top: 1px solid rgba(220, 38, 38, 0.1);
}

.answer-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.answer-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(220, 38, 38, 0.05);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.answer-highlight i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.answer-highlight span {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-image img {
        object-position: center center;
    }
    
    
    .contact-grid-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row-modern {
        grid-template-columns: 1fr;
    }
    
    .map-container-modern {
        width: 100%;
    }
    
    .map-visual {
        height: 450px;
    }
    
    .map-actions {
        flex-direction: column;
    }
    
    
    .title-text {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-form-modern {
        padding: 2rem;
    }
    
    .contact-card-modern {
        padding: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .map-visual {
        height: 400px;
    }
}

/* Remove duplicate scrollbar styles - already defined above */

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}

/* ===============================================
   RESERVATION PAGE STYLES
   =============================================== */

/* Reservation Hero */
.reservation-hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    margin-top: -60px;
    padding-top: 60px;
}

.reservation-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.reservation-hero .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.reservation-hero .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    filter: brightness(0.4) contrast(1.2);
    will-change: transform;
    backface-visibility: hidden;
}

.reservation-hero .hero-image-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.reservation-hero .fallback-content {
    text-align: center;
    color: white;
}

.reservation-hero .fallback-content i {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.reservation-hero .fallback-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reservation-hero .fallback-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.reservation-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 2;
}

.reservation-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.reservation-hero .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.reservation-hero .title-line {
    display: block;
    animation: slideInUp 0.25s ease-out;
}

.reservation-hero .title-line.accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.2s;
}

.reservation-hero .hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    animation: slideInUp 0.25s ease-out 0.4s both;
}

.reservation-hero .hero-stats {
    display: flex;
    gap: 2rem;
    animation: slideInUp 0.25s ease-out 0.3s both;
    justify-content: center;
    flex-wrap: wrap;
}

.reservation-hero .stat-item {
    text-align: center;
}

.reservation-hero .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
}

.reservation-hero .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Reservation Form Section */
.reservation-form-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.reservation-form-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

/* Form Steps */
.form-steps {
    display: flex;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
}

.step {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 2rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: var(--gray-300);
}

.step.active {
    background: var(--accent-gradient);
    color: white;
}

.step.active .step-number {
    background: white;
    color: var(--accent-color);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-300);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.step-content p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0;
}

/* Form Steps */
.form-step {
    display: none;
    padding: 3rem;
}

.form-step.active {
    display: block;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--gray-100);
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.form-header h3 i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Options Grid */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.option-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.option-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.1);
}

.option-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.option-header i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.option-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.option-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.option-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Confirmation Summary */
.confirmation-summary {
    display: grid;
    gap: 2rem;
}

.summary-section {
    background: var(--gray-50);
    border-radius: 15px;
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
}

.summary-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.summary-section h4 i {
    color: var(--accent-color);
}

.summary-content p {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.summary-content p:last-child {
    margin-bottom: 0;
}

.total-section {
    background: var(--accent-gradient);
    color: white;
    border-left: none;
}

.total-section h4 {
    color: white;
}

.total-amount {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-top: 1rem;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

.btn-nav {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.prev-btn {
    background: var(--gray-300);
    color: var(--text-primary);
}

.prev-btn:hover {
    background: var(--gray-400);
    transform: translateY(-2px);
}

.next-btn, .submit-btn {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
}

.next-btn:hover, .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.3);
}

/* Reservation Benefits */
.reservation-benefits {
    padding: 6rem 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Scroll to Form Button */
.scroll-to-form {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--accent-gradient);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
}

.scroll-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
}

.scroll-button i {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

.scroll-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.3s;
}

.scroll-button:hover::before {
    left: 100%;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.reservation-btn {
    background: var(--accent-gradient);
    animation-delay: 0s;
}

.whatsapp-btn {
    background: #25D366;
    animation-delay: 1s;
}

.btn-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--text-primary);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.btn-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--text-primary);
}

.floating-btn:hover .btn-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* Responsive Design for Reservation */
@media (max-width: 768px) {
    .form-steps {
        flex-direction: column;
    }
    
    .step {
        padding: 1.5rem;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
    
    .form-step {
        padding: 2rem;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 1rem;
        padding: 2rem;
    }
    
    .btn-nav {
        width: 100%;
        justify-content: center;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-buttons {
        bottom: 1rem;
        right: 1rem;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .btn-tooltip {
        display: none;
    }
    
    .scroll-to-form {
        bottom: 1rem;
    }
    
    .scroll-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .scroll-button span {
        display: none;
    }
    
    .scroll-button i {
        font-size: 1.5rem;
    }
    
    .garage-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .garage-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .garage-hero .hero-stats {
        gap: 1.5rem;
    }
    
    .garage-hero .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .garage-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .garage-services-section {
        padding: 3rem 1rem;
    }
}

@media (max-width: 480px) {
    .reservation-hero .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-step {
        padding: 1.5rem;
    }
    
    .option-card {
        padding: 1.5rem;
    }
    
    .summary-section {
        padding: 1.5rem;
    }
}

.map-section-modern .section-title-modern,
.map-section-modern .section-title-modern .title-text {
    color: #ffffff;
}

/* ============================================
   Page À Propos - Style Minimaliste
   ============================================ */

/* Page À Propos - Fond noir complet */
body:has(.about-story-section) {
    background: #000000;
}

/* Navbar sur page À propos */
body:has(.about-story-section) .navbar {
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
}

body:has(.about-story-section) .navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

body:has(.about-story-section) .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

body:has(.about-story-section) .nav-link:hover,
body:has(.about-story-section) .nav-link.active {
    color: var(--accent-color);
}

body:has(.about-story-section) .logo-text h2,
body:has(.about-story-section) .logo-text p {
    color: rgba(255, 255, 255, 0.9);
}

.about-page-hero {
    position: relative;
    padding: 11rem 0 7rem;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.about-page-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(10,10,12,0.82), rgba(10,10,12,0.97)),
        radial-gradient(circle at top center, rgba(197,160,89,0.16), transparent 32%);
}

.about-page-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-page-hero__badge {
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: var(--gold-accent);
    margin: 0 auto 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
}

.about-page-hero__title {
    color: white;
    font-size: clamp(3rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
}

.about-page-hero__title span {
    color: var(--gold-accent);
    font-style: italic;
    font-weight: 300;
}

.about-page-hero__subtitle {
    color: rgba(255,255,255,0.72);
    font-size: 1.18rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-story-section,
.about-founder-section,
.about-meet-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0a0a0c, #101116);
    position: relative;
    color: #ffffff;
    overflow: hidden;
}

/* Fond léger en arrière-plan */
.about-story-section::before,
.about-founder-section::before,
.about-meet-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(600px circle at 15% 20%, rgba(212, 175, 55, 0.06), transparent 60%),
        radial-gradient(500px circle at 85% 80%, rgba(220, 38, 38, 0.06), transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-content-wrapper.reverse {
    grid-template-columns: 1fr 1fr;
}

.about-content-wrapper.reverse .about-text-block {
    order: 2;
}

.about-content-wrapper.reverse .about-images-collage {
    order: 1;
}

.about-text-block {
    max-width: 600px;
    position: relative;
    z-index: 1;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.about-text-block.animate {
    opacity: 0;
    transform: translateY(30px);
}

.about-text-block.animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-kicker {
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.64);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.about-title {
    font-family: 'Poppins', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #D4AF37;
    margin-bottom: 2rem;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, transparent);
    transition: width 0.3s ease;
}

.about-text-block:hover .about-title::after {
    width: 100%;
}

.about-title:hover {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    transform: translateX(5px);
}

.about-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #E0E0E0;
    margin-bottom: 2rem;
}

.about-highlight {
    display: grid;
    gap: 0.45rem;
    max-width: 460px;
    margin-top: 2rem;
    padding: 1.2rem 1.3rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.about-highlight strong {
    color: var(--white);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-highlight span {
    color: rgba(255,255,255,0.76);
    line-height: 1.6;
}

/* about-btn styles déjà définis ci-dessus avec location-btn */

/* Images simples */
.about-image-block {
    position: relative;
    z-index: 1;
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.4s ease-out 0.2s, transform 0.4s ease-out 0.2s;
}

.about-image-block.animate {
    opacity: 0;
    transform: translateX(30px);
}

.about-image-block.animate.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-image-block::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(220, 38, 38, 0.3));
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(20px);
}

.about-image-block:hover::before {
    opacity: 1;
}

.about-image-block .about-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.about-image-block:hover .about-image {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
}

/* Collage d'images */
.about-images-collage {
    position: relative;
    width: 100%;
    height: 540px;
    z-index: 1;
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.4s ease-out 0.2s, transform 0.4s ease-out 0.2s;
}

.about-images-collage.animate {
    opacity: 0;
    transform: translateX(-30px);
}

.about-images-collage.animate.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-content-wrapper.reverse .about-images-collage.animate {
    transform: translateX(30px);
}

.about-content-wrapper.reverse .about-images-collage.animate.visible {
    transform: translateX(0);
}

.collage-image {
    position: absolute;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.collage-image:hover {
    transform: scale(1.05) translateY(-5px);
    z-index: 10 !important;
}

.collage-image:hover .about-image {
    filter: brightness(1.1);
}

.collage-image.main {
    width: 400px;
    height: 480px;
    top: 0;
    left: 0;
    z-index: 2;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8);
}

.collage-image.secondary {
    width: 280px;
    height: 340px;
    top: 140px;
    left: 220px;
    z-index: 2;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8);
}

.collage-image.secondary.bottom-left {
    top: auto;
    bottom: 0;
    left: 0;
    z-index: 3;
}

.collage-image .about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.collage-image.main:hover .about-image {
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.5);
}

.collage-image.secondary:hover .about-image,
.collage-image.secondary.bottom-left:hover .about-image {
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.5);
}

/* Ligne courbe décorative */
.about-story-section::after,
.about-founder-section::before,
.about-meet-section::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 200px;
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.5), transparent);
    left: 50%;
    transform: translateX(-50%) rotate(15deg);
    opacity: 0.5;
    z-index: 0;
}

.about-story-section::after {
    bottom: -100px;
}

.about-founder-section::before {
    top: -100px;
}

.about-meet-section::after {
    bottom: -100px;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-content-wrapper.reverse .about-text-block,
    .about-content-wrapper.reverse .about-images-collage {
        order: 0;
    }
    
    .about-images-collage {
        height: 460px;
    }
    
    .collage-image.main {
        width: 340px;
        height: 430px;
    }
    
    .collage-image.secondary {
        width: 230px;
        height: 290px;
        left: 170px;
    }
}

@media (max-width: 768px) {
    .about-story-section,
    .about-founder-section,
    .about-meet-section {
        padding: 4rem 0;
    }
    
    .about-container {
        padding: 0 20px;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-description {
        font-size: 1rem;
    }

    .about-page-hero {
        padding: 9rem 0 5rem;
    }
    
    .about-images-collage {
        height: 340px;
    }
    
    .collage-image.main {
        width: 240px;
        height: 300px;
    }
    
    .collage-image.secondary {
        width: 160px;
        height: 200px;
        left: 120px;
        top: 90px;
    }
}

@media (max-width: 480px) {
    .about-images-collage {
        height: 280px;
    }
    
    .collage-image.main {
        width: 190px;
        height: 240px;
    }
    
    .collage-image.secondary {
        width: 120px;
        height: 160px;
        left: 90px;
        top: 60px;
    }
}

/* =========================================================================
   EDITORIAL LUXURY REDESIGN V2
   ========================================================================= */

/* 1. SECTION: L'Héritage (Intro) */
.editorial-intro { padding: 8rem 0; overflow: hidden; background: var(--surface-color); }
.editorial-container { display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; align-items: center; }
.editorial-text h2 { font-size: clamp(2.5rem, 5vw, 4rem); color: var(--primary-color); letter-spacing: -0.03em; margin: 1.5rem 0 2rem; }
.editorial-text p { font-size: 1.25rem; color: var(--text-secondary); line-height: 1.9; margin-bottom: 3rem; }
.editorial-visuals { position: relative; height: 600px; }
.visual { position: absolute; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-luxury); }
.visual img { width: 100%; height: 100%; object-fit: cover; }
.primary-visual { width: 70%; height: 85%; top: 0; left: 0; z-index: 1; }
.secondary-visual { width: 60%; height: 75%; bottom: 0; right: 0; z-index: 2; border: 10px solid var(--white); }
.experience-badge { position: absolute; bottom: -2rem; right: -2rem; background: var(--gold-accent); color: white; padding: 2.5rem; border-radius: 24px; text-align: center; box-shadow: 0 20px 40px rgba(197, 160, 89, 0.4); z-index: 3;}
.experience-badge .number { font-size: 3.5rem; font-weight: 800; font-family: 'Outfit'; display: block; line-height: 1; margin-bottom: 0.5rem;}
.experience-badge .text { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; line-height: 1.2;}

/* 2. SECTION: Véhicules Staggered */
.featured-vehicles-section { padding: 10rem 0; background: var(--white); }
.featured-vehicles-section .vehicle-image::before { display: none; content: none; }
.section-header-split { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 5rem; }
.section-header-split h2 { font-size: clamp(2rem, 4vw, 3rem); margin-top: 1rem; }
.vehicles-staggered-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; align-items: flex-start; }
.staggered-card.elevated { transform: translateY(40px); }
.staggered-card:hover.elevated { transform: translateY(30px); }
.featured-vehicles-section .vehicle-card { overflow: hidden; }
.featured-vehicles-section .vehicle-image { height: 280px; background: #0f1013; }
.vehicle-media-carousel { position: relative; isolation: isolate; }
.vehicle-media-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.55s ease, transform 0.7s ease;
}
.vehicle-media-slide.is-active {
    opacity: 1;
    transform: scale(1);
}
.vehicle-media-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 12, 0.06) 0%, rgba(10, 10, 12, 0.36) 100%);
}
.vehicle-media-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vehicle-media-controls {
    position: absolute;
    inset: auto 1rem 1rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 6;
    pointer-events: none;
}
.vehicle-media-btn {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(10, 10, 12, 0.42);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: auto;
}
.vehicle-media-btn:hover {
    background: rgba(155, 17, 30, 0.85);
    border-color: rgba(255, 255, 255, 0.28);
    transform: translateY(-2px);
}
.vehicle-media-dots {
    position: absolute;
    left: 50%;
    bottom: 1.15rem;
    transform: translateX(-50%);
    display: flex;
    gap: 0.45rem;
    z-index: 6;
}
.vehicle-media-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
    transition: var(--transition);
}
.vehicle-media-dot.is-active {
    width: 26px;
    background: var(--white);
}
.glass-tag { position: absolute; top: 1.5rem; right: 1.5rem; background: rgba(10, 10, 12, 0.6); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); color: white; padding: 0.6rem 1.2rem; border-radius: 50px; font-weight: 600; font-size: 0.8rem; letter-spacing: 0.1em; border: 1px solid rgba(255, 255, 255, 0.1); z-index: 10;}
.glass-tag.gold { background: rgba(197, 160, 89, 0.7); }
.glass-tag.dark { background: rgba(155, 17, 30, 0.8); }
.vehicle-showcase-info { padding: 2.5rem 2rem; }
.vehicle-showcase-info h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.vehicle-showcase-info p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 2rem; }
.vehicle-action { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(0,0,0,0.05); padding-top: 1.5rem; }
.price-text { font-size: 1.3rem; font-weight: 700; color: var(--primary-color); }
.price-text small { font-size: 0.9rem; color: var(--text-muted); font-weight: 400; }
.icon-btn { width: 45px; height: 45px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.1); display: flex; align-items: center; justify-content: center; color: var(--primary-color); transition: all 0.3s ease; }
.staggered-card:hover .icon-btn { background: var(--primary-color); color: white; transform: rotate(-45deg); }

/* 3. SECTION: Services Carbon Glow */
.services-dark-section { background: var(--primary-color); padding: 10rem 0; color: white; position: relative; overflow: hidden; }
.carbon-bg-glow { position: absolute; top: -20%; left: -10%; width: 120%; height: 140%; background: radial-gradient(circle at 50% 50%, rgba(197, 160, 89, 0.08) 0%, transparent 60%); pointer-events: none; }
.services-container { position: relative; z-index: 2; }
.section-header.center { text-align: center; margin-bottom: 5rem; }
.dark-badge { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: var(--gold-accent); }
.section-header.center h2 { color: white; margin-top: 1.5rem; font-size: clamp(2.5rem, 5vw, 3.8rem); line-height:1.1;}
.services-portrait-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; margin-bottom: 4rem; }
.service-portrait-card { position: relative; padding: 4rem 3rem; background: rgba(255,255,255,0.015); border: 1px solid rgba(255,255,255,0.04); border-radius: 32px; text-align: center; transition: all 0.4s ease; overflow: hidden; }
.service-glow { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 50% 0%, rgba(197, 160, 89, 0.15) 0%, transparent 70%); opacity: 0; transition: opacity 0.5s ease; }
.service-portrait-card.featured { border-color: rgba(197, 160, 89, 0.3); background: rgba(255,255,255,0.03); }
.service-portrait-card.featured .service-glow { opacity: 1; }
.service-portrait-card:hover { transform: translateY(-15px); border-color: rgba(197, 160, 89, 0.5); background: rgba(255,255,255,0.04); box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
.service-portrait-card:hover .service-glow { opacity: 1; }
.service-portrait-card i { position: relative; z-index: 2; font-size: 3.5rem; color: var(--gold-accent); margin-bottom: 2rem; display: inline-block; }
.service-portrait-card h3 { position: relative; z-index: 2; color: white; font-size: 1.8rem; margin-bottom: 1.5rem; }
.service-portrait-card p { position: relative; z-index: 2; color: rgba(255,255,255,0.6); font-size: 1.1rem; line-height: 1.7; }
.services-cta-bottom { text-align: center; }
.btn-outline.dark { border-color: rgba(255,255,255,0.2); color: white; }
.btn-outline.dark:hover { background: white; color: var(--primary-color); }

.garage-service-media {
    position: relative;
    height: 180px;
    margin: -1.2rem -0.8rem 2rem;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}

.garage-service-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 12, 0.05) 0%, rgba(10, 10, 12, 0.38) 100%);
}

.garage-service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.service-portrait-card:hover .garage-service-media img {
    transform: scale(1.06);
}

.garage-editorial-visuals {
    position: relative;
    min-height: 760px;
}

.garage-visual-main {
    width: 72%;
    height: 86%;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
}

.garage-visual-secondary {
    position: absolute;
    right: 0;
    width: 46%;
    height: 34%;
    border-radius: 24px;
    overflow: hidden;
    border: 8px solid var(--white);
    box-shadow: 0 20px 44px rgba(10, 10, 12, 0.16);
    z-index: 3;
}

.garage-visual-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.garage-visual-secondary--top {
    top: 4%;
}

.garage-visual-secondary--bottom {
    bottom: 4%;
}

/* 3B. SECTION: ISO Quality */
.iso-quality-section {
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
    background: linear-gradient(180deg, #0c0d10 0%, #131419 100%);
    color: var(--white);
}

.iso-quality-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top center, rgba(197, 160, 89, 0.14), transparent 34%),
        radial-gradient(circle at bottom left, rgba(155, 17, 30, 0.12), transparent 30%);
    pointer-events: none;
}

.iso-quality-container {
    position: relative;
    z-index: 1;
}

.iso-quality-header {
    max-width: 860px;
    margin: 0 auto 4rem;
}

.iso-quality-badge {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.16);
    color: var(--gold-accent);
}

.iso-quality-badge span,
.iso-quality-header h2 {
    color: var(--white);
}

.iso-quality-header p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    line-height: 1.8;
}

.iso-quality-hero-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 24px 60px rgba(0,0,0,0.28);
}

.iso-quality-mark {
    display: grid;
    gap: 0.35rem;
    padding: 2rem 1.75rem;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.16), rgba(155, 17, 30, 0.12));
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.iso-quality-mark__label {
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
}

.iso-quality-mark__value {
    color: var(--white);
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.6rem);
    line-height: 1;
    font-weight: 800;
}

.iso-quality-mark__year {
    color: var(--gold-accent);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.iso-quality-intro h3 {
    color: var(--white);
    font-size: clamp(1.6rem, 2.5vw, 2.3rem);
    margin-bottom: 1rem;
}

.iso-quality-intro p {
    color: rgba(255,255,255,0.82);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0;
}

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

.iso-quality-card {
    padding: 2rem 1.7rem;
    border-radius: 22px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition-slow);
}

.iso-quality-card:hover {
    transform: translateY(-8px);
    border-color: rgba(197, 160, 89, 0.24);
    background: rgba(255,255,255,0.07);
    box-shadow: 0 24px 42px rgba(0,0,0,0.22);
}

.iso-quality-card i {
    color: var(--gold-accent);
    font-size: 1.9rem;
    margin-bottom: 1.2rem;
}

.iso-quality-card h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.iso-quality-card p {
    color: rgba(255,255,255,0.76);
    line-height: 1.7;
    margin-bottom: 0;
}

/* 3C. SECTION: Service Showcase */
.service-showcase {
    padding: 5.5rem 0;
    overflow: hidden;
}

.service-showcase--surface {
    background: var(--surface-color);
}

.service-showcase__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.service-showcase__text {
    position: relative;
    z-index: 2;
}

.service-showcase__number {
    font-size: 5rem;
    color: rgba(197, 160, 89, 0.1);
    font-weight: 900;
    line-height: 1;
    margin-bottom: -1.6rem;
    font-family: 'Outfit', 'Inter', sans-serif;
}

.service-showcase__number--dark {
    color: rgba(10, 10, 12, 0.06);
}

.service-showcase__kicker {
    margin-bottom: 1rem;
    color: var(--gold-accent-dark);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.service-showcase__title {
    font-size: clamp(2.1rem, 4vw, 3rem);
    margin-bottom: 1.4rem;
    color: var(--primary-color);
}

.service-showcase__title span {
    color: var(--gold-accent);
}

.service-showcase__description {
    color: var(--text-secondary);
    font-size: 1.08rem;
    line-height: 1.85;
    margin-bottom: 2rem;
}

.service-showcase__list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-showcase__list li {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    font-size: 1.02rem;
    color: var(--text-primary);
}

.service-showcase__list i {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--gold-accent-dark);
    background: rgba(197, 160, 89, 0.12);
}

.service-showcase__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.service-showcase__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    background: rgba(10, 10, 12, 0.04);
    border: 1px solid rgba(10, 10, 12, 0.08);
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-showcase__visual {
    position: relative;
    min-height: 560px;
}

.service-showcase__frame {
    position: absolute;
    inset: -18px -18px 18px 18px;
    border: 2px solid rgba(197, 160, 89, 0.85);
    border-radius: 28px;
    z-index: 1;
}

.service-showcase__frame--dark {
    inset: 18px -18px -18px 18px;
    border-color: rgba(10, 10, 12, 0.72);
}

.service-showcase__image {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 28px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-luxury);
}

.service-showcase__badge-card {
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 3;
    display: grid;
    gap: 0.35rem;
    padding: 1.2rem 1.25rem;
    border-radius: 20px;
    background: rgba(10, 10, 12, 0.62);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.service-showcase__badge-card strong {
    font-size: 1rem;
    letter-spacing: 0.04em;
}

.service-showcase__badge-card span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-showcase__badge-card--dark {
    background: rgba(255, 255, 255, 0.82);
    color: var(--primary-color);
    border-color: rgba(10, 10, 12, 0.08);
}

.service-showcase__badge-card--dark span {
    color: var(--text-secondary);
}

/* 4. SECTION: Pourquoi Nous Choisir (Giant Typography) */
.why-choose-us-section { padding: 10rem 0; background: var(--surface-color); }
.why-container { display: grid; grid-template-columns: 1fr 1.5fr; gap: 6rem; }
.why-header h2 { font-size: clamp(2.5rem, 5vw, 4rem); margin-top: 1.5rem; line-height: 1.1; }
.why-reasons-grid { display: flex; flex-direction: column; gap: 4rem; }
.reason-item { display: flex; gap: 3rem; align-items: flex-start; position: relative; cursor: default; }
.giant-number { font-size: 8rem; font-family: 'Outfit'; font-weight: 900; color: transparent; -webkit-text-stroke: 1px rgba(0,0,0,0.1); line-height: 0.8; margin-top: -0.5rem; }
.reason-item:hover .giant-number { color: var(--gold-accent); -webkit-text-stroke: 0; transition: color 0.4s ease; text-shadow: 0 10px 30px rgba(197, 160, 89, 0.3); }
.reason-content h3 { font-size: 1.8rem; margin-bottom: 1rem; color: var(--primary-color); }
.reason-content p { font-size: 1.1rem; color: var(--text-secondary); line-height: 1.8; }

/* 5. SECTION: Parallax CTA */
.parallax-cta { padding: 0; position: relative; min-height: 70vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.parallax-bg { position: absolute; top: -10%; left: 0; width: 100%; height: 120%; background-size: cover; background-position: center; background-attachment: fixed; z-index: 1; }
.parallax-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,10,12,0.95) 0%, rgba(10,10,12,0.7) 100%); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); z-index: 2; }
.parallax-container { position: relative; z-index: 3; text-align: center; max-width: 900px; padding: 2rem; }
.parallax-container h2 { font-size: clamp(3rem, 6vw, 5rem); color: white; margin-bottom: 2rem; letter-spacing: -0.02em; }
.parallax-container p { font-size: 1.3rem; color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 3rem; }
.cta-actions { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.gold-btn,
.glass-btn {
    border-radius: 18px;
    padding: 1.05rem 2.4rem;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--transition);
}
.gold-btn {
    background: linear-gradient(135deg, #7f0f19 0%, var(--accent-color) 100%);
    color: white;
    border: 1px solid rgba(155, 17, 30, 0.35);
    box-shadow: 0 14px 30px rgba(155, 17, 30, 0.28);
}
.gold-btn:hover {
    background: linear-gradient(135deg, #95111d 0%, var(--accent-hover) 100%);
    color: white;
    transform: translateY(-3px);
}
.glass-btn {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    color: white;
    backdrop-filter: blur(14px);
}
.glass-btn:hover {
    background: rgba(255,255,255,0.16);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-3px);
}

/* RESPONSIVE EDITORIAL */
@media (max-width: 1024px) {
    .editorial-container, .why-container { grid-template-columns: 1fr; gap: 4rem; }
    .vehicles-staggered-grid, .services-portrait-grid { grid-template-columns: repeat(2, 1fr); }
    .staggered-card.elevated { transform: translateY(0); }
    .editorial-visuals { height: 500px; margin-top: 3rem; display: none; /* cache pour eviter le reflow buggish sur tablette */}
    .section-header-split { flex-direction: column; align-items: flex-start; gap: 2rem; }
    .iso-quality-hero-card { grid-template-columns: 1fr; }
    .iso-quality-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .service-showcase__grid { grid-template-columns: 1fr; gap: 3rem; }
    .service-showcase__visual { min-height: 480px; }
    .service-showcase__image { height: 480px; }
    .garage-editorial-visuals {
        display: block !important;
        min-height: 620px;
        height: auto !important;
        margin-top: 1rem;
    }
    .garage-visual-main {
        width: 100%;
        height: 620px !important;
    }
    .garage-visual-secondary {
        width: 42%;
        height: 28%;
    }
}
@media (max-width: 768px) {
    .vehicles-staggered-grid, .services-portrait-grid { grid-template-columns: 1fr; }
    .featured-vehicles-section .vehicle-image { height: 240px; }
    .vehicle-showcase-info { padding: 2rem 1.4rem; }
    .vehicle-media-btn { width: 34px; height: 34px; }
    .iso-quality-section { padding: 6rem 0; }
    .iso-quality-grid { grid-template-columns: 1fr; }
    .iso-quality-hero-card { padding: 1.5rem; }
    .iso-quality-mark { padding: 1.5rem; }
    .service-showcase { padding: 4.5rem 0; }
    .service-showcase__visual { min-height: 360px; }
    .service-showcase__image { height: 360px; }
    .service-showcase__badge-card {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        padding: 1rem;
    }
    .service-showcase__meta { gap: 0.6rem; }
    .service-showcase__meta span { width: 100%; justify-content: center; }
    .garage-service-media {
        height: 160px;
        margin: -0.8rem -0.4rem 1.5rem;
    }
    .garage-editorial-visuals {
        min-height: auto;
    }
    .garage-visual-main {
        height: 340px !important;
        border-radius: 22px;
    }
    .garage-visual-secondary {
        display: none;
    }
    .reason-item { flex-direction: column; gap: 1rem; }
    .giant-number { font-size: 5rem; margin-top: 0; }
}
