
    /* ================================================
   CAROUSEL VIDÉO — style "Nos espaces" (Version Fullscreen sur mobile)
   ================================================ */
    .video-carousel-section {
        padding: 60px 0 50px;
        background: #fff;
        text-align: center;
        overflow: hidden;
    }

    .video-carousel-section .section-title {
        font-size: 32px;
        font-weight: 700;
        color: #111;
        margin-bottom: 36px;
        padding: 0 20px;
    }

    .vc-outer {
        position: relative;
        overflow: hidden;
        padding: 35px 80px;
    }

    .vc-track {
        display: flex;
        align-items: center;
        gap: 40px;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
        position: relative;
    }

    .vc-slide {
        flex: 0 0 calc(51.333% - 27px);
        position: relative;
        border-radius: 28px;
        overflow: hidden;
        cursor: pointer;
        background: #000;
        aspect-ratio: 16 / 9;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0.4;
        transform: scale(0.85);
        margin-left: -13%;
    }

    .vc-slide.active {
        opacity: 1;
        transform: scale(1.08);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        z-index: 10;
    }

    /* Animation pour les vidéos - chaque vidéo s'affiche l'une après l'autre */
    .vc-slide {
        animation: fadeInUp 0.6s ease-out backwards;
    }

    .vc-slide:nth-child(1) {
        animation-delay: 0.1s;
    }

    .vc-slide:nth-child(2) {
        animation-delay: 0.3s;
    }

    .vc-slide:nth-child(3) {
        animation-delay: 0.5s;
    }

    .vc-slide:nth-child(4) {
        animation-delay: 0.7s;
    }

    .vc-slide:nth-child(5) {
        animation-delay: 0.9s;
    }

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

        to {
            opacity: 0.4;
            transform: translateY(0) scale(0.85);
        }
    }

    .vc-slide.active {
        animation: none;
    }

    .vc-slide img.vc-thumb {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    .vc-slide.active:hover img.vc-thumb {
        transform: scale(1.05);
    }

    /* Play button - plus grand */
    .vc-play {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80px;
        height: 80px;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
        transition: all 0.3s ease;
        z-index: 3;
        pointer-events: none;
    }

    .vc-slide.active:hover .vc-play {
        transform: translate(-50%, -50%) scale(1.12);
        background: #ffffff;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }

    .vc-play svg {
        width: 32px;
        height: 32px;
        fill: #7CC242;
        margin-left: 6px;
    }

    /* Arrows - plus grandes */
    .vc-arrow,
    .ic-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: #ffffff;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 20;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }

    .vc-arrow:hover,
    .ic-arrow:hover {
        background: #7CC242;
        transform: translateY(-50%) scale(1.08);
        box-shadow: 0 6px 20px rgba(109, 40, 217, 0.3);
    }

    .vc-arrow:hover svg,
    .ic-arrow:hover svg {
        fill: #ffffff;
    }

    .vc-arrow.prev,
    .ic-arrow.prev {
        left: 15px;
    }

    .vc-arrow.next,
    .ic-arrow.next {
        right: 15px;
    }

    .vc-arrow svg,
    .ic-arrow svg {
        width: 28px;
        height: 28px;
        fill: #7CC242;
        transition: fill 0.3s ease;
    }

    /* Dots - plus grands */
    .vc-dots,
    .ic-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        margin-top: 45px;
    }

    .vc-dot,
    .ic-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #d1d5db;
        border: none;
        cursor: pointer;
        padding: 0;
        transition: all 0.3s ease;
    }

    .vc-dot.active,
    .ic-dot.active {
        background: #7CC242;
        width: 36px;
        border-radius: 12px;
    }

    /* ================================================
   VIDEO LIGHTBOX - plus grand
   ================================================ */
    .vc-lightbox {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.95);
        z-index: 99999;
        align-items: center;
        justify-content: center;
    }

    .vc-lightbox.open {
        display: flex;
    }

    .vc-lightbox-inner {
        position: relative;
        width: 90%;
        max-width: 1200px;
        aspect-ratio: 16/9;
        background: #000;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    }

    .vc-lightbox-inner iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

    .vc-lightbox-close {
        position: absolute;
        top: -55px;
        right: 0;
        background: none;
        border: none;
        color: #fff;
        font-size: 42px;
        cursor: pointer;
        line-height: 1;
        transition: transform 0.2s;
    }

    .vc-lightbox-close:hover {
        transform: scale(1.15);
    }

    /* ================================================
   CAROUSEL IMAGE — style "Découvrez nos villes" - agrandi
   ================================================ */
    .image-carousel-section {
        padding: 60px 0 50px;
        background: #fff;
        text-align: center;
        overflow: hidden;
    }

    .image-carousel-section .section-title {
        font-size: 32px;
        font-weight: 700;
        color: #111;
        margin-bottom: 36px;
        padding: 0 20px;
    }

    .ic-outer {
        position: relative;
        overflow: hidden;
        padding: 0 80px;
    }

    .ic-track {
        display: flex;
        align-items: center;
        gap: 30px;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
        position: relative;
    }

    .ic-slide {
        flex: 0 0 calc(33.333% - 20px);
        /* 3 slides avec gap de 30px - plus larges */
        position: relative;
        border-radius: 24px;
        overflow: hidden;
        aspect-ratio: 3/4;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0.5;
        transform: scale(0.85);
        cursor: pointer;
    }

    .ic-slide.active {
        opacity: 1;
        transform: scale(1.08);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
        z-index: 10;
    }

    .ic-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        filter: brightness(0.85);
        transition: filter 0.3s ease;
    }

    .ic-slide.active img {
        filter: brightness(0.98);
    }

    .ic-slide .ic-label {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #ffffff;
        font-size: 38px;
        font-weight: 800;
        text-align: center;
        width: 90%;
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
        background: transparent;
        line-height: 1.1;
        pointer-events: none;
    }

    /* ================================================
   RESPONSIVE - VERSION FULLSCREEN MOBILE
   ================================================ */
    @media (max-width: 1200px) {
        .vc-slide {
            flex: 0 0 calc(50% - 20px);
        }

        .ic-slide {
            flex: 0 0 calc(50% - 15px);
        }
    }

    @media (max-width: 768px) {

        .vc-outer,
        .ic-outer {
            padding: 0 20px;
        }

        .vc-slide {
            flex: 0 0 calc(100% - 0px);
            border-radius: 0;
            margin-left: 0;
            transform: scale(1);
            opacity: 0.8;
        }

        .vc-slide.active {
            transform: scale(1);
            opacity: 1;
            border-radius: 0;
        }

        /* Version Fullscreen - le slide actif prend tout l'écran */
        .vc-slide.active {
            flex: 0 0 100%;
            border-radius: 0;
            margin-left: 0;
            position: relative;
        }

        /* Ajustement du track pour un défilement fluide */
        .vc-track {
            gap: 0;
        }

        /* Chaque slide occupe toute la largeur */
        .vc-slide {
            flex: 0 0 100%;
            border-radius: 0;
            margin-left: 0;
            transform: scale(1);
            opacity: 0.7;
        }

        .vc-slide.active {
            opacity: 1;
            transform: scale(1);
        }

        .vc-play {
            width: 70px;
            height: 70px;
        }

        .vc-play svg {
            width: 28px;
            height: 28px;
        }

        /* Flèches repositionnées pour l'écran complet */
        .vc-arrow.prev {
            left: 10px;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.9);
        }

        .vc-arrow.next {
            right: 10px;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.9);
        }

        .vc-arrow svg {
            width: 24px;
            height: 24px;
        }

        /* SLIDER IMAGE VERSION FULLSCREEN */
        .ic-outer {
            padding: 0;
        }

        .ic-track {
            gap: 0;
        }

        .ic-slide {
            flex: 0 0 100%;
            border-radius: 0;
            transform: scale(1);
            opacity: 0.8;
            aspect-ratio: 16 / 9;
        }

        .ic-slide.active {
            transform: scale(1);
            opacity: 1;
            border-radius: 0;
        }

        .ic-slide .ic-label {
            font-size: 28px;
            background: rgba(0, 0, 0, 0.4);
            padding: 10px 20px;
            border-radius: 40px;
            width: auto;
            white-space: nowrap;
        }

        .ic-arrow.prev {
            left: 10px;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.9);
        }

        .ic-arrow.next {
            right: 10px;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.9);
        }

        .ic-arrow svg {
            width: 24px;
            height: 24px;
        }

        /* Ajustement des dots pour mobile fullscreen */
        .vc-dots,
        .ic-dots {
            margin-top: 25px;
            gap: 8px;
        }

        .vc-dot,
        .ic-dot {
            width: 8px;
            height: 8px;
        }

        .vc-dot.active,
        .ic-dot.active {
            width: 28px;
        }
    }

    @media (max-width: 480px) {

        .vc-arrow,
        .ic-arrow {
            width: 36px;
            height: 36px;
        }

        .vc-play {
            width: 60px;
            height: 60px;
        }

        .ic-slide .ic-label {
            font-size: 22px;
            white-space: normal;
            width: 80%;
            line-height: 1.3;
        }

        .video-carousel-section .section-title,
        .image-carousel-section .section-title {
            font-size: 26px;
        }
    }

    /* Ajustement supplémentaire pour très petits écrans */
    @media (max-width: 380px) {
        .ic-slide .ic-label {
            font-size: 18px;
            padding: 6px 12px;
        }

        .vc-play {
            width: 50px;
            height: 50px;
        }

        .vc-play svg {
            width: 22px;
            height: 22px;
        }
    }
