/* ========================================
   VARIABLES CSS & RESET
   ======================================== */
@font-face {
    font-family: CircularStd;
    src: url("../font/circular-std-medium-500.ttf")
    format("truetype");
}
@font-face {
    font-family: CircularStdBold;
    src: url("../font/CircularStd-Bold.ttf")
    format("truetype");
}
@font-face{
    font-family: TTCommons;
    src:url("../font/tt.otf")
    format("opentype");
}
@font-face{
    font-family: avefedan;
    src:url("../font/AveFedan.ttf")format("opentype");
}
:root {
    /* Colors - Charte MND */
    /*--color-black: #0F1216;*/
    --color-black:  #0F1216;
    --color-blue: #3B82F6;
    --color-yellow: #F5C400;
    --color-white: #FFFFFF;
    --color-gray-light: #F5F5F5;
    --color-gray-medium: #888888;
    --color-gray-dark: #333333;
    
    /* Gradients */
    --gradient-blue: linear-gradient(135deg, #3B82F6 0%, #0D7BC5 100%);
    --gradient-yellow: linear-gradient(135deg, #F5C400 0%, #EAB308 100%);
    --gradient-dark: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-blue: 0 4px 20px rgba(59, 130, 246, 0.3);
    --shadow-yellow: 0 4px 20px rgba(254, 240, 13, 0.3);
    
    /* Typography */
    --font-primary: "CircularStd", sans-serif;
    --font-display: "CircularStd", cursive;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Container */
    --container-width: 1300px;
    --container-padding: 1rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "CircularStd", sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-medium);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ========================================
   UTILITIES
   ======================================== */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section__title {
    font-family: 'avefedan';
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;

    margin-bottom: var(--spacing-sm);
    letter-spacing: 1px;
}

.section__title--center {
    text-align: center;
}

.section__title--highlight {
    background: var(--gradient-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section__subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-medium);
    margin-bottom: var(--spacing-lg);
}

.section__subtitle--center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius:10px;
    transition: all var(--transition-medium);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn__icon {
    position: relative;
    z-index: 1;
    transition: transform var(--transition-medium);
}

.btn:hover .btn__icon {
    transform: translateX(5px);
}

.btn--primary {
    background: var(--gradient-blue);
    color: var(--color-white);
    box-shadow: var(--shadow-blue);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
}

.btn--secondary {
    background: var(--gradient-yellow);
    color: var(--color-black);
    box-shadow: var(--shadow-yellow);
    font-weight: 700;
}

.btn--secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(254, 240, 13, 0.4);
}

.btn--outline {
    background: transparent;
    border-color: var(--color-blue);
    color: var(--color-blue);
}

.btn--outline:hover {
    background: var(--color-blue);
    color: var(--color-white);
}

.btn--large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-medium);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.header.scrolled {
    box-shadow: var(--shadow-lg);
    border-bottom-color: rgba(59, 130, 246, 0.3);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1001;
}

.nav__logo-img {
    width: 180px;
    height:70px;
    cursor:pointer;
    object-fit: contain;
}

.nav__logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 2px;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__link {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-medium);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-yellow);
    transition: width var(--transition-medium);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__link:hover {
    color: var(--color-blue);
}

.nav__link--cta {
    background: var(--gradient-yellow);
    color: var(--color-black);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 700;
}
.nav__item--dropdown {
    position: relative;
}

/* Lien avec dropdown */
.nav__link--dropdown {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
}

/* Icône flèche */
.nav__dropdown-icon {
    transition: transform 0.3s ease;
    margin-top: 2px;
}

.nav__item--dropdown:hover .nav__dropdown-icon,
.nav__item--dropdown.active .nav__dropdown-icon {
    transform: rotate(180deg);
}

/* Sous-menu dropdown */
.nav__dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 240px;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    list-style: none;
}

/* Zone invisible pour garder le hover actif entre le lien et le dropdown */
.nav__dropdown::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    height: 10px;
}

/* Petit triangle au-dessus du dropdown */
.nav__dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid rgba(59, 130, 246, 0.3);
}

/* Afficher le dropdown au hover */
.nav__item--dropdown:hover .nav__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    top: calc(100% + 10px);
}

/* Items du dropdown */
.nav__dropdown-item {
    margin: 0;
}

/* Liens du dropdown */
.nav__dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav__dropdown-link svg {
    color: #3B82F6;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* Hover sur les liens du dropdown */
.nav__dropdown-link:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
    padding-left: 2rem;
}

.nav__dropdown-link:hover svg {
    color: #F5C400;
    transform: scale(1.1);
}

/* Séparateur entre les items */
.nav__dropdown-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ========================================
   DROPDOWN - MOBILE (< 1100px)
   ======================================== */

@media (max-width: 1100px) {
    /* Réinitialiser le positionnement */
    .nav__item--dropdown {
        position: static;
    }
    
    .nav__link--dropdown {
        display: flex;
        justify-content: space-between;
        width: 100%;
        padding: 1.5rem 0 !important;
    }
    
    /* Dropdown en bloc sous le lien parent */
    .nav__dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        min-width: 100%;
        background: rgba(59, 130, 246, 0.05);
        border: none;
        border-radius: 0;
        padding: 0;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
    }
    
    /* Supprimer le triangle */
    .nav__dropdown::before {
        display: none;
    }
    
    /* Quand le dropdown est actif */
    .nav__item--dropdown.active .nav__dropdown {
        max-height: 300px;
        padding: 0.5rem 0;
        border-top: 1px solid rgba(59, 130, 246, 0.2);
        border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    }
    
    /* Items mobile */
    .nav__dropdown-item {
        border-bottom: none !important;
    }
    
    /* Liens mobile */
    .nav__dropdown-link {
        padding: 1rem 0 1rem 2rem !important;
        font-size: 1rem !important;
        color: rgba(255, 255, 255, 0.7) !important;
    }
    
    .nav__dropdown-link:hover {
        background: transparent !important;
        color: #3B82F6 !important;
        padding-left: 2.5rem !important;
    }
    
    /* Icône flèche mobile */
    .nav__dropdown-icon {
        margin-right: 0.5rem;
    }
}

/* ========================================
   ANIMATIONS SUPPLÉMENTAIRES
   ======================================== */

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Animation d'entrée smooth */
.nav__item--dropdown:hover .nav__dropdown {
    animation: slideDown 0.3s ease;
}
@media (max-width: 768px) {
    .nav__dropdown-link {
        font-size: 0.9375rem !important;
    }
}

@media (max-width: 480px) {
    .nav__dropdown-link {
        padding: 0.875rem 0 0.875rem 1.5rem !important;
        font-size: 0.875rem !important;
    }
    
    .nav__dropdown-link svg {
        width: 16px;
        height: 16px;
    }
}
.link{
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    border: 2px solid var(--color-yellow);
    font-weight: 700;

}
.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-yellow);
    color: var(--color-black);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-white);
    transition: var(--transition-medium);
    border-radius: 2px;
}
/* ========================================
   HERO SECTION - NOUVEAU DESIGN
   ======================================== */

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 0 60px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0e14 0%, #1a1d24 100%);
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(254, 240, 13, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.hero .container {
    max-width: var(--container-width);
    width: 96%;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: none;
    width: 100%;
    padding: 0;
}

/* CONTENU GAUCHE - TEXTE */
.hero__content {
    animation: fadeInLeft 1s ease;
}

.hero__title {
    font-size:40px;
    line-height: 1.2;
    letter-spacing:3px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: #FFFFFF;
}

.hero__title--highlight {
    display: block;
    background: linear-gradient(135deg, #F5C400 0%, #EAB308 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.5rem;
}

.hero__subtitle {
    font-size: 1.125rem;
    color: rgba(176, 183, 195, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Badge étoile */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    color:white;
    font-size: 20px;
    font-weight: 300;
}

.hero__badge svg {
    flex-shrink: 0;
    height:40px;
    width:40px;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.hero__info {
    color:white;
    font-size: 23px;
    font-family: TTCommons;
}

.hero__link {
    color: white;
    text-decoration: underline;
    font-family: TTCommons;
    font-weight: 300;
    transition: color 0.3s ease;
}

.hero__link:hover {
    color: #F5C400;
}

/* CONTENU DROITE - IMAGES */
.hero__images {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    animation: fadeInRight 1s ease;
}

/* Badge "300 élèves" en haut à droite */
.hero__badge-top {
    position: absolute;
    top: 90px;
    right: 0;
    z-index: 5;
}

/* Logo MND en haut */
.hero__logo-top {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.hero__logo-top img {
    width: 140px;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(59, 130, 246, 0.3));
}

/* Voiture principale */
/* Voiture principale - AGRANDIE */
.hero__car {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.5); /* AJOUT du scale pour agrandir */
    width: 95%;
    max-width: 700px; /* Augmenté de 600px à 700px */
    z-index: 3;
    animation: floatCar 6s ease-in-out infinite;
}

.hero__car img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(59, 130, 246, 0.4));
}

/* Animation spéciale pour la voiture (sans casser le scale) */
@keyframes floatCar {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1.5) translateY(0);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5) translateY(-15px);
    }
}
/* Plateforme noire en bas */
.hero__platform {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 120px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(20px);
}

/* Animations */
@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);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    50% {
        transform: translateY(-15px) translateX(-50%);
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .hero__car{
        width:70%;
        left:45%;
    }
    .hero__images {
        order: -1;
        height: 400px;
    }
    
    .hero__content {
        text-align: center;
    }
    
    .hero__buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 40px;
    }
    
    .hero__images {
        height: 350px;
    }
    
    .hero__car {
        max-width: 400px;
    }
    
    .hero__badge-top svg {
        width: 50px;
        height: 50px;
    }
    
    .hero__logo-top img {
        width: 100px;
    }
}
/* ========================================
   PROMO SECTION
   ======================================== */

.promo {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(180deg, #000000 0%, #1a1d24 100%);
    position: relative;
}

.promo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-blue), transparent);
}

.promo__header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.promo__badge {
    display: inline-block;
    background: var(--gradient-yellow);
    color: var(--color-black);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
    animation: pulse 2s ease-in-out infinite;
}

.promo__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}


/* Quand il n'y a qu'une seule promo active, on évite la carte en full-width */
.promo__grid--single{
    grid-template-columns: minmax(300px, 520px);
    justify-content: center;
}

/* Message quand aucune promo active */
.promo__empty{
    grid-column: 1 / -1;
    text-align: center;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--color-gray-medium);
}

.promo__card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    position: relative;
    overflow: hidden;
    transition: var(--transition-medium);
}

.promo__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition-medium);
}

.promo__card:hover {
    border-color: var(--color-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
}

.promo__card:hover::before {
    opacity: 1;
}

.promo__card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-yellow);
    color: var(--color-black);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    z-index: 1;
}

.promo__card-header {
    margin-bottom: var(--spacing-md);
}

.promo__card-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-blue);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.promo__card-hours {
    color: var(--color-gray-medium);
    font-size: 0.95rem;
}

.promo__card-price {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: var(--spacing-md);
}

.promo__price-old {
    color: var(--color-gray-medium);
    text-decoration: line-through;
    font-size: 1.5rem;
}

.promo__price-new {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--color-yellow);
    line-height: 1;
}

.promo__price-tax {
    color: var(--color-gray-medium);
    font-size: 0.875rem;
}

.promo__card-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.promo__card-features li {
    color: var(--color-gray-light);
    font-size: 0.95rem;
    padding-left: 1.5rem;
    position: relative;
}

.promo__card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-blue);
    font-weight: bold;
}

.promo__cta {
    text-align: center;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about {
    padding: var(--spacing-2xl) 0;
    background: var(--color-black);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about__text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.about__text p {
    color: var(--color-gray-light);
    line-height: 1.8;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.stat {
    text-align: center;
    padding: var(--spacing-md);
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-radius: var(--radius-md);
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: var(--transition-medium);
}

.stat:hover {
    border-color: var(--color-blue);
    transform: translateY(-5px);
}

.stat__number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--color-yellow);
    line-height: 1;
    display: inline-block;
}

.stat__percent,
.stat__plus {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-yellow);
}

.stat__label {
    display: block;
    margin-top: 0.5rem;
    color: var(--color-gray-medium);
    font-size: 0.875rem;
}

.about__image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.about__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about__image-wrapper:hover .about__img {
    transform: scale(1.05);
}

/* ========================================
   ADVANTAGES SECTION
   ======================================== */



.advantages__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.advantage__card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.advantage__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition-medium);
}

.advantage__card:hover {
    border-color: var(--color-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.advantage__card:hover::before {
    opacity: 1;
}

.advantage__card--highlight {
    border-color: var(--color-yellow);
    background: linear-gradient(135deg, #2a2a1a 0%, #1a1a0f 100%);
}

.advantage__card--highlight::before {
    background: radial-gradient(circle at top left, rgba(254, 240, 13, 0.1) 0%, transparent 60%);
}

.advantage__card--highlight:hover {
    border-color: var(--color-yellow);
    box-shadow: 0 10px 30px rgba(254, 240, 13, 0.2);
}

.advantage__icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-blue);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    transition: var(--transition-medium);
}

.advantage__card--highlight .advantage__icon {
    background: var(--gradient-yellow);
}

.advantage__icon svg {
    color: var(--color-white);
}

.advantage__card--highlight .advantage__icon svg {
    color: var(--color-black);
}

.advantage__card:hover .advantage__icon {
    transform: scale(1.1) rotate(5deg);
}

.advantage__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-blue);
}

.advantage__card--highlight .advantage__title {
    color: var(--color-yellow);
}

.advantage__text {
    color: var(--color-gray-light);
    line-height: 1.7;
}

/* ========================================
   HOURS SECTION
   ======================================== */

.hours {
    padding: var(--spacing-2xl) 0;
    background: var(--color-black);
}

.hours__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.hours__card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(59, 130, 246, 0.2);
    transition: var(--transition-medium);
}

.hours__card--highlight {
    border-color: var(--color-yellow);
    background: linear-gradient(135deg, #2a2a1a 0%, #1a1a0f 100%);
}

.hours__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.hours__card--highlight:hover {
    box-shadow: 0 10px 30px rgba(254, 240, 13, 0.2);
}

.hours__icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-blue);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.hours__card--highlight .hours__icon {
    background: var(--gradient-yellow);
}

.hours__icon svg {
    color: var(--color-white);
}

.hours__card--highlight .hours__icon svg {
    color: var(--color-black);
}

.hours__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--color-blue);
}

.hours__card--highlight .hours__title {
    color: var(--color-yellow);
}

.hours__content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.hours__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-gray-light);
}

.hours__row:last-child {
    border-bottom: none;
}

.hours__time {
    font-weight: 600;
    color: var(--color-white);
}

.hours__note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: var(--spacing-sm);
    padding: 0.75rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-sm);
    color: var(--color-blue);
    font-size: 0.875rem;
}

.hours__card--highlight .hours__note {
    background: rgba(254, 240, 13, 0.1);
    color: var(--color-yellow);
}

/* ========================================
   REVIEWS SECTION
   ======================================== */

.reviews {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(180deg, #000000 0%, #1a1d24 100%);
    position: relative;
    overflow: hidden;
}

.reviews__slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto var(--spacing-lg);
}

.reviews__track {
    display: flex;
    gap: var(--spacing-md);
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: var(--spacing-sm);
}

.reviews__track::-webkit-scrollbar {
    display: none;
}

.review__card {
    min-width: 350px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(59, 130, 246, 0.2);
    flex-shrink: 0;
    transition: var(--transition-medium);
}

.review__card:hover {
    border-color: var(--color-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.review__stars {
    margin-bottom: var(--spacing-sm);
}

.review__stars span {
    color: var(--color-yellow);
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.review__text {
    color: var(--color-gray-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.review__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review__avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-white);
}

.review__name {
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.review__date {
    color: var(--color-gray-medium);
    font-size: 0.875rem;
}

.reviews__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-medium);
    z-index: 10;
}

.reviews__nav:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-blue);
}

.reviews__nav--prev {
    left: -25px;
}

.reviews__nav--next {
    right: -25px;
}

.reviews__nav svg {
    color: var(--color-white);
}

.reviews__cta {
    text-align: center;
}

/* ========================================
   CTA FINAL SECTION
   ======================================== */

.cta-final {
    padding: var(--spacing-2xl) 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(254, 240, 13, 0.1) 0%, transparent 50%),
        var(--color-black);
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-blue), transparent);
}

.cta-final__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-final__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--spacing-md);
    letter-spacing: 1px;
}

.cta-final__text {
    font-size: 1.25rem;
    color: var(--color-gray-medium);
    margin-bottom: var(--spacing-lg);
}

.cta-final__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: linear-gradient(180deg, #1a1d24 0%, #000000 100%);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--spacing-md);
}

.footer__logo-img {
    width: 170px;
    height: 70px;
}

.footer__logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 2px;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer__desc {
    color: var(--color-gray-medium);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-medium);
    color: var(--color-blue);
}

.footer__social-link:hover {
    background: var(--color-blue);
    color: var(--color-white);
    transform: translateY(-3px);
}

.footer__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--color-blue);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__links a {
    color: var(--color-gray-medium);
    transition: var(--transition-medium);
}

.footer__links a:hover {
    color: var(--color-blue);
    padding-left: 5px;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-gray-medium);
}

.footer__contact svg {
    color: var(--color-blue);
    flex-shrink: 0;
}

.footer__contact a:hover {
    color: var(--color-blue);
}

.footer__bottom {
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__legal {
    display: flex;
    gap: 1rem;
    align-items: center;
    color: var(--color-gray-medium);
    font-size: 0.875rem;
}

.footer__legal a:hover {
    color: var(--color-blue);
}

.footer__copyright {
    color: var(--color-gray-medium);
    font-size: 0.875rem;
}

/* ========================================
   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);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero__image {
        order: -1;
    }
    
    .hero__buttons {
        justify-content: center;
    }
    
    .about__grid {
        grid-template-columns: 1fr;
    }
    
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        padding: var(--spacing-lg);
        transition: left var(--transition-medium);
        border-top: 1px solid rgba(59, 130, 246, 0.2);
    }
    
    .nav__menu.active {
        left: 0;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .nav__toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .nav__toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav__toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .about__stats {
        grid-template-columns: 1fr;
    }
    
    .advantages__grid {
        grid-template-columns: 1fr;
    }
    
    .reviews__nav {
        display: none;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-final__buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 1rem;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .promo__grid {
        grid-template-columns: 1fr;
    }
    
    .review__card {
        min-width: 280px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}/* Nouveau CSS pour les sections Avantages et CTA Final */

/* Section Avantages - Design professionnel et calme */
.advantages {
    padding: 6rem 0;
    background: #0F1216;
}

.advantages__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.advantages__header .section__title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.advantages__header .section__subtitle {
    font-size: 1.125rem;
    color: #888888;
}

.advantages__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.advantage__card {
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3B82F6, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.advantage__card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-4px);
}

.advantage__card:hover::before {
    opacity: 1;
}

.advantage__number {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    line-height: 1;
    color: rgba(59, 130, 246, 0.15);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    transition: color 0.4s ease;
}

.advantage__card:hover .advantage__number {
    color: rgba(59, 130, 246, 0.25);
}

.advantage__content {
    position: relative;
}

.advantage__icon-wrapper {
    width: 56px;
    height: 56px;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.advantage__card:hover .advantage__icon-wrapper {
    background: rgba(59, 130, 246, 0.12);
    transform: scale(1.05);
}

.advantage__icon {
    color: #3B82F6;
    transition: transform 0.4s ease;
}

.advantage__card:hover .advantage__icon {
    transform: scale(1.1);
}

.advantage__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #FFFFFF;
    line-height: 1.4;
}

.advantage__text {
    color: #B0B7C3;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Section CTA Final - Design élégant */
.cta-final {
    padding: 6rem 0;
    background: linear-gradient(135deg, #000000 0%, #1a1d24 100%);
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #3B82F6, transparent);
}

.cta-final__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-final__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    color: #3B82F6;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.cta-final__badge svg {
    width: 18px;
    height: 18px;
}

.cta-final__badge:hover {
    background: rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
}

.cta-final__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    line-height: 1.2;
}

.cta-final__text {
    font-size: 1.25rem;
    color: #888888;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-final__stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-final__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-final__stat-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: #F5C400;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.cta-final__stat-label {
    font-size: 0.875rem;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-final__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .advantages__grid {
        grid-template-columns: 1fr;
    }
    
    .advantage__card {
        padding: 2rem;
    }
    
    .cta-final__stats {
        gap: 2rem;
    }
    
    .cta-final__buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-final__buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .advantage__number {
        font-size: 2.5rem;
    }
    
    .cta-final__stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}/* ========================================
   REVIEWS SECTION - DESIGN PROFESSIONNEL
   ======================================== */

.reviews {
    padding: 6rem 0;
    background: #0F1216;
    position: relative;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

/* Header avec Google Badge */
.reviews__header {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews__google-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.reviews__google-badge:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.reviews__google-icon {
    flex-shrink: 0;
}

.reviews__google-text {
    font-weight: 600;
    font-size: 1rem;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}

/* Note et étoiles */
.reviews__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.reviews__stars-display {
    display: flex;
    gap: 4px;
}

.reviews__rating-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #F5C400;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1px;
}

.reviews__rating-count {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Grille des avis */
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* Carte avis */
.review__card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.review__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #F5C400, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review__card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(254, 240, 13, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.review__card:hover::before {
    opacity: 1;
}

/* Header de la carte */
.review__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.review__author-info {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    flex: 1;
}

.review__avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #3B82F6, #0D7BC5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    color: #FFFFFF;
    flex-shrink: 0;
}

.review__author-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.review__name {
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review__date {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Étoiles */
.review__stars {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}

/* Texte de l'avis */
.review__text {
    color: #B0B7C3;
    line-height: 1.7;
    font-size: 0.9375rem;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review__card:hover .review__text {
    color: rgba(255, 255, 255, 0.85);
}

/* CTA pour voir tous les avis */
.reviews__cta {
    text-align: center;
}

.reviews__link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    color: #3B82F6;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.reviews__link:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: #3B82F6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.2);
}

.reviews__link svg {
    transition: transform 0.3s ease;
}

.reviews__link:hover svg {
    transform: translateX(5px);
}

/* Animation au scroll */
@keyframes fadeInUpReview {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review__card {
    animation: fadeInUpReview 0.5s ease backwards;
}

.review__card:nth-child(1) { animation-delay: 0.1s; }
.review__card:nth-child(2) { animation-delay: 0.15s; }
.review__card:nth-child(3) { animation-delay: 0.2s; }
.review__card:nth-child(4) { animation-delay: 0.25s; }
.review__card:nth-child(5) { animation-delay: 0.3s; }
.review__card:nth-child(6) { animation-delay: 0.35s; }

/* Responsive */
@media (max-width: 1024px) {
    .reviews__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews {
        padding: 4rem 0;
    }
    
    .reviews__header {
        margin-bottom: 2rem;
    }
    
    .reviews__google-badge {
        padding: 0.75rem 1.5rem;
    }
    
    .reviews__rating {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .reviews__grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .review__card {
        padding: 1.5rem;
    }
    
    .review__header {
        flex-wrap: wrap;
    }
    
    .reviews__cta {
        margin-top: 2rem;
    }
    
    .reviews__link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .reviews__google-badge {
        font-size: 0.9rem;
        padding: 0.625rem 1.25rem;
    }
    
    .reviews__rating-number {
        font-size: 1.25rem;
    }
    
    .review__avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .review__name {
        font-size: 0.9375rem;
    }
    
    .review__text {
        font-size: 0.875rem;
    }
}/* ========================================
   ABOUT SECTION - TIMELINE PROFESSIONNELLE
   ======================================== */

.about {
    padding: 6rem 0;
    background: #0F1216;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

/* Header */
.about__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.about__header .section__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.about__header .section__subtitle {
    font-size: 1.125rem;
    color: #B0B7C3;
    line-height: 1.6;
}

/* Timeline Container */
.about__timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto 5rem;
    padding: 2rem 0;
}

/* Ligne centrale verticale */
.about__timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.3) 10%,
        rgba(59, 130, 246, 0.5) 50%,
        rgba(59, 130, 246, 0.3) 90%,
        transparent 100%
    );
    transform: translateX(-50%);
}

/* Timeline Item */
.timeline__item {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
}

.timeline__item:last-child {
    margin-bottom: 0;
}

/* Timeline Dot (point central) */
.timeline__dot {
    position: relative;
    width: 16px;
    height: 16px;
    background: #3B82F6;
    border-radius: 50%;
    border: 4px solid #000000;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
    margin: 0 auto;
    margin-top: 2rem;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline__dot::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    animation: pulse-dot 2s ease-in-out infinite;
}

.timeline__dot--current {
    background: #F5C400;
    box-shadow: 0 0 0 4px rgba(254, 240, 13, 0.3);
    width: 20px;
    height: 20px;
}

.timeline__dot--current::before {
    background: rgba(254, 240, 13, 0.2);
}

@keyframes pulse-dot {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Timeline Content */
.timeline__content {
    text-align: left;
}

.timeline__item--right .timeline__content {
    text-align: left;
}

.timeline__item--left .timeline__content {
    text-align: right;
}

.timeline__year {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: var(--color-yellow);
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.timeline__year--current {
    color: var(--color-yellow);
}

/* Timeline Card */
.timeline__card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.timeline__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #3B82F6, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 16px 16px 0 0;
}

.timeline__card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
}

.timeline__card:hover::before {
    opacity: 1;
}

.timeline__card--highlight {
    border-color: rgba(254, 240, 13, 0.3);
}

.timeline__card--highlight::before {
    background: linear-gradient(90deg, transparent, #F5C400, transparent);
}

.timeline__card--highlight:hover {
    border-color: rgba(254, 240, 13, 0.5);
    box-shadow: 0 10px 40px rgba(254, 240, 13, 0.15);
}

/* Timeline Icon */
.timeline__icon {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: #3B82F6;
    transition: all 0.3s ease;
}

.timeline__item--right .timeline__icon {
    margin-left: 0;
}

.timeline__item--left .timeline__icon {
    margin-left: auto;
}

.timeline__icon--blue {
    background: rgba(59, 130, 246, 0.15);
    color: #3B82F6;
}

.timeline__icon--yellow {
    background: rgba(254, 240, 13, 0.15);
    color: #F5C400;
}

.timeline__icon--star {
    background: rgba(254, 240, 13, 0.15);
    color: #F5C400;
}

.timeline__card:hover .timeline__icon {
    transform: scale(1.1) rotate(5deg);
}

/* Timeline Title & Text */
.timeline__title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.timeline__text {
    color: #B0B7C3;
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* Timeline Image */
.timeline__image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    height: 320px;
}

.timeline__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.timeline__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.timeline__item:hover .timeline__image img {
    transform: scale(1.05);
}

.timeline__item:hover .timeline__image::after {
    opacity: 1;
}

/* Timeline Stats Box */
.timeline__image--stats {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.05) 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* About Info Section */
.about__info {
    margin-top: 5rem;
}

.about__info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about__info-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.about__info-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-5px);
}

.about__info-icon {
    width: 56px;
    height: 56px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #3B82F6;
    transition: all 0.3s ease;
}

.about__info-card:hover .about__info-icon {
    background: rgba(59, 130, 246, 0.15);
    transform: scale(1.1);
}

.about__info-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.about__info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about__info-list li {
    color: #B0B7C3;
    font-size: 0.9375rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.about__info-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3B82F6;
    font-weight: bold;
}

/* Animations d'apparition */
@keyframes fadeInTimeline {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline__item {
    animation: fadeInTimeline 0.8s ease backwards;
}

.timeline__item:nth-child(1) { animation-delay: 0.1s; }
.timeline__item:nth-child(2) { animation-delay: 0.3s; }
.timeline__item:nth-child(3) { animation-delay: 0.5s; }
.timeline__item:nth-child(4) { animation-delay: 0.7s; }

/* Responsive */
@media (max-width: 1024px) {
    .about__timeline::before {
        left: 30px;
    }
    
    .timeline__item {
        grid-template-columns: 60px 1fr;
        gap: 2rem;
    }
    
    .timeline__item--left,
    .timeline__item--right {
        grid-template-columns: 60px 1fr;
    }
    
    .timeline__dot {
        margin: 2rem 0 0 22px;
    }
    
    .timeline__content,
    .timeline__item--left .timeline__content,
    .timeline__item--right .timeline__content {
        text-align: left;
    }
    
    .timeline__icon,
    .timeline__item--left .timeline__icon {
        margin-left: 0;
    }
    
    .timeline__image {
        display: none;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 4rem 0;
    }
    
    .about__header {
        margin-bottom: 3rem;
    }
    
    .about__timeline {
        margin-bottom: 3rem;
    }
    
    .timeline__item {
        margin-bottom: 3rem;
    }
    
    .timeline__year {
        font-size: 2.5rem;
    }
    
    .timeline__card {
        padding: 1.5rem;
    }
    
    .about__info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about__info-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .timeline__year {
        font-size: 2rem;
    }
    
    .timeline__title {
        font-size: 1.125rem;
    }
    
    .timeline__card {
        padding: 1.25rem;
    }
    
    .timeline__icon {
        width: 40px;
        height: 40px;
    }
}/* ========================================
   HEADER NAVIGATION - CORRECTIONS RESPONSIVE
   ======================================== */

/* Container Nav */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
}

/* Logo */
.nav__logo {
    z-index: 1001;
}

.nav__logo-img {
    height: 50px;
    cursor: pointer;
}

/* Menu Navigation */
.nav__menu {
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav__link {
    color: rgba(176, 183, 195, 0.9);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav__link:hover,
.nav__link.active {
    color: #3B82F6;
}

.nav__link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #3B82F6;
}

/* Boutons CTA (Se connecter / S'inscrire) */
.nav__cta {
    display: flex;
    gap: 1rem;
    align-items: center;
    z-index: 1001;
}

/* Boutons petits pour header */
.btn--small {
    padding: 0.625rem 2.15rem;
    font-size: 0.9375rem;
    border-radius: 50px;
}

/* Hamburger Menu */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 0;
}

.nav__toggle span {
    width: 100%;
    height: 3px;
    background: #FFFFFF;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Animation hamburger */
.nav__toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ========================================
   RESPONSIVE NAVIGATION
   ======================================== */

@media (max-width: 1100px) {
    /* Activer le hamburger */
    .nav__toggle {
        display: flex !important;
    }
    
    /* Cacher le menu desktop */
    .nav__menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        padding: var(--spacing-lg);
        transition: left var(--transition-medium);
        border-top: 1px solid rgba(59, 130, 246, 0.2);
        height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .nav__menu.active {
        left: 0;
        justify-content: center;
    }
    
    .nav__list {
        flex-direction: column;
        gap:3rem !important;
    }
    
    .nav__link {
        font-size: 1.1rem;
        padding: 0.75rem 0;
    }
    
    /* Cacher le bouton CTA sur tablette */
    .nav__cta {
        display: none;
    }
    .nav__list .active{
        font-size: 2rem;
    }
    .nav__link{
        font-size: 2rem;
    }
}

.plat{
    position: absolute;
    top:50%;
    z-index: 0;
}

@media (max-width: 480px) {
    .nav__logo-img {
        height: 40px;
    }
    
    .nav__menu {
        width: 100%;
        padding: 1rem;
    }
    
    .nav__link {
        font-size: 1rem;
    }
}
.plat{
    position: absolute;
    top:50%;
    z-index: 0;
}

/* ========================================
   TIMELINE ABOUT - CORRECTIONS RESPONSIVE
   ======================================== */

/* Timeline Container */
.about__timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto 5rem;
    padding: 2rem 0;
}

/* Ligne centrale verticale - DESKTOP */
.about__timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.3) 10%,
        rgba(59, 130, 246, 0.5) 50%,
        rgba(59, 130, 246, 0.3) 90%,
        transparent 100%
    );
    transform: translateX(-50%);
}

/* Timeline Item - DESKTOP (gauche/droite) */
.timeline__item {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
}

.timeline__item:last-child {
    margin-bottom: 0;
}

/* Timeline Dot (point central) */
.timeline__dot {
    position: relative;
    width: 16px;
    height: 16px;
    background: #3B82F6;
    border-radius: 50%;
    border: 4px solid #000000;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
    margin: 0 auto;
    margin-top: 2rem;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline__dot::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    animation: pulse-dot 2s ease-in-out infinite;
}

.timeline__dot--current {
    background: #F5C400;
    box-shadow: 0 0 0 4px rgba(254, 240, 13, 0.3);
    width: 20px;
    height: 20px;
}

.timeline__dot--current::before {
    background: rgba(254, 240, 13, 0.2);
}

@keyframes pulse-dot {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ========================================
   RESPONSIVE TIMELINE - TABLET
   ======================================== */

@media (max-width: 1024px) {
    .about__timeline {
        padding-left: 40px;
        padding-right: 1rem;
    }
    
    /* Ligne à gauche au lieu du centre */
    .about__timeline::before {
        left: 30px;
        transform: none;
    }
    
    /* Tout aligner à gauche */
    .timeline__item {
        grid-template-columns: 40px 1fr;
        gap: 1.5rem;
    }
    
    .timeline__item--left,
    .timeline__item--right {
        grid-template-columns: 40px 1fr;
    }
    
    .timeline__dot {
        margin: 2rem 0 0 14px;
    }
    
    .timeline__content,
    .timeline__item--left .timeline__content,
    .timeline__item--right .timeline__content {
        text-align: left;
    }
    
    .timeline__year {
        text-align: left;
    }
    
    .timeline__icon,
    .timeline__item--left .timeline__icon {
        margin-left: 0;
    }
    
    /* Masquer les images sur tablet */
    .timeline__image {
        display: none;
    }
}

/* ========================================
   RESPONSIVE TIMELINE - MOBILE
   ======================================== */

@media (max-width: 768px) {
    .about {
        padding: 4rem 0;
    }
    
    .about__header {
        margin-bottom: 3rem;
    }
    
    .about__timeline {
        margin-bottom: 3rem;
        padding-left: 30px;
    }
    
    .about__timeline::before {
        left: 20px;
    }
    
    .timeline__item {
        margin-bottom: 3rem;
        grid-template-columns: 30px 1fr;
        gap: 1rem;
    }
    
    .timeline__dot {
        margin: 1.5rem 0 0 7px;
        width: 14px;
        height: 14px;
        border: 3px solid #000000;
    }
    
    .timeline__dot--current {
        width: 16px;
        height: 16px;
    }
    
    .timeline__year {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    .timeline__card {
        padding: 1.5rem;
    }
    
    .timeline__icon {
        width: 40px;
        height: 40px;
        margin-bottom: 1rem;
    }
    
    .timeline__title {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
    
    .timeline__text {
        font-size: 0.875rem;
    }
    
    /* Stats box plus petit */
    .timeline__image--stats {
        height: 180px;
    }
    
    .timeline__stat-number {
        font-size: 2.5rem;
    }
    
    .timeline__stat-label {
        font-size: 0.8125rem;
    }
    
    /* Section Info */
    .about__info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about__info-card {
        padding: 2rem;
    }
}

/* ========================================
   RESPONSIVE TIMELINE - PETIT MOBILE
   ======================================== */

@media (max-width: 480px) {
    .about__timeline {
        padding-left: 20px;
    }
    
    .about__timeline::before {
        left: 12px;
    }
    
    .timeline__item {
        grid-template-columns: 24px 1fr;
        gap: 0.75rem;
    }
    
    .timeline__dot {
        margin: 1rem 0 0 5px;
        width: 12px;
        height: 12px;
    }
    
    .timeline__dot--current {
        width: 14px;
        height: 14px;
    }
    
    .timeline__year {
        font-size: 2rem;
    }
    
    .timeline__card {
        padding: 1.25rem;
    }
    
    .timeline__icon {
        width: 36px;
        height: 36px;
    }
    
    .timeline__icon svg {
        width: 18px;
        height: 18px;
    }
    
    .timeline__title {
        font-size: 1rem;
    }
    
    .timeline__image--stats {
        height: 150px;
    }
    
    .timeline__stats {
        gap: 1.5rem;
    }
    
    .timeline__stat-number {
        font-size: 2rem;
    }
    
    .about__info-card {
        padding: 1.5rem;
    }
    
    .about__info-icon {
        width: 48px;
        height: 48px;
    }
    
    .about__info-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* ========================================
   TIMELINE ABOUT - RESPONSIVE PARFAIT
   ======================================== */

/* Desktop - OK, pas de changements */
@media (min-width: 1025px) {
    .timeline__item {
        grid-template-columns: 1fr 40px 1fr;
    }
}

/* Tablet et Mobile - AMÉLIORATION */
@media (max-width: 1024px) {
    .about__timeline {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100% !important;
    }
    
    /* Ligne à gauche mais avec espace */
    .about__timeline::before {
        left: 50px !important;
        transform: none !important;
    }
    
    /* Grid avec espace pour la ligne + contenu centré */
    .timeline__item {
        grid-template-columns: 80px 1fr !important;
        gap: 2rem !important;
        padding-right: 1rem;
    }
    
    .timeline__item--left,
    .timeline__item--right {
        grid-template-columns: 80px 1fr !important;
    }
    
    /* Dot bien positionné */
    .timeline__dot {
        margin: 2rem 0 0 34px !important;
    }
    
    /* Contenu prend toute la largeur disponible */
    .timeline__content,
    .timeline__item--left .timeline__content,
    .timeline__item--right .timeline__content {
        text-align: left !important;
        width: 100% !important;
    }
    
    .timeline__card {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Stats box prend toute la largeur */
    .timeline__image--stats {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Masquer vraiment les images */
    .timeline__image:not(.timeline__image--stats) {
        display: none !important;
    }
}

/* Mobile - Encore plus d'espace */
@media (max-width: 768px) {
    .about__timeline::before {
        left: 35px !important;
    }
    
    .timeline__item {
        grid-template-columns: 60px 1fr !important;
        gap: 1.5rem !important;
    }
    
    .timeline__dot {
        margin: 1.5rem 0 0 19px !important;
    }
    
    .timeline__card {
        padding: 2rem !important;
    }
}

/* Petit mobile - Optimisé */
@media (max-width: 480px) {
    .about__timeline::before {
        left: 25px !important;
    }
    
    .timeline__item {
        grid-template-columns: 45px 1fr !important;
        gap: 1rem !important;
    }
    
    .timeline__dot {
        margin: 1rem 0 0 14px !important;
        width: 12px !important;
        height: 12px !important;
    }
    
    .timeline__dot--current {
        width: 14px !important;
        height: 14px !important;
    }
    
    .timeline__card {
        padding: 1.5rem !important;
    }
    
    .timeline__year {
        font-size: 2rem !important;
    }
    
    .timeline__icon {
        width: 36px !important;
        height: 36px !important;
    }
}

/* ================================================
   CORRECTIONS FINALES - NE PAS MODIFIER
   ================================================ */
/* ========================================
   CORRECTIONS FINALES COMPLÈTES
   À REMPLACER DANS style.css
   ======================================== */

/* ========================================
   HEADER NAVIGATION - CORRECTION COMPLÈTE
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
}

.nav__logo {
    z-index: 1002;
}

.nav__logo-img {
    height: 50px;
    cursor: pointer;
}

.nav__menu {
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__item {
    margin: 0;
}

.nav__link {
    color: rgba(176, 183, 195, 0.9);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav__link:hover,
.nav__link.active {
    color: var(--color-yellow);
}

.nav__link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-yellow);
}

/* Boutons CTA */
.nav__cta {
    display: flex;
    gap: 1rem;
    align-items: center;
    z-index: 1002;
}

.btn--small {
    padding: 0.625rem 2.15rem !important;
    font-size: 0.9375rem !important;
}

/* Hamburger */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 1002;
    background: none;
    border: none;
    padding: 0;
}

.nav__toggle span {
    width: 100%;
    height: 3px;
    background: #FFFFFF;
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

.nav__toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}



/* Petit mobile */
@media (max-width: 480px) {
    .nav__link {
        padding: 1.25rem 1.5rem !important;
        font-size: 0.9375rem !important;
    }
}

/* Petit mobile */
@media (max-width: 480px) {
    .nav__link {
        padding: 1.25rem 1.5rem !important;
        font-size: 0.9375rem !important;
    }
}

/* ========================================
   TIMELINE RESPONSIVE PARFAIT
   ======================================== */

/* Desktop - OK */
@media (min-width: 1025px) {
    .about__timeline {
        position: relative;
        max-width: 1100px;
        margin: 0 auto 5rem;
        padding: 2rem 0;
    }
    
    .about__timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .timeline__item {
        display: grid;
        grid-template-columns: 1fr 40px 1fr;
        gap: 2rem;
    }
}

/* Tablet - Timeline à gauche avec espace */
@media (max-width: 1024px) {
    .about__timeline {
        position: relative;
        max-width: 100% !important;
        margin: 0 auto 5rem;
        padding: 2rem 0 2rem 80px !important;
    }
    
    /* Ligne à gauche */
    .about__timeline::before {
        left: 35px !important;
        transform: none !important;
    }
    
    /* Grid simplifié */
    .timeline__item,
    .timeline__item--left,
    .timeline__item--right {
        display: grid !important;
        grid-template-columns: 50px 1fr !important;
        gap: 2rem !important;
    }
    
    /* Dot positionné */
    .timeline__dot {
        position: relative;
        margin: 2rem 0 0 -8px !important;
    }
    
    /* Contenu aligné à gauche */
    .timeline__content,
    .timeline__item--left .timeline__content,
    .timeline__item--right .timeline__content {
        text-align: left !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Cards prennent toute la largeur */
    .timeline__card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .timeline__year {
        text-align: left !important;
    }
    
    .timeline__icon,
    .timeline__item--left .timeline__icon {
        margin-left: 0 !important;
    }
    
    /* Masquer les images sauf stats */
    .timeline__image:not(.timeline__image--stats) {
        display: none !important;
    }
    
    /* Image stats visible et pleine largeur */
    .timeline__image--stats {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
    }
     /* Configuration globale de la ligne verticale */
    .about__timeline {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* On déplace la ligne grise vers la gauche */
    .about__timeline::before {
        left: 28px !important;
        transform: none !important;
    }

    /* On change GRID pour FLEXBOX pour mieux contrôler l'ordre */
    .timeline__item {
        display: flex !important; 
        flex-direction: row !important; /* Force l'alignement horizontal */
        align-items: flex-start !important;
        gap: 1.5rem !important;
        margin-bottom: 3rem !important;
        width: 100% !important;
    }

    /* Gestion du POINT (Timeline Dot) */
    .timeline__dot {
        /* On force le point à être l'élément numéro 1 visuellement */
        order: 1 !important;
        margin: 2rem 0 0 20px !important; /* Alignement avec la ligne verticale */
        flex-shrink: 0 !important; /* Empêche le point de s'écraser */
        z-index: 5;
    }

    /* Gestion du CONTENU (Le texte) */
    .timeline__content {
        /* On force le texte à être l'élément numéro 2 visuellement */
        order: 2 !important;
        width: 100% !important;
        text-align: left !important; /* Force tout le texte à gauche */
        padding-right: 15px;
    }

    /* Correctifs spécifiques pour les éléments de "Gauche" (2015, 2020) 
       qui posaient problème sur ta photo */
    .timeline__item--left .timeline__content {
        text-align: left !important;
    }
    
    /* On cache les images décoratives sur mobile pour gagner de la place */
    .timeline__image:not(.timeline__image--stats) {
        display: none !important;
    }
    
    /* Style des cartes */
    .timeline__card {
        padding: 1.5rem !important;
        width: 100% !important;
    }
    
    /* Ajustement de la taille de l'année */
    .timeline__year {
        text-align: left !important;
        font-size: 2.5rem !important;
    }
}

/* Mobile - Optimisé */
@media (max-width: 768px) {
    .about__timeline {
        padding-left: 60px !important;
        padding-right: 1rem !important;
    }
    
    .about__timeline::before {
        left: 25px !important;
    }
    
    .timeline__item,
    .timeline__item--left,
    .timeline__item--right {
        grid-template-columns: 40px 1fr !important;
        gap: 1.5rem !important;
        margin-bottom: 3rem !important;
    }
    
    .timeline__dot {
        margin: 1.5rem 0 0 -8px !important;
        width: 14px !important;
        height: 14px !important;
        border: 3px solid #000000 !important;
    }
    
    .timeline__dot--current {
        width: 16px !important;
        height: 16px !important;
    }
    
    .timeline__year {
        font-size: 2.5rem !important;
    }
    
    .timeline__card {
        padding: 1.5rem !important;
    }
    
    .timeline__icon {
        width: 40px !important;
        height: 40px !important;
    }
    
    .timeline__title {
        font-size: 1.125rem !important;
    }
    
    .timeline__text {
        font-size: 0.9375rem !important;
    }
}

/* Petit Mobile */
@media (max-width: 480px) {
    .about__timeline {
        padding-left: 45px !important;
    }
    
    .about__timeline::before {
        left: 18px !important;
    }
    
    .timeline__item,
    .timeline__item--left,
    .timeline__item--right {
        grid-template-columns: 30px 1fr !important;
        gap: 1rem !important;
    }
    
    .timeline__dot {
        margin: 1rem 0 0 -6px !important;
        width: 12px !important;
        height: 12px !important;
    }
    
    .timeline__dot--current {
        width: 14px !important;
        height: 14px !important;
    }
    
    .timeline__year {
        font-size: 2rem !important;
    }
    
    .timeline__card {
        padding: 1.25rem !important;
    }
    
    .timeline__icon {
        width: 36px !important;
        height: 36px !important;
    }
     .about__timeline::before {
        left: 18px !important;
    }
    
    .timeline__dot {
        margin: 1.8rem 0 0 11px !important;
        width: 14px !important;
        height: 14px !important;
    }
    
    .timeline__item {
        gap: 1rem !important;
    }
    
    .timeline__year {
        font-size: 2rem !important;
    }
}


/* ========================================
   CORRECTION ALIGNEMENT SECTION ABOUT (Notre Histoire)
   ======================================== */

/* Force le header de la section à avoir la même largeur */
.about__header {
    max-width: var(--container-width);
    width: 96%;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    text-align: center;
    margin-bottom: 5rem;
}

/* Force la timeline à avoir la même largeur */
.about__timeline {
    max-width: var(--container-width);
    width: 96%;
    margin: 0 auto;
    padding: 2rem var(--container-padding) 5rem;
    position: relative;
}

/* Force les info-cards en bas à avoir la même largeur */
.about__info {
    max-width: var(--container-width);
    width: 96%;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
/* ============================================================
   MENU MOBILE FINAL - CENTRÉ ET PLEIN ÉCRAN
   À METTRE À LA FIN DU FICHIER STYLE.CSS
   ============================================================ */

@media (max-width: 768px) {
    
    /* 1. Configuration des éléments fixes (Logo et Croix) */
    .nav__logo {
        position: fixed;
        top: 0;
        left: 0px;
        z-index: 10002; /* Au-dessus du menu noir */
        height: 80px;
        display: flex;
        align-items: center;
    }

    .nav__toggle {
        display: flex !important;
        position: fixed;
        top: 28px;
        right: 20px;
        z-index: 10002; /* Au-dessus du menu noir */
    }

    .nav__cta {
        display: none !important; /* On cache le bouton Contact desktop */
    }

    /* 2. Le Fond Noir (Plein écran) */
    .nav__menu {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 100% !important;
        height: 100vh !important; /* Prend toute la hauteur */
        background-color: #000000 !important; /* Noir pur */
        
        /* C'EST ICI QUE LA MAGIE DU CENTRAGE OPÈRE */
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important; /* Centre verticalement */
        align-items: center !important;     /* Centre horizontalement */
        
        padding: 0 !important;
        margin: 0 !important;
        z-index: 10001 !important;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    /* Quand le menu est ouvert */
    .nav__menu.active {
        left: 0 !important;
    }

    /* 3. Le bloc des liens (La liste) */
    .nav__list {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        /* On limite la largeur pour que les lignes soient jolies (pas bord à bord) */
        width: 80% !important; 
        max-width: 400px !important;
    }

    /* 4. Les lignes de séparation */
    .nav__item {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15); /* Ligne grise fine */
    }
    
    /* Optionnel : Une ligne au-dessus du premier élément pour faire un cadre propre */
    .nav__item:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    /* 5. Le style du texte */
    .nav__link {
        display: block !important;
        padding: 1.5rem 0 !important; /* Espace autour du texte */
        font-size: 1.2rem !important;
        font-weight: 500 !important;
        color: rgba(255, 255, 255, 0.7) !important; /* Gris clair */
        text-decoration: none !important;
        text-align: left !important; /* Texte aligné à gauche dans le bloc centré */
        transition: color 0.3s ease !important;
    }

    /* Lien actif (Accueil) en Jaune */
    .nav__link.active {
        color: #F5C400 !important;
        font-weight: 700 !important;
    }
    
    /* Supprimer la barre de soulignement du desktop */
    .nav__link.active::after {
        display: none !important;
    }

    .nav__link:hover {
        color: #FFFFFF !important;
        padding-left: 10px !important;
    }
}
/* ============================================================
   HEADER MOBILE - BOUTON S'INSCRIRE VISIBLE
   ============================================================ */
@media (max-width: 768px) {
    /* Rendre le conteneur du bouton visible */
    .nav__cta {
        display: flex !important;
        position: fixed;
        top: 22px;
        right: 60px; /* À gauche du hamburger */
        z-index: 10002;
    }

    /* Style spécifique pour le bouton header mobile */
    .nav__cta .btn {
        padding: 0.5rem 1rem !important;
        font-size: 0.8rem !important;
        background: transparent !important;
        border: 1px solid #3B82F6 !important; /* Bordure bleue */
        color: #3B82F6 !important;
        border-radius: 50px !important;
        height: auto !important;
    }
    
    /* Cacher l'icône dans le bouton s'il y en a une */
    .nav__cta .btn svg {
        display: none !important;
    }
}
/* ============================================================
   HERO MOBILE - VERSION COMPACTE & GROSSE VOITURE
   ============================================================ */

@media (max-width: 768px) {
    
    /* 1. Le Conteneur Principal : On retire la hauteur forcée */
    .hero {
        padding-top: 100px !important;
        padding-bottom: 20px !important;
        height: auto !important;
        min-height: auto !important;
        overflow: hidden !important; /* Coupe ce qui dépasse sur les côtés */
    }

    .hero__container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        padding: 0 20px !important;
    }

    /* 2. On éclate le contenu pour changer l'ordre */
    .hero__content {
        display: contents !important;
    }

    /* --- ORDRE ET STYLE DES ÉLÉMENTS --- */

    /* A. TITRE (En haut) */
    .hero__title {
        order: 1;
        font-size: 1.8rem !important; /* Un peu plus petit pour tenir sur 2 lignes */
        line-height: 1.2 !important;
        margin-bottom: 0.5rem !important;
        text-align: center !important;
        width: 100%;
    }

    /* B. SOUS-TITRE */
    .hero__subtitle {
        order: 2;
        font-size: 0.8rem !important;
        margin-bottom: 1rem !important;
        text-align: center !important;
        width: 100%;
    }

    /* C. BADGE ÉTOILE */
    .hero__badge {
        order: 3;
        margin-bottom: 0 !important; /* Zéro marge pour coller à la voiture */
        transform: scale(0.9);
        justify-content: center !important;
        width: 100%;
    }

    /* D. ZONE VOITURE (Au milieu) */
    .hero__images {
        order: 4;
        position: relative !important;
        width: 100% !important;
        height: 220px !important; /* Hauteur fixe pour contenir la voiture */
        margin-top: -10px !important; /* Remonte la voiture vers l'étoile */
        margin-bottom: 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        animation: none !important; /* On arrête l'animation qui fait bouger */
    }

    /* La Voiture elle-même - GROSSE */
    .hero__car {
        position: relative !important;
        width: 120% !important; /* Plus large que l'écran (effet zoom) */
        max-width: 450px !important;
        height: auto !important;
        top: auto !important;
        left: auto !important;
        transform: none !important; /* On annule le centrage absolu */
        z-index: 10;
        margin-left: 10px !important; /* Petit ajustement optique */
    }

    /* La plateforme noire sous la voiture */
    .plat {
        position: absolute !important;
        top: 60% !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 120% !important;
        opacity: 0.8;
        z-index: 1;
    }

    /* Le badge "300 élèves" */
    .hero__badge-top {
        position: absolute !important;
        top: 20px !important;
        right: 10px !important;
        width: 65px !important;
        z-index: 11;
        animation: none !important;
    }

    /* E. LES BOUTONS (Tout en bas, collés) */
    .hero__buttons {
        order: 5;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        margin-top: 0px !important; /* Collé sous la voiture */
    }

    .hero__buttons .btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 1rem !important;
        font-size: 1rem !important;
        border-radius: 12px !important;
    }

    /* Bouton Bleu */
    .btn--primary {
        background: #1A73E8 !important;
        order: 1;
    }

    /* Bouton Jaune */
    .btn--secondary {
        background: #F5C400 !important;
        color: #000 !important;
        order: 2;
    }

    /* F. TEXTE "BESOIN D'INFOS" (Caché ou tout en bas) */
    .hero__info {
        order: 6;
        margin-top: 10px !important;
        display: block !important;
        text-align: center;
    }
}

.hero, #accueil {
    height: 550px !important;
    max-height: 600px !important;
    min-height: 500px !important;
}

/* Supprime le border blanc partout */
.hero *, .hero img, .hero__car, .hero__badge-top, .plat {
    border: none !important;
    outline: none !important;
}

/* Voiture bien positionnée */
.hero__car {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(1.2) !important;
}
/* ========================================
   HERO SECTION - CORRECTION RESPONSIVE COMPLÈTE
   Remplacer depuis ligne 362 dans style.css
   ======================================== */

/* ===== BASE DESKTOP (>1024px) ===== */
.hero, #accueil {
    height: 500px;
    max-height: 500px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 0 40px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0e14 0%, #1a1d24 100%);
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(254, 240, 13, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.hero .container {
    max-width: var(--container-width);
    width: 96%;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: none;
    width: 100%;
    padding: 0;
}

/* ===== CONTENU GAUCHE - TEXTE ===== */
.hero__content {
    animation: fadeInLeft 1s ease;
}

.hero__title {
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    font-family: 'avefedan';
    font-weight: 500;
    color: #FFFFFF;
}

.hero__title--highlight {
    display: block;
    background: linear-gradient(135deg, #F5C400 0%, #EAB308 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'avefedan';
    margin-top: 0.5rem;
}

.hero__subtitle {
    font-size: 1.125rem;
    color: rgba(176, 183, 195, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Badge étoile */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    color: white;
    font-size: 20px;
    font-weight: 300;
}

.hero__badge svg {
    flex-shrink: 0;
    height: 40px;
    width: 40px;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.hero__info {
    color: white;
    font-size: 20px;
    font-family: TTCommons;
}

.hero__link {
    color: white;
    text-decoration: underline;
    font-family: TTCommons;
    font-weight: 300;
    transition: color 0.3s ease;
}

.hero__link:hover {
    color: #F5C400;
}

/* ===== CONTENU DROITE - IMAGES ===== */
.hero__images {
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 1s ease;
}

/* Badge "300 élèves" en haut à droite */
.hero__badge-top {
    position: absolute;
    top: 20px;
    right: 0;
    height: 90px;
    width: auto;
    z-index: 5;
}

/* Logo MND - si présent dans HTML */
.hero__logo-top {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.hero__logo-top img {
    width: 140px;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(59, 130, 246, 0.3));
}

/* Voiture principale */
.hero__car {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(1.5) !important;
    width: 80% !important;
    max-width: 700px !important;
    height: auto !important;
    z-index: 3 !important;
    animation: floatCar 6s ease-in-out infinite;
}

/* Animation voiture avec scale */
@keyframes floatCar {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1.5) translateY(0);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5) translateY(-15px);
    }
}

/* Plateforme (.plat dans ton HTML) */
.plat {
    position: absolute !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 90% !important;
    height: auto !important;
    max-height: 150px !important;
    z-index: 1 !important;
}

/* Plateforme noire (si tu l'utilises) */
.hero__platform {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 120px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(20px);
}

/* ===== ANIMATIONS ===== */
@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);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ========================================
   RESPONSIVE TABLET (max-width: 1024px)
   ======================================== */

@media (max-width: 1024px) {
    .hero, #accueil {
        height: auto !important;
        min-height: 700px !important;
        max-height: none !important;
        padding: 100px 0 60px !important;
    }
    
    .hero__container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    /* Images en haut */
    .hero__images {
        order: -1;
        height: 450px !important; /* Plus de hauteur */
        margin-bottom: 2rem;
    }
    
    /* Voiture ajustée pour tablet */
    .hero__car {
        width: 75% !important;
        max-width: 550px !important;
        transform: translate(-60%, -50%) scale(1.3) !important;
    }
    
    @keyframes floatCar {
        0%, 100% {
            transform: translate(-50%, -50%) scale(1.3) translateY(0);
        }
        50% {
            transform: translate(-50%, -50%) scale(1.3) translateY(-12px);
        }
    }
    
    /* Badge en haut */
    .hero__badge-top {
        height: 80px;
        top: 15px;
    }
    
    /* Plateforme */
    .plat {
        max-height: 130px !important;
    }
    
    /* Texte centré */
    .hero__content {
        text-align: center;
    }
    
    .hero__buttons {
        justify-content: center;
    }
    
    .hero__badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero__title {
        font-size: 28px;
    }
    
    .hero__subtitle {
        font-size: 1.05rem;
    }
}

/* ========================================
   RESPONSIVE MOBILE (max-width: 768px)
   ======================================== */

@media (max-width: 768px) {
    .hero, #accueil {
        min-height: 750px !important;
        padding: 100px 0 50px !important;
        margin-top: 10px;
    }
    
    .hero__container {
        gap: 0rem;
    }
    
    /* Images plus petites mais avec assez d'espace */
    .hero__images {
        height: 270px !important;
        margin-bottom: 1.5rem;
    }
    
    /* Voiture pour mobile */
    .hero__car {
        width: 85% !important;
        max-width: 450px !important;
        
        transform: translate(-60%, -50%) scale(1.3) !important;
    }
    
    @keyframes floatCar {
        0%, 100% {
            transform: translate(-50%, -50%) scale(1.2) translateY(0);
        }
        50% {
            transform: translate(-50%, -50%) scale(1.2) translateY(-10px);
        }
    }
    .hero__badge{
        order:2;
    }
    /* Badge plus petit */
    .hero__badge-top {
        height: 70px;
        top: 10px;
        right: 10px;
    }
    
    /* Plateforme */
    .plat {
        max-height: 110px !important;
    }
    
    /* Texte réduit */
    .hero__title {
        font-size: 26px;
        letter-spacing: 2px;
    }
    
    .hero__subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero__badge {
        font-size: 18px;
        margin-bottom: 1.5rem;
    }
    
    .hero__badge svg {
        height: 35px;
        width: 35px;
    }
    
    .hero__info {
        font-size: 20px;
    }
    
    .hero__buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 1rem;
    }
    
    .hero__buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   RESPONSIVE PETIT MOBILE (max-width: 480px)
   ======================================== */

@media (max-width: 480px) {
    .hero, #accueil {
        min-height: 680px !important;
        padding: 90px 0 40px !important;
    }
    
    
    
    /* Images encore plus compactes */
    .hero__images {
        height:250px !important;
        margin-bottom: 1rem;
    }
    
    /* Voiture petit mobile */
    .hero__car {
        width: 90% !important;
        max-width: 350px !important;
        transform: translate(-60%, -50%) scale(1.3) !important;
    }
    
    @keyframes floatCar {
        0%, 100% {
            transform: translate(-50%, -50%) scale(1.1) translateY(0);
        }
        50% {
            transform: translate(-50%, -50%) scale(1.1) translateY(-8px);
        }
    }
    
    /* Badge très petit */
    .hero__badge-top {
        height: 60px;
        top: 5px;
        right: 5px;
    }
    
    /* Plateforme */
    .plat {
        max-height: 90px !important;
    }
    
    /* Texte minimal */
    .hero__title {
        font-size: 22px;
        letter-spacing: 1.5px;
        margin-bottom: 1rem;
    }
    
    .hero__subtitle {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
    }
    
    .hero__badge {
        font-size: 20px;
        margin-bottom: 1.25rem;
    }
    
    .hero__badge svg {
        height: 30px;
        width: 30px;
    }
    
    .hero__info {
        font-size: 18px;
    }
    
    .hero__buttons {
        max-width: 280px;
    }
}

/* ========================================
   FIX BORDER BLANC
   ======================================== */

.hero *,
.hero img,
.hero__car,
.hero__badge-top,
.plat,
.hero__platform {
    border: none !important;
    outline: none !important;
}
/* TEXTE EN HAUT ⬆️ */
.hero__content {
    order: 1; 
}

/* VOITURE EN BAS ⬇️ */
.hero__images {
    order: 2; /* Pas de -1 ! */
}
/* ========================================
   NOUVEAUX STYLES À AJOUTER À LA FIN DE STYLE.CSS
   POUR LES NOUVELLES SECTIONS
   ======================================== */

/* ========================================
   SECTION PERMIS TYPES (Voiture & Moto)
   ======================================== */

.permis-types {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0F1216 0%, #1a1d24 100%);
    position: relative;
    overflow: hidden;
}

.permis-types::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

.permis-types__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.permis-types__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.permis-type__card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    padding: 3rem;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.permis-type__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #3B82F6, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 16px 16px 0 0;
}

.permis-type__card:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.25);
}

.permis-type__card:hover::before {
    opacity: 1;
}

.permis-type__card--moto {
    border-color: rgba(254, 240, 13, 0.3);
}

.permis-type__card--moto::before {
    background: linear-gradient(90deg, transparent, #F5C400, transparent);
}

.permis-type__card--moto:hover {
    border-color: rgba(254, 240, 13, 0.5);
    box-shadow: 0 20px 60px rgba(254, 240, 13, 0.3);
}

.permis-type__badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #F5C400 0%, #EAB308 100%);
    color: #000000;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    animation: pulse-badge 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(254, 240, 13, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(254, 240, 13, 0);
    }
}

.permis-type__icon {
    width: 120px;
    height: 120px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: #3B82F6;
    transition: all 0.4s ease;
    position: relative;
}

.permis-type__icon::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    filter: blur(20px);
    z-index: -1;
}

.permis-type__icon--yellow {
    background: rgba(254, 240, 13, 0.1);
    color: #F5C400;
}

.permis-type__card:hover .permis-type__icon {
    transform: scale(1.1) rotate(5deg);
}

.permis-type__title {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.permis-type__text {
    color: #B0B7C3;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.0625rem;
}

.permis-type__list {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
    width: 100%;
    padding: 0;
}

.permis-type__list li {
    padding: 0.875rem 0;
    color: rgba(176, 183, 195, 0.95);
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.permis-type__list li:last-child {
    border-bottom: none;
}

.permis-type__list li:hover {
    color: #FFFFFF;
    padding-left: 10px;
}

.permis-type__card .btn {
    margin-top: auto;
    width: 100%;
    max-width: 280px;
}

/* ========================================
   SECTION LOGOS FINANCEMENT (Cliquables)
   ======================================== */

.financement-logos {
    padding: 6rem 0;
    background: #0F1216;
    position: relative;
}

.financement-logos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

.financement-logos__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.financement-logo__card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.financement-logo__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3B82F6, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 16px 16px 0 0;
}

.financement-logo__card:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.2);
}

.financement-logo__card:hover::before {
    opacity: 1;
}

.financement-logo__card--featured {
    border-color: rgba(254, 240, 13, 0.4);
    box-shadow: 0 10px 40px rgba(254, 240, 13, 0.15);
    background: linear-gradient(135deg, rgba(254, 240, 13, 0.05) 0%, rgba(254, 240, 13, 0.02) 100%);
}

.financement-logo__card--featured::before {
    background: linear-gradient(90deg, transparent, #F5C400, transparent);
}

.financement-logo__card--featured:hover {
    border-color: rgba(254, 240, 13, 0.6);
    box-shadow: 0 15px 50px rgba(254, 240, 13, 0.3);
    transform: translateY(-12px) scale(1.02);
}

.financement-logo__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, #F5C400 0%, #EAB308 100%);
    color: #000000;
    font-weight: 700;
    font-size: 0.75rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
    animation: pulse-badge 2s ease-in-out infinite;
}

.financement-logo__icon {
    width: 80px;
    height: 80px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #3B82F6;
    transition: all 0.4s ease;
}

.financement-logo__card--featured .financement-logo__icon {
    background: rgba(254, 240, 13, 0.15);
    color: #F5C400;
}

.financement-logo__card:hover .financement-logo__icon {
    transform: scale(1.15) rotate(-5deg);
}

.financement-logo__title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.financement-logo__text {
    color: #B0B7C3;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.financement-logos__cta {
    text-align: center;
}

/* ========================================
   STYLE LIEN EXTERNE KLAXO
   ======================================== */

.nav__link--external {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nav__link--external svg {
    opacity: 0.7;
    transition: all 0.3s ease;
}

.nav__link--external:hover svg {
    opacity: 1;
    transform: translate(2px, -2px);
}

/* ========================================
   RESPONSIVE PERMIS TYPES & FINANCEMENT
   ======================================== */

@media (max-width: 1024px) {
    .permis-types__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .financement-logos__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .permis-types {
        padding: 4rem 0;
    }
    
    .permis-types__header {
        margin-bottom: 3rem;
    }
    
    .permis-type__card {
        padding: 2.5rem 2rem;
    }
    
    .permis-type__icon {
        width: 100px;
        height: 100px;
    }
    
    .permis-type__title {
        font-size: 1.75rem;
    }
    
    .financement-logos {
        padding: 4rem 0;
    }
    
    .financement-logos__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .financement-logo__card {
        padding: 2rem 1.5rem;
    }
    
    .financement-logo__icon {
        width: 64px;
        height: 64px;
    }
}

@media (max-width: 480px) {
    .permis-type__card {
        padding: 2rem 1.5rem;
    }
    
    .permis-type__icon {
        width: 80px;
        height: 80px;
    }
    
    .permis-type__title {
        font-size: 1.5rem;
    }
    
    .permis-type__badge {
        top: 1rem;
        right: 1rem;
        font-size: 0.6875rem;
        padding: 0.375rem 0.75rem;
    }
    
    .financement-logos__grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .financement-logo__title {
        font-size: 1.25rem;
    }
}

/* ========================================
   AMÉLIORATIONS VISUELLES GÉNÉRALES
   ======================================== */

/* Plus de profondeur sur les sections */
.promo,
.about,
.advantages,
.hours,
.reviews,
.cta-final {
    position: relative;
}

.promo::before,
.advantages::before,
.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

/* Effet glow sur les boutons au hover */
.btn--primary:hover {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}

.btn--secondary:hover {
    box-shadow: 0 0 30px rgba(254, 240, 13, 0.5);
}

/* Animation subtile sur les cartes */
@keyframes float-subtle {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.promo__card:hover,
.advantage__card:hover,
.review__card:hover {
    animation: float-subtle 2s ease-in-out infinite;
   
}

/* Meilleure lisibilité des textes */
.section__title {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section__title--highlight {
    filter: drop-shadow(0 0 20px rgba(254, 240, 13, 0.4));
}
/* ✅ CSS CORRECT — copier exactement ça */

.advantages {
    padding: 6rem 0;
    position: relative;
    background: #0F1216;
}

/* UNE SEULE fois ::before — contient l'image avec opacity */
.advantages::before {
    content: '';
    position: absolute; width:100%; height:100%;
    inset: 0;
    background: url('../img.png') center bottom / cover no-repeat;
    opacity: 0.1;
    z-index: 1;
    /* PAS de pointer-events */
}

/* Le contenu par-dessus */
.advantages .container {
    position: relative;
    z-index: 1;
}