/* ============================================
   GO EXPLORIA V2 - Styles principaux
   Palette: Bleu nuit inspirée de y.co
   ============================================ */

:root {
    --navy-dark: #0a1628;
    --navy-primary: #1a2942;
    --navy-medium: #2a3f5f;
    --navy-light: #3d5a80;
    --accent-gold: #d4af37;
    --accent-yellow: #ffd700;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray-medium: #e9ecef;
    --overlay-dark: rgba(10, 22, 40, 0.7);
    --overlay-medium: rgba(10, 22, 40, 0.5);

    /* --- DESIGN SYSTEM BOSSE (Standard) --- */
    --bosse-border: #e0e0e0;
    --bosse-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --bosse-bg: #ffffff;
    --bosse-accent: #d32f2f;
    --bosse-radius: 16px;
}

/* --- UTILITIES DESIGN BOSSE --- */
.design-bosse-section {
    padding: 80px 0;
    width: 100%;
}

.design-bosse-block {
    background: var(--bosse-bg);
    border: 1px solid var(--bosse-border);
    box-shadow: var(--bosse-shadow);
    border-radius: var(--bosse-radius);
    padding: 30px;
    margin-bottom: 40px;
}

.design-bosse-title {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--navy-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    width: 100%;
}

.design-bosse-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

.design-bosse-label {
    font-size: 14px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.design-bosse-more-btn {
    background: var(--bosse-accent);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.design-bosse-more-btn:hover {
    background: var(--navy-dark);
    transform: translateY(-2px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #333333;
    overflow-x: hidden !important;
    /* TOTAL PROTECTION FROM HORIZONTAL SCROLL */
    background-color: #ffffff;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    max-width: 100vw;
}

html {
    overflow-x: hidden !important;
    width: 100%;
}

* {
    max-width: 100vw;
}

.main-content {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
}

/* ============================================
   HEADER STYLES
   ============================================ */

.header-v2 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    /* SUR-ÉLEVÉ : Doit être au dessus du Hero (1000) */
    background-color: var(--navy-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    overflow: visible !important;
}

/* RÉACTIVATION DES DROPDOWNS DU HEADER */
.nav-menu-v2-has-mega:hover .mega-menu-v2,
.nav-menu-v2-has-mega.active .mega-menu-v2 {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

.nav-menu-v2-has-videos:hover .nav-videos-dropdown {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

.header-v2.scrolled {
    background-color: var(--navy-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 40px;
    background-color: var(--navy-primary);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
}

.header-v2.scrolled .header-top {
    background-color: var(--navy-primary);
}

.header-contact a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-contact a:hover {
    color: var(--accent-gold);
}

.header-promo {
    color: var(--accent-yellow);
    font-weight: 600;
}

.header-nav {
    background-color: var(--navy-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
    position: relative;
}

.header-v2.scrolled .header-nav {
    background-color: var(--navy-dark);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    max-width: 1920px;
    margin: 0 auto;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle:hover span {
    background-color: var(--accent-gold);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
}

.logo-map-icon {
    width: 50px !important;
    height: 50px !important;
    object-fit: contain;
}

.logo img:not(.logo-map-icon) {
    width: 200px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-go {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-gold);
}

.logo-exploria {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
}

.logo-location {
    font-size: 10px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 1px;
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a:hover {
    color: var(--accent-gold);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-icon {
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.nav-icon:hover {
    color: var(--accent-gold);
    background-color: rgba(255, 255, 255, 0.05);
}

.mobile-search-trigger {
    display: none;
}

/* ============================================
   MAIN CONTENT
   ============================================ */

.main-content {
    position: relative;
    min-height: 100vh;
}

/* ============================================
   VIDEO CAROUSEL BACKGROUND
   ============================================ */

.video-carousel-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    border-radius: 0;
}

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

.video-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    overflow: hidden;
}

.video-slide.active {
    opacity: 1;
}

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

/* YouTube/Vimeo iframes : object-fit ne fonctionne pas sur iframe,
   on utilise la technique 16:9 de couverture absolue               */
iframe.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    /* Couvre le conteneur quel que soit son ratio */
    width: 100vw;
    height: 56.25vw;     /* 16:9 de la largeur viewport */
    min-height: 100%;    /* jamais plus court que le conteneur */
    min-width: 177.78vh; /* 16:9 de la hauteur viewport */
    transform: translate(-50%, -50%);
    border: none;
    pointer-events: none;
    object-fit: unset;
}

/* Video overlay désactivé pour afficher les vraies vidéos sans transparence
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        var(--overlay-medium) 0%,
        var(--overlay-dark) 100%
    );
}
*/

.carousel-controls {
    position: absolute;
    bottom: 200px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    gap: 12px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
}

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

/* ============================================
   HERO SECTION
   ============================================ */

.hero-v2 {
    position: relative;
    height: calc(100vh - 70px);
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    overflow: visible !important;
    /* Permettre au Mega Menu de sortir du cadre */
    margin-top: 70px;
    margin-bottom: 0 !important;
    background-color: var(--navy-dark);
    z-index: 1000;
    /* Priorité sur le reste de la page */
}

.video-carousel-background,
.video-carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* ============================================
   HERO VIDEO OVERLAY - Titre, description et bouton sur la vidéo
   ============================================ */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}

.hero-video-info {
    text-align: center;
    max-width: 800px;
    padding: 0 40px;
    pointer-events: auto;
}

.hero-video-main-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-video-description {
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-video-main-button {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--navy-dark);
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-video-main-button:hover {
    background: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
}

/* ============================================
   HERO VIDEO CARDS OVERLAY - Cartes miniatures sur la vidéo
   ============================================ */
.hero-video-cards-overlay {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: auto;
    max-width: 95%;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.hero-video-cards {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0;
    position: relative;
    width: auto;
    max-width: 100%;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hero-video-cards::-webkit-scrollbar {
    display: none;
}

.carousel-nav-btn {
    position: relative;
    width: 45px;
    height: 70px;
    background: rgba(10, 22, 40, 0.85);
    border: 2px solid var(--accent-gold);
    border-radius: 8px;
    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.4);
    flex-shrink: 0;
}

.carousel-nav-btn:hover {
    background: rgba(10, 22, 40, 0.95);
    border-color: #ffd700;
    transform: scale(1.05);
}

.carousel-nav-btn.prev {
    order: -1;
}

.carousel-nav-btn.next {
    order: 1;
}

.carousel-nav-btn svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: var(--accent-gold);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-video-card {
    position: relative;
    width: 210px;
    min-width: 210px;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 3px solid transparent;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
    display: block;
}

.hero-video-card:hover {
    transform: scale(1.05);
    border-color: var(--accent-gold);
}

.hero-video-card.active {
    border-color: var(--accent-gold);
    border-width: 4px;
}

.hero-video-card-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.hero-video-card:hover .hero-video-card-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
}

.hero-video-card-play {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hero-video-card:hover .hero-video-card-play {
    background: var(--accent-gold);
    transform: scale(1.1);
}

.hero-video-card-play svg {
    width: 20px;
    height: 20px;
    fill: var(--navy-dark);
    margin-left: 3px;
}

.hero-video-card-title {
    position: absolute;
    bottom: 10px;
    left: 12px;
    right: 12px;
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
    line-height: 1.3;
}

/* Section mobile header dans le Hero (cachée par défaut) */
.hero-mobile-header {
    display: none;
}

.hero-content {
    text-align: center;
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 5;
    padding-top: 50px;
}

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

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-subtitle {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 8px;
    color: var(--white);
    opacity: 0.9;
}

.hero-main {
    font-size: 72px;
    font-weight: 900;
    letter-spacing: 4px;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-search {
    width: 100%;
    max-width: 900px;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.search-container {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--accent-gold);
}

.search-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 16px;
}

.search-icon {
    color: var(--navy-primary);
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--navy-dark);
    background: transparent;
    padding: 16px 0;
}

.search-input::placeholder {
    color: var(--navy-light);
}

.search-brand {
    padding: 8px 24px;
    border-left: 2px solid var(--gray-medium);
}

.plan-n-go-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.hero-scroll-btn {
    background: none;
    border: 2px solid var(--white);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.hero-scroll-btn:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(4px);
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

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

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* ============================================
   RESPONSIVE DESIGN - Optimisé pour tous les écrans
   ============================================ */

/* Large Desktop (1920px+) */
@media (min-width: 1920px) {
    .nav-container {
        padding: 20px 80px;
    }

    .hero-main {
        font-size: 84px;
    }
}

/* Desktop (1200px - 1919px) */
@media (max-width: 1440px) {
    .nav-container {
        padding: 16px 30px;
    }

    .header-top {
        padding: 8px 30px;
    }
}

/* Laptop (992px - 1199px) */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 20px;
    }

    .nav-menu li a {
        font-size: 12px;
    }

    .hero-main {
        font-size: 64px;
    }
}

/* Tablet Landscape & Small Laptop (768px - 991px) */
@media (max-width: 992px) {
    .header-top {
        padding: 8px 20px;
        font-size: 11px;
    }

    .nav-container {
        padding: 12px 20px;
    }

    .nav-center {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--navy-dark);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease;
        z-index: 999;
    }

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

    .nav-menu {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .nav-menu li a {
        font-size: 20px;
    }

    .menu-toggle {
        display: flex;
    }

    .logo img {
        width: 60px;
        height: 60px;
    }

    .hero-main {
        font-size: 56px;
        letter-spacing: 3px;
    }

    .search-container {
        max-width: 700px;
    }

    .main-content {
        margin-top: 0;
    }
}

@media (max-width: 1024px) {
    .design-bosse-section {
        padding: 40px 0;
    }

    .hero-v2 {
        margin-top: 0;
        height: 100vh;
    }

    .main-content {
        margin-top: 70px;
    }
}

/* Tablet Portrait (600px - 767px) */
@media (max-width: 768px) {

    /* Forcer un fond sombre au header sur mobile pour visibilité */
    .header-v2 {
        background-color: rgba(26, 41, 66, 0.95);
        backdrop-filter: blur(10px);
    }

    .header-v2.scrolled {
        background-color: var(--navy-dark);
    }

    .header-top {
        padding: 6px 15px;
        font-size: 10px;
        background-color: rgba(26, 41, 66, 0.8);
    }

    .header-nav {
        background-color: rgba(26, 41, 66, 0.6);
    }

    .header-contact a {
        font-size: 10px;
    }

    .header-promo {
        font-size: 10px;
    }

    .nav-container {
        padding: 10px 15px;
    }

    .nav-left {
        gap: 12px;
    }

    /* Masquer le logo et map2 sur mobile */
    .logo {
        display: none;
    }

    .nav-right {
        gap: 10px;
    }

    .nav-icon {
        width: 38px;
        height: 38px;
    }

    /* Afficher la section mobile dans le Hero */
    .hero-mobile-header {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 20;
        padding: 15px 20px;
    }

    .hero-mobile-email {
        text-align: center;
        margin-bottom: 10px;
    }

    .hero-mobile-email a {
        color: #d4af37;
        font-size: 11px;
        font-weight: 600;
        text-decoration: none;
        letter-spacing: 0.5px;
    }

    .hero-mobile-logo-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }

    .hero-mobile-map {
        width: 35px;
        height: 35px;
        object-fit: contain;
    }

    .hero-mobile-logo {
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .hero-mobile-logo-img {
        width: 120px;
        height: 80;
        object-fit: contain;
    }

    .hero-mobile-logo .logo-text {
        text-align: left;
    }

    .hero-mobile-logo .logo-exploria {
        font-size: 18px;
        font-weight: 800;
        color: var(--white);
    }

    .hero-mobile-logo .logo-location {
        font-size: 8px;
        font-weight: 500;
        color: var(--white);
        letter-spacing: 1px;
    }

    .hero-v2 {
        padding: 0 !important;
        height: 100vh;
        min-height: 500px;
        margin-top: 70px;
        justify-content: flex-start;
    }

    .hero-video-cards-overlay {
        bottom: 40px;
        width: auto;
        max-width: 95%;
        padding: 0;
        gap: 10px;
    }

    .hero-video-card {
        width: 180px;
        min-width: 180px;
        height: 140px;
    }

    .hero-video-card-title {
        font-size: 11px;
    }

    .hero-video-main-title {
        font-size: 36px;
    }

    .hero-video-description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .hero-video-main-button {
        font-size: 14px;
        padding: 12px 30px;
    }

    .carousel-nav-btn {
        width: 35px;
        height: 60px;
    }

    .carousel-nav-btn svg {
        width: 22px;
        height: 22px;
    }

    .video-carousel-background {
        top: 15px;
        left: 0;
        right: 0;
        width: 100%;
        height: calc(100% - 195px);
        border-radius: 0;
    }

    .hero-content {
        margin-top: 40px;
        padding-top: 40px;
        padding-left: 0;
        padding-right: 0;
        gap: 35px;
        max-width: 100%;
    }

    .hero-main {
        font-size: 48px;
        letter-spacing: 2px;
    }

    .search-container {
        flex-direction: column;
        gap: 0;
        padding: 6px;
        max-width: 100%;
        width: 100%;
        margin: 0;
    }

    .search-wrapper {
        padding: 14px 18px;
        width: 100%;
    }

    .search-input {
        font-size: 15px;
        padding: 12px 0;
    }

    .search-brand {
        border-left: none;
        border-top: 2px solid var(--gray-medium);
        padding: 14px 18px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .plan-n-go-logo {
        height: 38px;
    }

    .carousel-controls {
        bottom: 25px;
    }

    .carousel-dot {
        width: 11px;
        height: 11px;
    }

    .hero-video-footer {
        padding: 20px 15px;
        background: #ffffff;
    }

    .hero-video-cards {
        flex-direction: row;
        gap: 10px;
        overflow-x: auto;
        justify-content: flex-start;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }

    .hero-video-card {
        width: 180px;
        min-width: 180px;
        height: 110px;
        flex-shrink: 0;
    }

    .hero-video-card-title {
        font-size: 11px;
        bottom: 8px;
        left: 8px;
        right: 8px;
    }

    .main-content {
        margin-top: 75px;
    }
}

/* Mobile Large (480px - 599px) */
@media (max-width: 600px) {
    .hero-main {
        font-size: 42px;
        letter-spacing: 1px;
    }

    .search-input {
        font-size: 14px;
    }

    .search-input::placeholder {
        font-size: 13px;
    }
}

/* Mobile Medium (375px - 479px) */
@media (max-width: 480px) {
    .header-top {
        padding: 5px 12px;
        font-size: 9px;
    }

    .header-contact a {
        font-size: 9px;
        letter-spacing: 0;
    }

    .header-promo {
        font-size: 9px;
    }

    .nav-container {
        padding: 8px 12px;
    }

    .nav-left {
        gap: 10px;
    }

    .logo img {
        width: 50px;
        height: 50px;
    }

    .nav-right {
        gap: 6px;
    }

    .nav-icon {
        width: 34px;
        height: 34px;
    }

    .nav-icon svg {
        width: 20px;
        height: 20px;
    }

    .design-bosse-section {
        padding: 10px 0;
    }

    .design-bosse-block {
        margin-bottom: 10px;
    }

    .hero-v2 {
        padding: 0;
        height: 90vh;
        min-height: 450px;
        margin-top: 0;
        margin-bottom: 0 !important;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        background-color: var(--navy-dark);
    }

    .video-carousel-background,
    .video-carousel-container {
        height: 100% !important;
        min-height: 100% !important;
    }

    .slideshows-v2-section {
        margin-top: 40px !important;
        padding-top: 0 !important;
        background-color: transparent !important;
    }

    .hero-content {
        padding-top: 15px;
        gap: 12px;
        flex-grow: 0;
        justify-content: flex-start;
    }

    .hero-video-cards-overlay {
        position: relative;
        bottom: 40px;
        transform: none;
        left: 0;
        width: 100%;
        margin-top: 40px;
    }

    .hero-main {
        font-size: 38px;
        letter-spacing: 0;
    }

    .search-container {
        padding: 5px;
        border-width: 2px;
        width: 100%;
        margin: 0;
    }

    .search-wrapper {
        padding: 12px 14px;
    }

    .search-icon {
        width: 20px;
        height: 20px;
    }

    .search-input {
        font-size: 13px;
        padding: 10px 0;
    }

    .search-brand {
        padding: 10px 12px;
    }

    .plan-n-go-logo {
        height: 30px;
    }

    /* Mobile Brand Assets */
    .hero-mobile-logo-img {
        width: 180px !important;
        max-height: 80px !important;
        object-fit: contain;
    }

    .hero-mobile-map {
        width: 75px !important;
        height: 75px !important;
        object-fit: contain;
    }

    .hero-mobile-logo-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-bottom: 20px;
    }

    .carousel-controls {
        bottom: 20px;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
        border-width: 1.5px;
    }

    /* Supprimer TOUT espace entre Hero et le bloc suivant (Carte Interactive) */
    .hero-v2+.design-bosse-section,
    .hero-v2+section,
    .hero-v2+div {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .main-content>*:first-child+* {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .hero-mobile-header {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        background-color: transparent !important;
        width: 100%;
        padding: 5px 0;
        margin-top: 15px !important;
        z-index: 1 !important;
        gap: 5px;
    }

    .main-content {
        margin-top: 58px;
        background-color: #0a1628 !important;
    }

    /* Mobile Email Info */
    .hero-mobile-email {
        text-align: center;
        width: 100%;
        margin-bottom: 5px;
    }

    .hero-mobile-email a {
        color: #ffffff !important;
        text-decoration: none;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1px;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    }

    /* Mobile Search Toggle Logic */
    .mobile-search-trigger {
        display: flex;
    }

    .hero-v2 .search-bar-v2 {
        display: none !important;
        opacity: 0;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: auto;
        background-color: var(--navy-dark) !important;
        background: var(--navy-dark) !important;
        z-index: 100 !important;
        padding: 20px 0 !important;
        transform: translateY(-20px);
        transition: all 0.3s ease;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
    }

    .hero-v2 .search-bar-v2.active {
        display: block !important;
        opacity: 1;
        transform: translateY(0);
    }

    .search-bar-v2-container {
        padding: 0 15px !important;
        gap: 15px !important;
    }

    /* Masquer le branding dans la barre quand elle est ouverte sur mobile */
    .search-bar-v2 .search-bar-v2-brand,
    .search-bar-v2 .search-bar-v2-globe-icon {
        display: none !important;
    }

    .hero-video-cards-overlay {
        display: flex !important;
        position: absolute !important;
        bottom: 20px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 100% !important;
        z-index: 100 !important;
        margin-top: 0 !important;
    }
}

/* Mobile Small (320px - 374px) */
@media (max-width: 375px) {
    .header-top {
        padding: 4px 10px;
        font-size: 8px;
    }

    .header-contact a {
        display: none;
    }

    .header-promo {
        font-size: 8px;
        margin: 0 auto;
    }

    .nav-container {
        padding: 8px 10px;
    }

    .logo img {
        width: 45px;
        height: 45px;
    }

    .nav-right {
        gap: 4px;
    }

    .nav-icon {
        width: 32px;
        height: 32px;
    }

    .hero-main {
        font-size: 32px;
    }

    .search-input {
        font-size: 12px;
    }

    .search-input::placeholder {
        font-size: 11px;
    }

    .plan-n-go-logo {
        height: 25px;
    }
}

/* Landscape Mode for Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .header-top {
        display: none;
    }

    .nav-container {
        padding: 8px 20px;
    }

    .hero-v2 {
        padding: 0;
        height: 120vh;
        min-height: 120vh;
    }

    .hero-content {
        gap: 20px;
    }

    .hero-main {
        font-size: 32px;
    }

    .search-container {
        max-width: 600px;
    }

    .hero-scroll-btn {
        display: none;
    }

    .carousel-controls {
        bottom: 15px;
    }

    .main-content {
        margin-top: 60px;
    }
}

/* Fix pour les très petits écrans */
@media (max-width: 320px) {
    .hero-main {
        font-size: 28px;
    }

    .search-wrapper {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .search-icon {
        width: 18px;
        height: 18px;
    }
}

/* ============================================
   HERO QUICK LINKS & MEGA MENU INFO (ORIGINAL BOSSE STYLE)
   ============================================ */

.search-bar-v2-quick-links {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.quick-link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    /* Taille Bosse */
    width: auto;
    transition: transform 0.3s ease;
    cursor: pointer;
    position: relative;
    padding: 0 10px;
}

.quick-link-item img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* Animation Flash Spécifique Bosse sur l'icône Info */
.quick-link-item.info-trigger img {
    height: 65px;
    /* Plus grand comme demandé */
    animation: flash-info-bosse 2s infinite;
}

@keyframes flash-info-bosse {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0.6;
    }
}

.quick-link-item:hover {
    transform: translateY(-3px);
}

/* MEGA MENU INFO - Positionné FIXE pour éviter les débordements */
.info-mega-menu-v2 {
    display: none !important;
    position: fixed !important;
    /* FIXED : ignore tous les parents overflow */
    top: auto;
    /* JS va le définir dynamiquement */
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: min(980px, calc(100vw - 40px)) !important;
    /* jamais toucher les bords */
    max-width: calc(100vw - 40px) !important;
    background: white;
    border-radius: 16px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    z-index: 99999 !important;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid #e0e0e0;
    margin-top: 0;
}

/* Visible quand .active (JS l'ajoute au clic/hover) */
.info-mega-menu-v2.active {
    display: flex !important;
}

/* HÉRITAGE : anciens sélecteurs hover desktop (fallback) */
.quick-link-item.info-trigger:hover .info-mega-menu-v2 {
    display: flex !important;
}

/* Ticker Style - Bleu Marine Uniforme */
.info-mega-menu-v2 .mega-menu-ticker {
    background: #1a3a5f;
    padding: 10px 40px;
    display: flex;
    justify-content: flex-start;
    gap: 50px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.info-mega-menu-v2 .ticker-item {
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

/* Contenu Central avec Barre de Défilement Interne */
.info-mega-menu-v2 .mega-menu-main-content {
    display: flex;
    padding: 20px;
    background: #f8fafc;
    max-height: 70vh;
    /* Barre de défilement si trop long */
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #3498db #f1f5f9;
}

.info-mega-menu-v2 .mega-menu-main-content::-webkit-scrollbar {
    width: 6px;
}

.info-mega-menu-v2 .mega-menu-main-content::-webkit-scrollbar-thumb {
    background: #3498db;
    border-radius: 10px;
}

/* --- DESIGN SYSTÈME : ICÔNES MINIMALISTES --- */
.search-bar-v2-quick-links {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.search-bar-v2-quick-links .icon-circle {
    width: 35px;
    /* RÉDUIT : Ultra compact */
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* .search-bar-v2-quick-links .info-bg {
    background: #e67e22;
    color: white;
} */

.search-bar-v2-quick-links .icon-standard {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.info-mega-menu-v2 {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 950px;
    background: white;
    border-radius: 12px;
    z-index: 999999;
    padding: 0;
    overflow: hidden;
    margin-top: 12px;
}

.info-mega-menu-v2 .mega-menu-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-mega-menu-v2 .mega-menu-columns-container {
    flex: 1;
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 12px;
}

.info-mega-menu-v2 .mega-menu-item {
    background: #fff;
    padding: 10px 5px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* Aligner en haut pour cohérence icônes */
    text-decoration: none;
    border: 1px solid #f1f5f9;
    min-height: 75px;
    /* FORCE LA MÊME HAUTEUR POUR TOUS */
    width: 100%;
}

.info-mega-menu-v2 .mega-menu-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: #334155;
    text-align: center;
    line-height: 1.1;
    min-height: 2.2em;
    /* Réserve l'espace pour 2 lignes */
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-mega-menu-v2 .mega-menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: #3498db;
}

.info-mega-menu-v2 .mega-menu-icon-wrapper {
    width: 30px;
    height: 30px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #475569;
    margin-bottom: 4px;
}

.info-mega-menu-v2 .mega-menu-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #334155;
    text-align: center;
}

.info-mega-menu-v2 .mega-menu-carousel-clean {
    width: 300px;
    height: 320px !important;
    /* RÉDUIT DRASTIQUEMENT */
    background: #000;
    margin-left: 15px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.info-mega-menu-v2 .carousel-media-viewport {
    width: 100%;
    height: 100%;
    position: relative;
}

.info-mega-menu-v2 .carousel-item-simple {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.info-mega-menu-v2 .carousel-item-simple.active {
    display: block;
}

.info-mega-menu-v2 .media-container-v2 {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: #000;
}

.info-mega-menu-v2 .slide-media-direct {
    width: 100% !important;
    height: 100% !important;
    border: none;
    display: block;
    object-fit: cover;
}

.info-mega-menu-v2 .expand-media-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    color: white;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transition: all 0.3s ease;
}

.info-mega-menu-v2 .media-container-v2:hover .expand-media-btn {
    opacity: 1;
    background: rgba(255, 255, 255, 0.4);
}

.info-mega-menu-v2 .expand-media-btn:hover {
    background: white;
    color: #e60000;
    transform: scale(1.1);
}

/* Forçage spécifique pour les Iframes YouTube */
.info-mega-menu-v2 iframe.slide-media {
    aspect-ratio: auto;
}

.info-mega-menu-v2 .mega-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    z-index: 100;
}

.info-mega-menu-v2 .mega-nav-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.info-mega-menu-v2 .mega-nav-btn.prev {
    left: 10px;
}

.info-mega-menu-v2 .mega-nav-btn.next {
    right: 10px;
}

.info-mega-menu-v2 .mega-menu-footer-btns {
    display: flex;
    background: #f8fafc;
    padding: 10px 15px;
    /* RÉDUIT */
    gap: 15px;
    border-top: 1px solid #e2e8f0;
}

.info-mega-menu-v2 .footer-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    /* RÉDUIT */
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    /* RÉDUIT */
    transition: all 0.3s ease;
}

.info-mega-menu-v2 .btn-quebec {
    background: #3498db;
    color: white;
}

.info-mega-menu-v2 .btn-canada {
    background: #2980b9;
    color: white;
}

.info-mega-menu-v2 .btn-monde {
    background: #2c3e50;
    color: white;
}

.info-mega-menu-v2 .footer-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(52, 152, 219, 0.4);
    filter: brightness(1.1);
}

/* RÉVISION RESPONSIVE : MEGA MENU INFO MINIMALISTE */
@media (max-width: 1200px) {
    .info-mega-menu-v2 {
        width: 95vw !important;
        max-width: 1000px;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
}

/* TABLETTE : LA BANDE DE RECHERCHE NE TIENT PAS SUR UNE SEULE LIGNE */
@media (max-width: 1100px) {
    .search-bar-v2-container {
        flex-wrap: wrap !important;
        justify-content: center !important;
        row-gap: 15px !important;
        padding: 10px 15px !important;
    }

    .search-bar-v2-quick-links {
        order: 4 !important;
        /* Force les boutons infos à passer à la ligne */
        width: 100% !important;
        justify-content: center !important;
        margin-left: 0 !important;
        margin-top: 5px !important;
    }

    .search-bar-v2-search {
        min-width: 300px;
        flex: 1;
    }
}

@media (max-width: 768px) {

    /* BOUTONS HERO (6 ICONES) - GRILLE 3x2 FIXE */
    .search-bar-v2-quick-links {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px !important;
        width: auto !important;
        margin: 15px auto 0 !important;
    }

    .search-bar-v2-quick-links .icon-circle {
        width: 35px !important;
        height: 35px !important;
        font-size: 0.85rem !important;
    }

    /* MEGA MENU INFO - MOBILE & TABLETTE : 100% largeur, bords respectés */
    .info-mega-menu-v2 {
        position: fixed !important;
        top: 12vh !important;
        /* Marge en haut pour cliquer et fermer */
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        max-height: 88vh !important;
        transform: none !important;
        margin: 0 !important;
        padding: 0 !important;
        border-radius: 24px 24px 0 0 !important;
        /* Style panneau tiroir */
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4) !important;
        box-sizing: border-box !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        background: #fff !important;
        display: none !important;
        /* CACHÉ PAR DÉFAUT ! */
        flex-direction: column !important;
        /* Conteneur flex global */
        z-index: 9999999 !important;
    }

    .info-mega-menu-v2.active {
        display: flex !important;
        /* Affiché uniquement au clic */
    }

    /* ============================================
       MEGA MENU INFO - MOBILE PROPRE (3 colonnes)
       ============================================ */

    /* 1. TICKER - défilement horizontal */
    .info-mega-menu-v2 .mega-menu-ticker {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        padding: 10px 15px !important;
        gap: 25px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        -webkit-overflow-scrolling: touch;
        flex-shrink: 0 !important;
        order: 1 !important;
        /* Première position en haut */
    }

    .info-mega-menu-v2 .mega-menu-ticker::-webkit-scrollbar {
        display: none;
    }

    .info-mega-menu-v2 .mega-menu-ticker .ticker-item {
        flex: 0 0 auto !important;
        display: inline-flex !important;
        align-items: center;
        gap: 8px;
    }

    /* 2. CONTENU - colonne verticale */
    .info-mega-menu-v2 .mega-menu-main-content {
        display: contents !important;
        /* Permet aux enfants direct de rejoindre la grille parente pour flex order */
    }

    /* GRILLE 3 COLONNES - défilement vertical naturel */
    .info-mega-menu-v2 .mega-menu-columns-container {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
        padding: 12px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: visible !important;
        /* défilement vertical via le menu parent */
        order: 2 !important;
        /* 2ème position (après le ticker) */
    }

    /* Aplatir les colonnes dans la grille */
    .info-mega-menu-v2 .mega-menu-column {
        display: contents !important;
        /* les items remontent directement dans la grille */
    }

    /* Chaque bouton icône */
    .info-mega-menu-v2 .mega-menu-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 10px 5px !important;
        min-height: 72px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        text-decoration: none !important;
        border-radius: 8px !important;
        background: #fff !important;
        border: 1px solid #f1f5f9 !important;
    }

    .info-mega-menu-v2 .mega-menu-icon-wrapper {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.85rem !important;
        flex-shrink: 0 !important;
        margin-bottom: 5px !important;
    }

    .info-mega-menu-v2 .mega-menu-label {
        font-size: 0.62rem !important;
        white-space: normal !important;
        word-break: break-word !important;
        text-align: center !important;
        line-height: 1.2 !important;
    }

    /* 3. SLIDER - plein largeur sous la grille et bouton footer */
    .info-mega-menu-v2 .mega-menu-carousel-clean {
        width: 100% !important;
        height: 220px !important;
        margin: 0 !important;
        border-radius: 0 !important;
        box-sizing: border-box !important;
        flex-shrink: 0 !important;
        order: 4 !important;
        /* Dernière position (sous les boutons) */
        margin-bottom: 25px !important;
        /* Espace en bas */
    }

    /* 4. FOOTER - boutons glissants horizontaux */
    .info-mega-menu-v2 .mega-menu-footer-btns {
        display: flex !important;
        flex-direction: row !important;
        order: 3 !important;
        /* 3ème position (entre grille et slider) */
        overflow-x: auto !important;
        white-space: nowrap !important;
        padding: 12px !important;
        gap: 10px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        -webkit-overflow-scrolling: touch;
        flex-shrink: 0 !important;
    }

    .info-mega-menu-v2 .mega-menu-footer-btns::-webkit-scrollbar {
        display: none;
    }

    .info-mega-menu-v2 .footer-btn {
        flex: 0 0 auto !important;
        white-space: nowrap !important;
        padding: 10px 20px !important;
        font-size: 0.75rem !important;
        border-radius: 6px !important;
    }
}