/* Styles pour GL VAN - Location de vans */

/* ===== RESET ET STYLES DE BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6699FF;
    --secondary-color: #3366CC;
    --light-color: #FFFFFF;
    --dark-color: #333333;
    --gray-color: #F8F9FA;
    --text-color: #555555;
}

body {
    font-family: 'Montserrat', sans-serif; /* Remplacer par Glancyr quand disponible */
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

section {
    padding: 80px 0;
}

/* ===== BOUTONS ===== */
.btn-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 153, 255, 0.4);
    min-width: 220px;
    text-align: center;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 153, 255, 0.6);
}

.btn-reservation {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 10px rgba(102, 153, 255, 0.3);
}

.btn-reservation:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.btn-menu-add {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: transparent;
    color: var(--light-color);
    border: 2px dashed var(--light-color);
    border-radius: 4px;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-menu-add:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    transform: scale(1.05);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.85);
    padding: 15px 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-menu li {
    margin-left: 40px;
}

.nav-menu a {
    color: var(--light-color);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.nav-menu a.active {
    position: relative;
    color: var(--light-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--light-color);
    bottom: -5px;
    left: 0;
}

.nav-menu a:not(.active):not(.btn-menu-add)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--light-color);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-menu a:not(.active):not(.btn-menu-add):hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    color: var(--light-color);
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1002;
    transition: all 0.3s ease;
}

.menu-toggle i {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.menu-toggle.active i {
    transform: rotate(90deg);
}

/* Styles pour le hamburger personnalisé */
.hamburger {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    display: inline-block;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--light-color);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 0px;
}

.hamburger span:nth-child(2) {
    top: 8px;
}

.hamburger span:nth-child(3) {
    top: 16px;
}

.menu-toggle.active .hamburger span:nth-child(1) {
    top: 8px;
    transform: rotate(135deg);
}

.menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.menu-toggle.active .hamburger span:nth-child(3) {
    top: 8px;
    transform: rotate(-135deg);
}

/* Empêcher le défilement quand le menu est ouvert */
body.menu-open {
    overflow: hidden;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), 
                      url('images/glvan-desktop-opt.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 75% 40%, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text-container {
    text-align: center;
    max-width: 800px;
    margin-bottom: 60px;
    animation: fadeInUp 1.2s ease-out;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    letter-spacing: 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 600;
}

.hero-title {
    font-size: 4.8rem;
    margin-bottom: 25px;
    color: var(--light-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    line-height: 1.1;
}

.hero-title .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 10px;
    background-color: rgba(51, 102, 204, 0.3);
    bottom: 10px;
    left: 0;
    z-index: -1;
    transform: skewX(-15deg);
}

.hero .tagline {
    font-size: 1.6rem;
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    width: 100%;
}

.btn-secondary {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    color: var(--light-color);
    padding: 15px 30px;
    border: 2px solid var(--light-color);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-width: 220px;
    text-align: center;
}

.btn-secondary:hover {
    color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--light-color);
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 100%;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 100%;
    max-width: 850px;
    margin: 50px auto 0;
    animation: fadeIn 1.5s ease-out 0.3s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 12px 22px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 180px;
    justify-content: center;
}

.hero-feature:hover {
    background-color: rgba(51, 102, 204, 0.5);
    transform: translateY(-3px);
}

.hero-feature i {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-right: 5px;
    transition: all 0.3s ease;
}

.hero-feature:hover i {
    transform: scale(1.2);
}

.hero-feature span {
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    opacity: 0.8;
}

.scroll-indicator i {
    font-size: 1.2rem;
    opacity: 0.8;
}

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

@media (max-width: 992px) {
    .hero-title {
        font-size: 3.8rem;
    }
    
    .hero-features {
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .hero {
        background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), 
                          url('images/glvan-mobile-opt.jpg');
        height: 100vh;
        padding: 0;
    }
    
    .hero-content {
        padding: 0 15px;
        height: 100vh;
        justify-content: space-between;
        gap: 0;
    }
    
    .hero-text-container {
        text-align: center;
        max-width: 100%;
        margin-bottom: 0;
        margin-top: 80px;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 15px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 8px;
        letter-spacing: 2px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 10px;
        line-height: 1;
    }
    
    .hero .tagline {
        font-size: 1.1rem;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        margin-top: 15px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 12px 25px;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
        min-width: auto;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 8px;
        align-items: center;
        margin: 20px auto 0;
        max-width: 100%;
    }
    
    .hero-feature {
        padding: 8px 15px;
        min-width: auto;
        width: 90%;
        max-width: 250px;
    }
    
    .hero-feature span {
        font-size: 0.85rem;
        white-space: normal;
    }
    
    .scroll-indicator {
        bottom: 15px;
        position: absolute;
        z-index: 5;
    }
    
    .scroll-indicator span {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
    
    .scroll-indicator i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 100vh;
        overflow: hidden;
    }
    
    .hero-content {
        padding: 0 12px;
        height: 100vh;
        max-height: 100vh;
    }
    
    .hero-text-container {
        margin-top: 70px;
        gap: 10px;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 5px;
        letter-spacing: 1.5px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 8px;
        line-height: 0.9;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero .tagline {
        font-size: 0.95rem;
        margin-bottom: 15px;
        line-height: 1.2;
        max-width: 85%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        gap: 10px;
        margin-top: 12px;
    }
    
    .btn-primary, .btn-secondary {
        max-width: 260px;
        padding: 10px 20px;
        font-size: 0.85rem;
        letter-spacing: 0.3px;
    }
    
    .hero-features {
        gap: 6px;
        margin: 15px auto 0;
    }
    
    .hero-feature {
        padding: 6px 12px;
        width: 85%;
        max-width: 220px;
    }
    
    .hero-feature i {
        font-size: 1rem;
    }
    
    .hero-feature span {
        font-size: 0.75rem;
        font-weight: 500;
    }
    
    .scroll-indicator {
        bottom: 10px;
        z-index: 10;
        position: absolute; 
        width: 100%;
        left: 0;
        transform: none;
        animation: bounce-mobile 2s infinite;
    }
    
    .scroll-indicator span {
        font-size: 0.7rem;
        letter-spacing: 1px;
        margin-bottom: 5px;
    }
    
    .scroll-indicator i {
        font-size: 0.9rem;
    }
    
    @keyframes bounce-mobile {
        0%, 20%, 50%, 80%, 100% {
            transform: translateY(0);
        }
        40% {
            transform: translateY(-8px);
        }
        60% {
            transform: translateY(-4px);
        }
    }
}

@media (max-width: 360px) {
    .hero-text-container {
        margin-top: 60px;
        gap: 8px;
    }
    
    .hero-subtitle {
        font-size: 0.7rem;
        margin-bottom: 4px;
        letter-spacing: 1px;
    }
    
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 6px;
        line-height: 0.85;
    }
    
    .hero .tagline {
        font-size: 0.85rem;
        margin-bottom: 12px;
        line-height: 1.1;
    }
    
    .hero-buttons {
        gap: 8px;
        margin-top: 10px;
    }
    
    .btn-primary, .btn-secondary {
        max-width: 240px;
        padding: 9px 18px;
        font-size: 0.8rem;
    }
    
    .hero-features {
        gap: 5px;
        margin: 12px auto 0;
    }
    
    .hero-feature {
        padding: 5px 10px;
        width: 80%;
        max-width: 200px;
    }
    
    .hero-feature i {
        font-size: 0.9rem;
        margin-right: 6px;
    }
    
    .hero-feature span {
        font-size: 0.7rem;
    }
}

/* ===== VANS SECTION ===== */
.vans {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5585ff 90%);
    color: var(--light-color);
    padding: 100px 0 40px;
    position: relative;
    margin-bottom: 0;
}

.vans::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0.7;
}

.vans h2 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--light-color);
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--light-color);
    font-size: 1.1rem;
}

.vans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 40px;
    padding: 0 20px;
    margin-top: 50px;
}

/* Cartes de van - Design luxueux et épuré */
.van-card {
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    margin-bottom: 10px;
    border: none;
}

.van-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.van-image {
    height: 220px;
    overflow: hidden;
    position: relative;
    background-color: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.van-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.05));
}

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

/* Style pour les badges de qualité */
.van-badge {
    position: absolute;
    top: 20px;
    left: 0;
    color: white;
    padding: 8px 15px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 10;
    text-transform: uppercase;
}

.van-badge.confort {
    background-color: var(--primary-color);
}

.van-badge.premium {
    background-color: #222;
}

.van-badge.luxe {
    background-color: #3366CC;
}

.van-badge.coming {
    background-color: #6c757d;
}

.van-info {
    padding: 25px;
    text-align: left;
    color: var(--dark-color);
    position: relative;
    background-color: #fff;
}

.van-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.van-details {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
    gap: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 15px;
}

.detail {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #444;
    font-weight: 500;
}

.detail i {
    font-size: 1.1rem;
    margin-right: 8px;
    color: var(--primary-color);
}

.van-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.spec {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    background-color: rgba(102, 153, 255, 0.1);
    padding: 5px 12px;
    border-radius: 4px;
    color: #444;
}

.spec i {
    font-size: 0.9rem;
    margin-right: 6px;
    color: var(--secondary-color);
}

.btn-reservation {
    display: inline-block;
    background-color: #222;
    color: var(--light-color);
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    box-shadow: none;
}

.btn-reservation:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.btn-coming-soon {
    display: inline-block;
    background-color: #6c757d;
    color: var(--light-color);
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    width: 100%;
    text-align: center;
    cursor: default;
    opacity: 0.8;
}

.van-card.coming-soon {
    opacity: 0.9;
}

.van-card.coming-soon:hover {
    transform: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* ===== WHY-US SECTION ===== */
.why-us {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5585ff 90%);
    color: var(--light-color);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: 0;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
    z-index: 0;
}

.why-us .section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.why-us .section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--light-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.advantage-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.advantage-icon {
    background-color: rgba(255, 255, 255, 0.15);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 20px;
    color: var(--light-color);
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    background-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.advantage-card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--light-color);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.advantage-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 0;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 80px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo-img {
    height: 80px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.2rem;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer ul li i {
    margin-right: 10px;
    color: var(--primary-color);
}


.footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .van-card {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .why-us-content {
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .advantages {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials .section-title,
    .faq .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .vans {
        padding-top: 60px;
    }
    
    .why-us {
        padding: 60px 0;
    }
    
    .why-us::before {
        display: none;
    }
    
    .vans-grid, .vans-catalogue-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .van-card {
        margin: 0 auto;
        max-width: 360px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        background-color: rgba(0, 0, 0, 0.95);
        width: 80%;
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 30px 40px;
        transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
        z-index: 1001;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
        animation: slideIn 0.4s forwards;
    }
    
    @keyframes slideIn {
        from {
            transform: translateX(100%);
        }
        to {
            transform: translateX(0);
        }
    }
    
    .nav-menu li {
        margin: 15px 0;
        width: 100%;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
        transition-delay: calc(0.1s * var(--i, 0));
    }
    
    .nav-menu li:nth-child(1) {
        --i: 1;
    }
    
    .nav-menu li:nth-child(2) {
        --i: 2;
    }
    
    .nav-menu li:nth-child(3) {
        --i: 3;
    }
    
    .nav-menu a {
        display: block;
        font-size: 1.2rem;
        width: 100%;
        padding: 10px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero .tagline {
        font-size: 1.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer a:hover {
        transform: translateX(0) scale(1.05);
    }
    
    .testimonials {
        padding: 80px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .faq {
        padding: 80px 0;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .testimonials .section-title,
    .faq .section-title {
        font-size: 2.2rem;
    }
    
    .faq .section-title::after {
        width: 50px;
        height: 2px;
    }
    
    .catalogue-header {
        padding: 120px 0 60px;
    }
    
    .catalogue-header h1 {
        font-size: 2.5rem;
    }
    
    .catalogue-header p {
        font-size: 1.1rem;
    }
    
    .btn-view-all {
        padding: 12px 25px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
        max-width: 90%;
    }
    
    .hero .tagline {
        font-size: 1rem;
    }
    
    .btn-primary {
        padding: 10px 25px;
    }
    
    .vans h2, .why-us-text h2 {
        font-size: 1.8rem;
    }
    
    .vans-grid, .vans-catalogue-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .van-card {
        width: 100%;
    }
    
    .van-details {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .testimonials .section-title,
    .faq .section-title {
        font-size: 2rem;
    }
    
    .testimonials .section-intro,
    .faq .section-intro {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .testimonial-content {
        padding: 25px 20px;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
    
    .catalogue-header h1 {
        font-size: 2rem;
    }
    
    .catalogue-header p {
        font-size: 1rem;
    }
    
    .catalogue-content {
        padding: 40px 0 60px;
    }
}

/* ===== SECTION AVIS CLIENTS ===== */
.testimonials {
    background: linear-gradient(135deg, #5585ff 0%, #3366CC 100%);
    color: var(--light-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/glvan-desktop-opt.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
}

.testimonials .section-title {
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--light-color);
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonials .section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--light-color);
    font-size: 1.1rem;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    background-color: rgba(255, 255, 255, 0.15);
}

.testimonial-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #FFD700;
    margin-right: 5px;
    font-size: 1.1rem;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    color: var(--light-color);
    line-height: 1.8;
    font-size: 1rem;
    flex-grow: 1;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    margin-top: auto;
}

.testimonial-author h4 {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--light-color);
    font-size: 1.1rem;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ===== SECTION FAQ ===== */
.faq {
    padding: 100px 0;
    background-color: #f0f5ff;
    position: relative;
    z-index: 1;
    background-image: linear-gradient(135deg, rgba(102, 153, 255, 0.05) 0%, rgba(51, 102, 204, 0.1) 100%);
    border-top: 1px solid rgba(102, 153, 255, 0.2);
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.faq .section-title {
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    font-size: 2.8rem;
    font-weight: 700;
    color: #2a4a8a;
    text-transform: uppercase;
}

.faq .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.faq .section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #445a7f;
    font-size: 1.15rem;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.faq-decoration-1 {
    position: absolute;
    top: 20%;
    left: 5%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102, 153, 255, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.faq-decoration-2 {
    position: absolute;
    bottom: 15%;
    right: 8%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(51, 102, 204, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(51, 102, 204, 0.15);
    border-left: 5px solid var(--secondary-color);
    transition: all 0.3s ease;
    position: relative;
}

.faq-item:hover {
    box-shadow: 0 15px 40px rgba(51, 102, 204, 0.25);
    transform: translateY(-3px);
}

.faq-question {
    padding: 22px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.9);
}

.faq-question:hover {
    background-color: rgba(102, 153, 255, 0.1);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.15rem;
    color: #2a4a8a;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.icon-container {
    width: 36px;
    height: 36px;
    background-color: rgba(102, 153, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .icon-container {
    background-color: var(--secondary-color);
}

.faq-item.active .icon-container i {
    color: white;
    transform: rotate(180deg);
}

.faq-item.active .faq-question {
    background-color: rgba(102, 153, 255, 0.15);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    background-color: rgba(255, 255, 255, 0.7);
}

.faq-item.active .faq-answer {
    padding: 5px 25px 25px;
    max-height: 500px;
    border-top: 1px solid rgba(102, 153, 255, 0.1);
}

.faq-answer p {
    margin: 0;
    color: #445a7f;
    line-height: 1.7;
    font-size: 1rem;
    padding-top: 15px;
}

/* Effet de décoration */
.faq::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-image: radial-gradient(circle, rgba(102, 153, 255, 0.1) 0%, transparent 70%);
    z-index: 0;
}

/* Bouton Voir tous nos vans */
.view-all-container {
    text-align: center;
    margin-top: 60px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.2) 100%);
    color: var(--light-color);
    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-view-all span {
    position: relative;
    z-index: 2;
}

.btn-view-all i {
    margin-left: 12px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.btn-view-all:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--light-color);
}

.btn-view-all:hover i {
    transform: translateX(5px);
}

.btn-view-all::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.3) 100%);
    transition: width 0.3s ease;
    z-index: 1;
}

.btn-view-all:hover::after {
    width: 100%;
}

/* ===== PAGE CATALOGUE ===== */
.catalogue-header {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7)), 
                url('images/glvan-desktop-opt.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-color);
    text-align: center;
    padding: 130px 0 80px;
    margin-top: 0;
}

.catalogue-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--light-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.catalogue-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

/* Filtres */
.catalogue-filters {
    background-color: var(--light-color);
    padding: 30px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
}

.filters-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.9rem;
}

.filter-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    background-color: var(--light-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--text-color);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236699FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    transition: all 0.3s ease;
}

.filter-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 153, 255, 0.1);
}

.btn-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 5px;
    padding: 12px 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 26px;
}

.btn-filter:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 153, 255, 0.3);
}

.btn-filter i {
    margin-right: 8px;
}

.btn-reset-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e9ecef;
    color: #495057;
    border: none;
    border-radius: 5px;
    padding: 12px 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 26px;
}

.btn-reset-filter:hover {
    background-color: #dee2e6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-reset-filter i {
    margin-right: 8px;
}

.filter-results {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-weight: 600;
    color: var(--dark-color);
}

.filter-results span {
    color: var(--primary-color);
    font-weight: 700;
}

.van-card.hidden {
    display: none;
}

.no-results-message {
    text-align: center;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    margin: 30px auto;
    max-width: 500px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.no-results-message h3 {
    color: #2a4a8a;
    margin-bottom: 15px;
}

.no-results-message p {
    color: var(--text-color);
    margin-bottom: 20px;
}

/* Filtres compacts */
.catalogue-filters-compact {
    background-color: var(--light-color);
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.filters-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-toggle-filters {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #f8f9fa;
    color: #6c757d;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    padding: 8px 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-toggle-filters:hover {
    background-color: #e9ecef;
    color: #495057;
    border-color: #ced4da;
}

.btn-toggle-filters.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-toggle-filters i.fa-chevron-down {
    transition: transform 0.3s ease;
}

.btn-toggle-filters.active i.fa-chevron-down {
    transform: rotate(180deg);
}

.filters-container {
    margin-top: 20px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.filter-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: flex-end;
}

.filter-actions .btn-filter,
.filter-actions .btn-reset-filter {
    margin-top: 0;
    flex: 0 0 auto;
}

/* Contenu catalogue */
.catalogue-content {
    background-color: #f9fafb;
    padding: 60px 0 80px;
}

.vans-catalogue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

/* Media queries pour la page catalogue */
@media (max-width: 992px) {
    .catalogue-header h1 {
        font-size: 3rem;
    }
    
    .filters-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .btn-filter {
        width: 100%;
        margin-top: 10px;
    }
    
    .filter-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .filter-actions .btn-filter,
    .filter-actions .btn-reset-filter {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .catalogue-header {
        padding: 120px 0 60px;
    }
    
    .catalogue-header h1 {
        font-size: 2.5rem;
    }
    
    .catalogue-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .catalogue-header h1 {
        font-size: 2rem;
    }
    
    .catalogue-header p {
        font-size: 1rem;
    }
    
    .catalogue-content {
        padding: 40px 0 60px;
    }
}

/* ===== HERO SECTION MOBILE PARFAITE ===== */
@media screen and (max-width: 768px) {
    .hero {
        height: 100vh !important;
        min-height: 100vh !important;
        max-height: 100vh !important;
        overflow: hidden !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .hero-content {
        height: 100vh !important;
        max-height: 100vh !important;
        padding: 0 15px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        gap: 0 !important;
    }
    
    .hero-text-container {
        margin-top: 80px !important;
        margin-bottom: 0 !important;
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        gap: 15px !important;
        max-width: 100% !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 8px !important;
        letter-spacing: 2px !important;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
        margin-bottom: 12px !important;
        line-height: 1 !important;
        max-width: 95% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .hero .tagline {
        font-size: 1.2rem !important;
        margin-bottom: 20px !important;
        line-height: 1.3 !important;
        max-width: 90% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .hero-buttons {
        gap: 12px !important;
        margin-top: 15px !important;
        margin-bottom: 0 !important;
        flex-direction: column !important;
    }
    
    .hero .btn-primary,
    .hero .btn-secondary {
        padding: 14px 28px !important;
        font-size: 0.95rem !important;
        max-width: 280px !important;
        width: 90% !important;
        margin: 0 auto !important;
        font-weight: 600 !important;
        letter-spacing: 0.5px !important;
    }
    
    .hero-features {
        margin: 25px auto 0 !important;
        gap: 8px !important;
        max-width: 100% !important;
        flex-direction: column !important;
        align-self: center !important;
    }
    
    .hero-feature {
        padding: 10px 16px !important;
        width: 85% !important;
        max-width: 260px !important;
        margin: 0 auto !important;
        border-radius: 25px !important;
    }
    
    .hero-feature span {
        font-size: 0.9rem !important;
        font-weight: 500 !important;
    }
    
    .hero-feature i {
        font-size: 1.1rem !important;
        margin-right: 8px !important;
    }
    
    .scroll-indicator {
        bottom: 15px !important;
        margin-bottom: 0 !important;
    }
    
    .scroll-indicator span {
        font-size: 0.8rem !important;
    }
    
    .scroll-indicator i {
        font-size: 1.1rem !important;
    }
}

@media screen and (max-width: 480px) {
    .hero-text-container {
        margin-top: -75px !important;
        gap: 12px !important;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
        letter-spacing: 1.5px !important;
    }
    
    .hero-title {
        font-size: 2.1rem !important;
        margin-bottom: 10px !important;
        line-height: 0.95 !important;
    }
    
    .hero .tagline {
        font-size: 1.05rem !important;
        margin-bottom: 18px !important;
    }
    
    .hero .btn-primary,
    .hero .btn-secondary {
        padding: 12px 24px !important;
        font-size: 0.9rem !important;
        max-width: 260px !important;
    }
    
    .hero-features {
        margin: 18px auto 0 !important;
        gap: 6px !important;
    }
    
    .hero-feature {
        padding: 8px 14px !important;
        width: 80% !important;
        max-width: 240px !important;
    }
    
    .hero-feature span {
        font-size: 0.85rem !important;
    }
    
    .hero-feature i {
        font-size: 1rem !important;
    }
}

@media screen and (max-width: 360px) {
    .hero-text-container {
        margin-top: 65px !important;
        gap: 10px !important;
    }
    
    .hero-subtitle {
        font-size: 0.85rem !important;
        letter-spacing: 1.2px !important;
    }
    
    .hero-title {
        font-size: 1.9rem !important;
        line-height: 0.9 !important;
        margin-bottom: 8px !important;
    }
    
    .hero .tagline {
        font-size: 0.95rem !important;
        margin-bottom: 16px !important;
    }
    
    .hero-buttons {
        gap: 10px !important;
    }
    
    .hero .btn-primary,
    .hero .btn-secondary {
        padding: 11px 22px !important;
        font-size: 0.85rem !important;
        max-width: 240px !important;
    }
    
    .hero-features {
        margin: 16px auto 0 !important;
        gap: 5px !important;
    }
    
    .hero-feature {
        padding: 7px 12px !important;
        width: 75% !important;
        max-width: 220px !important;
    }
    
    .hero-feature span {
        font-size: 0.8rem !important;
    }
    
    .hero-feature i {
        font-size: 0.95rem !important;
        margin-right: 6px !important;
    }
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 992px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .van-card {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .why-us-content {
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .advantages {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .vans {
        padding-top: 60px;
    }
    
    .why-us {
        padding: 60px 0;
    }
    
    .why-us::before {
        display: none;
    }
    
    .vans-grid, .vans-catalogue-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .van-card {
        margin: 0 auto;
        max-width: 360px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        background-color: rgba(0, 0, 0, 0.95);
        width: 80%;
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 30px 40px;
        transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
        z-index: 1001;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
        animation: slideIn 0.4s forwards;
    }
    
    @keyframes slideIn {
        from {
            transform: translateX(100%);
        }
        to {
            transform: translateX(0);
        }
    }
    
    .nav-menu li {
        margin: 15px 0;
        width: 100%;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
        transition-delay: calc(0.1s * var(--i, 0));
    }
    
    .nav-menu li:nth-child(1) {
        --i: 1;
    }
    
    .nav-menu li:nth-child(2) {
        --i: 2;
    }
    
    .nav-menu li:nth-child(3) {
        --i: 3;
    }
    
    .nav-menu a {
        display: block;
        font-size: 1.2rem;
        width: 100%;
        padding: 10px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero .tagline {
        font-size: 1.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer a:hover {
        transform: translateX(0) scale(1.05);
    }
    
    .testimonials {
        padding: 80px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .faq {
        padding: 80px 0;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .testimonials .section-title,
    .faq .section-title {
        font-size: 2.2rem;
    }
    
    .faq .section-title::after {
        width: 50px;
        height: 2px;
    }
    
    .catalogue-header {
        padding: 120px 0 60px;
    }
    
    .catalogue-header h1 {
        font-size: 2.5rem;
    }
    
    .catalogue-header p {
        font-size: 1.1rem;
    }
    
    .btn-view-all {
        padding: 12px 25px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
        max-width: 90%;
    }
    
    .hero .tagline {
        font-size: 1rem;
    }
    
    .btn-primary {
        padding: 10px 25px;
    }
    
    .vans h2, .why-us-text h2 {
        font-size: 1.8rem;
    }
    
    .vans-grid, .vans-catalogue-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .van-card {
        width: 100%;
    }
    
    .van-details {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .testimonials .section-title,
    .faq .section-title {
        font-size: 2rem;
    }
    
    .testimonials .section-intro,
    .faq .section-intro {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .testimonial-content {
        padding: 25px 20px;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
    
    .catalogue-header h1 {
        font-size: 2rem;
    }
    
    .catalogue-header p {
        font-size: 1rem;
    }
    
    .catalogue-content {
        padding: 40px 0 60px;
    }
}

/* STYLES POUR LE FORMULAIRE DE RÉSERVATION */

/* En-tête de la page de réservation */
.reservation-header {
    background-color: #3366CC;
    background-image: linear-gradient(135deg, #3366CC 0%, #4d7ce0 60%, #6699FF 100%);
    padding: 100px 0 60px;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.reservation-header::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.reservation-header::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    z-index: 1;
}

.reservation-header .container {
    position: relative;
    z-index: 2;
}

.reservation-header h1 {
    font-size: 42px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInDown 0.8s ease-out;
    color: #ffffff !important;
}

.reservation-header p {
    font-size: 20px;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    color: #ffffff !important;
}

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

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

/* Responsive styles for reservation header */
@media (max-width: 768px) {
    .reservation-header {
        padding: 80px 0 50px;
    }
    
    .reservation-header h1 {
        font-size: 32px;
    }
    
    .reservation-header p {
        font-size: 18px;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .reservation-header {
        padding: 70px 0 40px;
    }
    
    .reservation-header h1 {
        font-size: 28px;
        letter-spacing: 1px;
    }
    
    .reservation-header p {
        font-size: 16px;
    }
}

/* Section du formulaire */
.reservation-form-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.reservation-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Étapes du formulaire */
.reservation-steps {
    display: flex;
    justify-content: space-between;
    padding: 25px 30px;
    background-color: #f1f5fd;
    background-image: linear-gradient(120deg, #f1f5fd 0%, #e9f0ff 100%);
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 10;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0.6;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    position: relative;
    width: 18%;
}

.step:hover {
    background-color: rgba(102, 153, 255, 0.1);
    transform: translateY(-2px);
}

.step.active {
    opacity: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ccd7ee;
    color: #3366CC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.step.active .step-number {
    background-color: #3366CC;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(51, 102, 204, 0.3);
    transform: scale(1.1);
}

.step-text {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    transition: all 0.3s ease;
}

.step.active .step-text {
    color: #222;
    font-weight: 600;
}

/* Supprimer les lignes entre les étapes */
.reservation-steps::before,
.reservation-steps::after {
    display: none;
}

/* Pour la compatibilité, nous redéfinissons simplement les sélecteurs pour les largeurs de progression */
.step.active ~ .reservation-steps::after,
#step-2.active ~ .reservation-steps::after,
#step-3.active ~ .reservation-steps::after,
#step-4.active ~ .reservation-steps::after {
    display: none;
}

/* Ajouter une animation subtile lorsqu'on passe d'une étape à l'autre */
@keyframes stepTransition {
    0% { transform: translateY(10px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.form-step {
    animation: stepTransition 0.4s ease-out;
}

/* Formulaire */
.reservation-form {
    padding: 40px;
}

.form-step h2 {
    margin-bottom: 30px;
    color: #333;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.form-step h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #3366CC;
    border-radius: 3px;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #444;
    font-weight: 500;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
    background-color: #fbfbfb;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #6699FF;
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 153, 255, 0.1);
    background-color: #ffffff;
}

/* Styles pour la validation visuelle */
.form-group input.valid,
.form-group select.valid,
.form-group textarea.valid {
    border-color: #4CAF50;
    background-color: rgba(76, 175, 80, 0.05);
    padding-right: 40px;
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
    border-color: #f44336;
    background-color: rgba(244, 67, 54, 0.05);
    padding-right: 40px;
}

.form-group input.valid ~ .validation-icon:after,
.form-group select.valid ~ .validation-icon:after,
.form-group textarea.valid ~ .validation-icon:after {
    content: '✓';
    position: absolute;
    right: 15px;
    top: 42px;
    color: #4CAF50;
    font-size: 16px;
}

.form-group input.invalid ~ .validation-icon:after,
.form-group select.invalid ~ .validation-icon:after,
.form-group textarea.invalid ~ .validation-icon:after {
    content: '✗';
    position: absolute;
    right: 15px;
    top: 42px;
    color: #f44336;
    font-size: 16px;
}

.validation-icon {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    pointer-events: none;
}

.error-message {
    color: #f44336;
    font-size: 12px;
    margin-top: 5px;
    padding-left: 5px;
    font-weight: 500;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #6699FF;
}

.input-with-icon input {
    padding-right: 40px;
}

/* Informations additionnelles */
.info-box {
    background-color: #f1f5fd;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    border-left: 4px solid #3366CC;
}

.info-box i {
    color: #3366CC;
    font-size: 18px;
    margin-right: 10px;
    margin-top: 2px;
}

.info-box p {
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* Boutons de navigation du formulaire */
.form-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.btn-back,
.btn-next,
.btn-submit {
    padding: 14px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    border: none;
}

.btn-back {
    background-color: #f1f1f1;
    color: #555;
}

.btn-back:hover {
    background-color: #e5e5e5;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-next {
    background-color: #6699FF;
    color: #ffffff;
    margin-left: auto;
}

.btn-next:hover {
    background-color: #3366CC;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 153, 255, 0.3);
}

.btn-submit {
    background-color: #4CAF50;
    color: #ffffff;
    margin-left: auto;
}

.btn-submit:hover {
    background-color: #3d8b40;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.btn-back i,
.btn-next i,
.btn-submit i {
    margin: 0 8px;
}

/* Animation des boutons */
@keyframes pulse-button {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.btn-next:focus, .btn-submit:focus {
    animation: pulse-button 0.8s ease-in-out infinite;
}

/* Choix du véhicule */
.van-selection {
    margin-bottom: 25px;
}

/* Checkbox pour les termes */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 3px;
    transform: scale(1.2);
}

.checkbox-group label {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Récapitulatif de la réservation */
.recap-container {
    margin-bottom: 30px;
}

.recap-section {
    margin-bottom: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.recap-section:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.recap-section h3 {
    font-size: 16px;
    color: #3366CC;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;
}

.recap-section h3 i {
    margin-right: 10px;
    font-size: 18px;
}

.recap-item {
    display: flex;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #eee;
}

.recap-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recap-label {
    font-weight: 600;
    color: #555;
    width: 160px;
    flex-shrink: 0;
}

.recap-value {
    color: #333;
    font-weight: 500;
}

/* Message de confirmation */
#confirmation-message {
    padding: 50px 40px;
    text-align: center;
}

.confirmation-icon {
    font-size: 70px;
    color: #4CAF50;
    margin-bottom: 20px;
    animation: scale-in 0.5s ease;
}

@keyframes scale-in {
    0% { transform: scale(0); }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.confirmation-content h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

.confirmation-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.confirmation-email {
    font-weight: 500;
    color: #333;
    margin-bottom: 30px;
    padding: 15px;
    background-color: #f1f5fd;
    border-radius: 8px;
    display: inline-block;
}

.confirmation-email span {
    color: #3366CC;
    font-weight: 600;
}

.confirmation-actions {
    margin-top: 30px;
}

.confirmation-actions .btn-primary {
    background-color: #3366CC;
    padding: 14px 30px;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.confirmation-actions .btn-primary:hover {
    background-color: #1a4cad;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(102, 153, 255, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .reservation-steps {
        padding: 15px;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    
    .step {
        width: calc(33.33% - 10px);
        justify-content: center;
        min-width: 80px;
    }
    
    .step-text {
        font-size: 12px;
    }
    
    .reservation-form {
        padding: 30px 20px;
    }
    
    .form-nav {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .btn-back, .btn-next, .btn-submit {
        width: 100%;
        justify-content: center;
    }
    
    .recap-item {
        flex-direction: column;
    }
    
    .recap-label {
        width: 100%;
        margin-bottom: 5px;
    }
}

@media (max-width: 576px) {
    .reservation-header h1 {
        font-size: 28px;
    }
    
    .reservation-header p {
        font-size: 15px;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
    
    .form-step h2 {
        font-size: 22px;
    }
    
    .confirmation-content h2 {
        font-size: 24px;
    }
}

.field-hint {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
    font-style: italic;
}

.error-container {
    background-color: #fdeaea;
    border-left: 4px solid #f44336;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 5px;
    animation: fadeIn 0.3s ease;
}

.error-content {
    display: flex;
    align-items: center;
}

.error-content i {
    font-size: 22px;
    color: #f44336;
    margin-right: 10px;
}

.error-content p {
    margin: 0;
    color: #d32f2f;
    font-weight: 500;
}

/* Personnalisation de flatpickr */
.flatpickr-calendar {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15) !important;
    border-radius: 8px !important;
    border: none !important;
}

/* Styles pour l'étape Conditions */
.conditions-container {
    max-width: 100%;
}

.conditions-intro {
    margin-bottom: 30px;
    text-align: center;
}

.conditions-intro p {
    font-size: 16px;
    color: #555;
    margin: 0;
}

.conditions-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.condition-item {
    display: flex;
    align-items: flex-start;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #3366CC;
    transition: all 0.3s ease;
}

.condition-item:hover {
    background-color: #f1f5fd;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.condition-icon {
    background-color: #3366CC;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.condition-icon i {
    font-size: 18px;
}

.condition-content {
    flex: 1;
}

.condition-content h4 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

.condition-content p {
    margin: 0 0 5px 0;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.condition-content ul {
    margin: 0;
    padding-left: 20px;
}

.condition-content li {
    margin-bottom: 5px;
    font-size: 15px;
    color: #555;
}

.condition-content strong {
    color: #3366CC;
    font-weight: 600;
}

.condition-content em {
    color: #666;
    font-size: 14px;
}

.conditions-acceptance {
    background-color: #e8f2ff;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #3366CC;
    margin-bottom: 30px;
}

.conditions-acceptance .checkbox-group {
    margin-bottom: 0;
}

.conditions-acceptance .checkbox-group label {
    font-weight: 600;
    color: #222;
    font-size: 16px;
}

/* Responsive pour les conditions */
@media (max-width: 768px) {
    .condition-item {
        flex-direction: column;
        text-align: center;
    }
    
    .condition-icon {
        margin-right: 0;
        margin-bottom: 15px;
        align-self: center;
    }
    
    .condition-content h4 {
        font-size: 16px;
    }
    
    .condition-content p,
    .condition-content li {
        font-size: 14px;
    }
    
    .conditions-acceptance {
        padding: 15px;
    }
    
    .conditions-acceptance .checkbox-group label {
        font-size: 15px;
    }
}

.flatpickr-day.selected, 
.flatpickr-day.startRange, 
.flatpickr-day.endRange, 
.flatpickr-day.selected.inRange, 
.flatpickr-day.startRange.inRange, 
.flatpickr-day.endRange.inRange, 
.flatpickr-day.selected:focus, 
.flatpickr-day.startRange:focus, 
.flatpickr-day.endRange:focus, 
.flatpickr-day.selected:hover, 
.flatpickr-day.startRange:hover, 
.flatpickr-day.endRange:hover, 
.flatpickr-day.selected.prevMonthDay, 
.flatpickr-day.startRange.prevMonthDay, 
.flatpickr-day.endRange.prevMonthDay, 
.flatpickr-day.selected.nextMonthDay, 
.flatpickr-day.startRange.nextMonthDay, 
.flatpickr-day.endRange.nextMonthDay {
    background: #3366CC !important;
    border-color: #3366CC !important;
}

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)), 
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)), 
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
    box-shadow: -10px 0 0 #3366CC !important;
}

.flatpickr-day.inRange, 
.flatpickr-day.prevMonthDay.inRange, 
.flatpickr-day.nextMonthDay.inRange, 
.flatpickr-day.today.inRange, 
.flatpickr-day.prevMonthDay.today.inRange, 
.flatpickr-day.nextMonthDay.today.inRange, 
.flatpickr-day:hover, 
.flatpickr-day.prevMonthDay:hover, 
.flatpickr-day.nextMonthDay:hover, 
.flatpickr-day:focus, 
.flatpickr-day.prevMonthDay:focus, 
.flatpickr-day.nextMonthDay:focus {
    background: #e8f0ff !important;
    border-color: #e8f0ff !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover, 
.numInputWrapper:hover {
    background: #f1f5fd !important;
} /* Version: Tue Jul 22 19:19:15 CEST 2025 */
/* Version mobile parfaite: 19:20:55 */
/* Hero features centrées: 19:24:00 */
