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

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* ===========================
   HEADER
   =========================== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 30, 50, 0.95);
    padding: 15px 50px;
    z-index: 1000;
    /*display: flex;*/
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
    letter-spacing: 2px;
}

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

nav, .desktop-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a, .desktop-nav > a, .desktop-nav .nav-item > a {
    color: white;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

nav a:hover, .desktop-nav > a:hover, .desktop-nav .nav-item > a:hover {
    color: #0066cc;
}

/* ===========================
   HERO GALLERY
   =========================== */
.hero-gallery {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.gallery-slides {
    height: 100%;
    position: relative;
}

.gallery-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

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

.gallery-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.7) 0%, rgba(42, 82, 152, 0.7) 100%);
}

/* Slide backgrounds */
.slide-1 {
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.8) 0%, rgba(42, 82, 152, 0.8) 100%),
                url('data:image/svg+xml,...');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.slide-2 {
    background: linear-gradient(135deg, rgba(42, 82, 152, 0.8) 0%, rgba(30, 60, 114, 0.8) 100%),
                url('data:image/svg+xml,...');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.slide-3 {
    background: linear-gradient(135deg, rgba(0, 68, 153, 0.8) 0%, rgba(0, 102, 204, 0.8) 100%),
                url('data:image/svg+xml,...');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.slide-4 {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.8) 0%, rgba(30, 60, 114, 0.8) 100%),
                url('data:image/svg+xml,...');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.slide-5 {
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.8) 0%, rgba(0, 68, 153, 0.8) 100%),
                url('data:image/svg+xml,...');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    text-align: left;
    color: white;
    z-index: 2;
    padding: 40px;
    max-width: 900px;
}

.hero-subtitle {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out;
    font-weight: 300;
}

.hero-content h1 {
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 40px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
    line-height: 1.1;
}

.hero-content p {
    font-size: 20px;
    margin: 0 0 40px 0;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.4s both;
    max-width: 700px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: #1e3c72;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    border-radius: 3px;
    transition: all 0.3s;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn:hover {
    background: #0066cc;
    color: white;
    transform: translateY(-2px);
}

/* Gallery Navigation */
.gallery-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-dot.active {
    background: white;
    width: 40px;
    border-radius: 6px;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.gallery-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.gallery-arrow.prev {
    left: 30px;
}

.gallery-arrow.next {
    right: 30px;
}

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

/* ===========================
   GROUPE UNIQUE SECTION
   =========================== */
.groupe-unique {
    background: #f5f5f5;
    padding: 1px 50px;
}

.groupe-container {
    max-width: 1400px;
    margin: 0 auto;
}

.groupe-title {
    font-size: 42px;
    font-weight: bold;
    color: #2a5298;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 3px;
    padding-top: 50px;
}

.groupe-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.groupe-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.groupe-image {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.groupe-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.image-label {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left center;
    background: #2a5298;
    color: white;
    padding: 10px 30px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 3px;
    z-index: 10;
}

.groupe-text h3 {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 30px;
    color: #333;
}

.groupe-text .highlight {
    color: #00bcd4;
}

.groupe-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.btn-savoir-plus {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #2a5298;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    border-radius: 3px;
    transition: all 0.3s;
}

.btn-savoir-plus:hover {
    background: #0066cc;
    transform: translateX(5px);
}

/* Responsive pour Groupe Unique */
@media (max-width: 968px) {
    .groupe-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .groupe-image img {
        height: 400px;
    }
    
    .groupe-title {
        font-size: 32px;
    }
    
    .groupe-text h3 {
        font-size: 24px;
    }
}

/* ===========================
   PRODUCTS GRID
   =========================== */
.products {
    padding: 80px 50px;
    background: #f5f5f5;
}

.products-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.products-title {
    font-size: 42px;
    font-weight: bold;
    color: #2a5298;
    margin-bottom: 25px;
    letter-spacing: 3px;
}

.products-intro {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    height: 250px;
    background: #003366;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

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

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 30px;
    color: white;
}

.product-info h3 {
    font-size: 24px;
}

.product-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.product-btn {
    padding: 8px 20px;
    background: white;
    color: #0066cc;
    text-decoration: none;
    font-size: 12px;
    border-radius: 3px;
    transition: all 0.3s;
}

.product-btn:hover {
    background: #ffa500;
    color: white;
}
/* Bouton Voir tous les produits */
.products-cta {
    text-align: center;
    margin-top: 60px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-view-all:hover {
    background: linear-gradient(135deg, #004499 0%, #0066cc 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.5);
}

.btn-view-all .arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.btn-view-all:hover .arrow {
    transform: translateX(5px);
}
/* ===========================
   SERVICES SECTION
   =========================== */
.services {
    padding: 80px 50px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    text-align: center;
}

.services-subtitle {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #0066cc;
    margin-bottom: 20px;
}

.services h2 {
    font-size: 48px;
    color: white;
    margin-bottom: 30px;
}

.services-intro {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;             /* AJOUTE */
}

.service-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    display: flex;                    /* AJOUTE */
    flex-direction: column;           /* AJOUTE */
    height: 100%;                     /* AJOUTE */
}

.service-card p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;                     /* AJOUTE - pousse le bouton en bas */
}

.service-icon {
    width: 80px;              /* Au lieu de 60px */
    height: 80px;             /* Au lieu de 60px */
    margin: 0 auto 20px;
    background: #0066cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;          /* Au lieu de 24px */
    color: white;
}

/* Nouveau : Support des images dans les icônes */
.service-icon img {
    width: 50px;              /* Taille de l'image à l'intérieur */
    height: 50px;
    object-fit: contain;
}
.service-card h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.service-card p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ===========================
   SERVICE LOCATOR
   =========================== */
.service-locator {
    padding: 80px 50px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%231e3c72" width="1200" height="800"/></svg>');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
}

.service-locator-subtitle {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #0066cc;
}

.service-locator h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-locator p {
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
    .hero-content {
        left: 5%;
        right: 5%;
        padding: 20px;
        max-width: 90%;
    }
    
    .hero-content h1 {
        font-size: 64px; /* Au lieu de 42px - plus gros ! */
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-content p {
        font-size: 16px;
    }

    .services h2, .service-locator h2 {
        font-size: 32px;
    }

    header {
        padding: 15px 20px;
    }

    nav, .desktop-nav {
        display: none;
    }

    .gallery-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .gallery-arrow.prev {
        left: 10px;
    }

    .gallery-arrow.next {
        right: 10px;
    }
}

/* Tablette - taille intermédiaire */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content h1 {
        font-size: 90px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
}

.product-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin: 10px 0 20px 0;
    line-height: 1.4;
    font-weight: 300;
    margin-top: 8px;

}

/* ===========================
   POURQUOI NOUS CHOISIR
   =========================== */
/* ===========================
   POURQUOI NOUS CHOISIR
   =========================== */
.why-choose-us {
    padding: 100px 50px;
    background: #0a1428;
    color: white;
}

.why-container {
    max-width: 1400px;
    margin: 0 auto;
}

.why-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.why-text-section h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    line-height: 1.2;
}

.why-text-section p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.why-video-section {
    position: relative;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

/* Cards modernes - Version intuitive */
.why-tabs-section {
    background: transparent;
    border-radius: 0;
    padding: 0;
}

.why-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.why-tab {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    padding: 30px 25px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Effet brillant subtil */
.why-tab::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.6s;
}

.why-tab:hover::before {
    left: 100%;
}

.why-tab:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.why-tab.active {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    border-color: #0066cc;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.4);
}

.why-tab.active::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 18px;
    opacity: 0.8;
}

/* Contenu plus intégré */
.why-tab-content-wrapper {
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    min-height: 250px;
}

.why-tab-content {
    display: none;
    animation: fadeInScale 0.4s ease;
}

.why-tab-content.active {
    display: block;
}

.why-tab-content h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: white;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.why-tab-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0066cc, transparent);
}

.why-tab-content p {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
}

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

/* Responsive */
@media (max-width: 968px) {
    .why-tabs {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-tab-content-wrapper {
        padding: 30px;
    }
    
    .why-tab-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 600px) {
    .why-tabs {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   FIX RESPONSIVE MOBILE
   Section "Pourquoi nous choisir"
   =========================== */

/* MOBILE : Vidéo en dessous du texte */
@media (max-width: 968px) {
    
    /* Container principal */
    .why-choose-us {
        padding: 60px 20px;
    }
    
    /* Passer la grille en une seule colonne */
    .why-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    /* Ordre d'affichage : texte d'abord */
    .why-text-section {
        order: 1;
    }
    
    /* Vidéo ensuite */
    .why-video-section {
        order: 2;
    }
    
    /* Ajustement du titre */
    .why-text-section h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    /* Ajustement du texte */
    .why-text-section p {
        font-size: 16px;
        line-height: 1.7;
    }
    
    /* Vidéo responsive */
    .video-wrapper {
        padding-bottom: 56.25%; /* Ratio 16:9 */
        margin: 0 auto;
        max-width: 100%;
    }
}

/* TRÈS PETIT MOBILE */
@media (max-width: 600px) {
    
    .why-choose-us {
        padding: 40px 40px;
        background: linear-gradient(180deg, #17203b 100%, #0a1327 0%) !important;
    }
    
    .why-content-wrapper {
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .why-text-section h2 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .why-text-section p {
        font-size: 15px;
    }
    
    /* Tabs responsive */
    .why-tab {
        padding: 20px 15px;
        font-size: 14px;
        min-height: 70px;
    }
    
    .why-tab-content-wrapper {
        padding: 25px 20px;
        min-height: 200px;
    }
    
    .why-tab-content h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .why-tab-content p {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* TABLETTE */
@media (min-width: 969px) and (max-width: 1200px) {
    
    .why-choose-us {
        padding: 80px 30px;
    }
    
    .why-content-wrapper {
        gap: 50px;
    }
    
    .why-text-section h2 {
        font-size: 40px;
    }
    
    .why-text-section p {
        font-size: 17px;
    }
}

/* ===========================
   FIX H1 RESPONSIVE
   Hero Section / Banner
   =========================== */

/* MOBILE : Réduction du H1 */
@media (max-width: 768px) {
    
    /* H1 principal du hero */
    .hero h1,
    .banner h1,
    .hero-section h1,
    h1 {
        font-size: 36px !important;
        line-height: 1.2 !important;
        margin-bottom: 15px;
        hyphens: none;
        word-break: normal;
    }
    
    /* Texte sous le H1 */
    .hero p,
    .banner p,
    .hero-section p {
        font-size: 15px !important;
        line-height: 1.6 !important;
        margin-top: 15px;
    }
    
    /* Ajustement du container hero */
    .hero,
    .banner,
    .hero-section {
        padding: 40px 20px !important;
    }
}

/* TRÈS PETIT MOBILE */
@media (max-width: 480px) {
    
    .hero h1,
    .banner h1,
    .hero-section h1,
    h1 {
        font-size: 28px !important;
        line-height: 1.3 !important;
        word-break: normal;
        overflow-wrap: break-word;
        hyphens: none;
    }
    
    .hero p,
    .banner p,
    .hero-section p {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
    
    .hero,
    .banner,
    .hero-section {
        padding: 30px 15px !important;
    }
}

/* TABLETTE */
@media (min-width: 769px) and (max-width: 1024px) {
    
    .hero h1,
    .banner h1,
    .hero-section h1 {
        font-size: 48px !important;
        line-height: 1.2 !important;
    }
    
    .hero p,
    .banner p,
    .hero-section p {
        font-size: 16px !important;
    }
}

/* Si le H1 a des classes spécifiques */
.hero-title,
.main-title,
.page-title {
    font-size: inherit;
}

@media (max-width: 768px) {
    .hero-title,
    .main-title,
    .page-title {
        font-size: 36px !important;
        line-height: 1.2 !important;
        hyphens: none;
        word-break: normal;
    }
}

@media (max-width: 480px) {
    .hero-title,
    .main-title,
    .page-title {
        font-size: 28px !important;
        line-height: 1.3 !important;
        hyphens: none;
        word-break: normal;
    }
}

@media (max-width: 1199px) {
    /* Position du conteneur menu */
    header#masthead #menu_libner {
        position: absolute !important;
        right: 17px !important;
        top: 20px !important;
        z-index: 100 !important;
    }
    
    /* Le bouton burger lui-même */
    #menu_libner .vlt-menu-burger {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        padding: 0 !important;
        margin: 0 !important;
        position: relative !important;
    }
    
    /* Le texte MENU */
    #menu_libner .vlt-menu-burger .vlt-menu-burger__title {
        font-size: 14px !important;
        line-height: 1 !important;
        margin: 0 !important;
        padding: 0 !important;
        vertical-align: middle !important;
    }
    
    /* L'icône burger (les 3 barres) */
    #menu_libner .vlt-menu-burger .vlt-menu-burger__toggle {
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}