/**
 * ============================================ =========
 * FNPSL - Header & Navigation (Compatible Cleenhearts)
 * ===================================================
 */


/* ============================================
   VARIABLES FNPSL (Extensions des variables Cleenhearts)
   ============================================ */
:root {
    /* Couleurs FNPSL basées sur le thème Cleenhearts */
    --fnpsl-green: var(--cleenhearts-base, #006837);
    --fnpsl-green-hover: #004d28;
    --fnpsl-red: var(--cleenhearts-primary, #EF2B2D);
    --fnpsl-yellow: #FCD116;
    --fnpsl-gold: #FFD700;
    --fnpsl-gold-dark: #E6C200;
    --fnpsl-blue: #2c5aa0;
    --fnpsl-blue-dark: #1e3a6f;
    --fnpsl-dark: var(--cleenhearts-black, #1a1a1a);
    --fnpsl-white: var(--cleenhearts-white, #ffffff);
    --fnpsl-gray: var(--cleenhearts-gray, #6c757d);
    
    /* RGB pour opacités */
    --fnpsl-green-rgb: var(--cleenhearts-base-rgb, 0, 104, 55);
    --fnpsl-red-rgb: var(--cleenhearts-primary-rgb, 239, 43, 45);
    --fnpsl-gold-rgb: 255, 215, 0;
}

/* ============================================
   TOPBAR
   ============================================ */
.topbar-one {
    background-color: var(--fnpsl-green);
    padding: 5px 0;
    margin: 0;
}


/*============================================
   TOPBAR CONTENT
   ============================================ */
.topbar-one__inner {
    padding: 0;
    margin: 0;
    min-height: 40px;
}

.topbar-one__info {
    margin: 0;
    padding: 0;
}

.topbar-one__info__item {
    margin-right: 20px;
    padding: 2px 0;
}

.topbar-one__info__item a,
.topbar-one__info__icon {
    color: var(--fnpsl-white) !important;
    transition: all 0.3s ease;
}

.topbar-one__info__item a:hover {
    opacity: 0.85;
    text-decoration: underline;
}

.topbar-one__social a {
    color: var(--fnpsl-white);
    background-color: rgba(255, 255, 255, 0.1);
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.topbar-one__social a:hover {
    background-color: var(--fnpsl-yellow);
    color: var(--fnpsl-dark);
    transform: translateY(-3px);
}

/* ============================================
   HEADER PRINCIPAL
   ============================================ */
.main-header.sticky-header--cloned.active {
    background-color: var(--fnpsl-white);
    box-shadow: 0 3px 25px rgba(0, 0, 0, 0.08);
}

.main-header__logo img {
    max-height: 70px;
    width: auto;
    transition: transform 0.3s ease;
}

.main-header__logo:hover img {
    transform: scale(1.05);
}

/* ============================================
   MENU PRINCIPAL
   ============================================ */
.main-menu__list > li > a {
    font-weight: 600;
    font-size: 15px;
    text-transform: none;
    color: var(--cleenhearts-text);
    font-family: var(--cleenhearts-font);
    transition: all 0.3s ease;
    position: relative;
}

/* Effet souligné au survol */
.main-menu__list > li > a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(
        90deg, 
        var(--fnpsl-green) 0%, 
        var(--fnpsl-red) 100%
    );
    transition: width 0.3s ease;
}

.main-menu__list > li:hover > a::before {
    width: 80%;
}

.main-menu__list > li.current > a,
.main-menu__list > li:hover > a {
    color: var(--fnpsl-green) !important;
}

/* Indicateur page active */
.main-menu__list > li.current::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(
        90deg, 
        var(--fnpsl-green) 0%, 
        var(--fnpsl-red) 100%
    );
    border-radius: 2px;
}

/* ============================================
   SOUS-MENUS (DROPDOWNS)
   ============================================ */
.main-menu__list > li.dropdown > ul {
    background-color: var(--fnpsl-white);
    box-shadow: 0 5px 30px rgba(var(--fnpsl-green-rgb), 0.15);
    border-top: 3px solid var(--fnpsl-green);
    padding: 15px 0;
    min-width: 240px;
    border-radius: 0 0 8px 8px;
}

.main-menu__list > li.dropdown > ul li a {
    padding: 10px 25px;
    color: var(--cleenhearts-text);
    font-weight: 500;
    font-family: var(--cleenhearts-font);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.main-menu__list > li.dropdown > ul li a:hover {
    background: linear-gradient(
        90deg,
        rgba(var(--fnpsl-green-rgb), 0.05) 0%,
        rgba(var(--fnpsl-red-rgb), 0.05) 100%
    );
    color: var(--fnpsl-green);
    padding-left: 30px;
}

.main-menu__list > li.dropdown > ul li a i,
.main-menu__list > li.dropdown > ul li a .fas,
.main-menu__list > li.dropdown > ul li a .fab {
    margin-right: 8px;
    font-size: 14px;
    color: var(--fnpsl-green);
}

/* ============================================
   BOUTONS D'ACTION - MÊME NIVEAU D'ÉVIDENCE
   ============================================ */

/* Style pour le bouton NOUS FINANCER (Jaune/Or) */
.menu-item-highlight > a.finance-link {
    background: linear-gradient(135deg, #FFD700 0%, #FFB700 100%);
    color: #000000 !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    font-family: var(--cleenhearts-font);
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

/* Style pour le bouton NOUS CONTACTER (Vert) */
.menu-item-highlight > a.contact-link {
    background: linear-gradient(135deg, var(--fnpsl-green) 0%, var(--fnpsl-green-hover) 100%);
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    font-family: var(--cleenhearts-font);
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(var(--fnpsl-green-rgb), 0.3);
    position: relative;
    overflow: hidden;
}

/* Effet de brillance au survol pour les deux boutons */
.menu-item-highlight > a.finance-link::before,
.menu-item-highlight > a.contact-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

/* Hover pour NOUS FINANCER (Jaune) */
.menu-item-highlight > a.finance-link:hover {
    background: transparent;
    color: #000000 !important;
    border-color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 215, 0, 0.4);
}

/* Hover pour NOUS CONTACTER (Vert) */
.menu-item-highlight > a.contact-link:hover {
    background: transparent;
    color: var(--fnpsl-green) !important;
    border-color: var(--fnpsl-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(var(--fnpsl-green-rgb), 0.4);
}

.menu-item-highlight > a.finance-link:hover::before,
.menu-item-highlight > a.contact-link:hover::before {
    left: 100%;
}

/* Désactive l'effet souligné du menu principal */
.menu-item-highlight > a.finance-link::after,
.menu-item-highlight > a.contact-link::after {
    display: none;
}

/* Animations des icônes */
.menu-item-highlight > a.contact-link i {
    font-size: 16px;
    animation: phoneRing 2s ease-in-out infinite;
}

.menu-item-highlight > a.finance-link i {
    font-size: 16px;
    animation: moneyPulse 2s ease-in-out infinite;
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-15deg); }
    20%, 40% { transform: rotate(15deg); }
}

@keyframes moneyPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Animation pulsante pour le bouton finance */
@keyframes pulseGold {
    0% { box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 4px 16px rgba(255, 215, 0, 0.5); }
    100% { box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3); }
}

.menu-item-highlight > a.finance-link {
    animation: pulseGold 3s infinite;
}

/* Animation pulsante pour le bouton contact */
@keyframes pulseGreen {
    0% { box-shadow: 0 4px 12px rgba(var(--fnpsl-green-rgb), 0.3); }
    50% { box-shadow: 0 4px 16px rgba(var(--fnpsl-green-rgb), 0.5); }
    100% { box-shadow: 0 4px 12px rgba(var(--fnpsl-green-rgb), 0.3); }
}

.menu-item-highlight > a.contact-link {
    animation: pulseGreen 3s infinite;
}

/* Espacement harmonieux entre les boutons */
.main-menu__list > li.menu-item-highlight {
    margin-left: 6px;
}

/* ============================================
   SIDEBAR BUTTON
   ============================================ */
.main-header__sidebar-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        rgba(var(--fnpsl-green-rgb), 0.1) 0%,
        rgba(var(--fnpsl-red-rgb), 0.1) 100%
    );
    border: 1px solid var(--cleenhearts-border-color);
    border-radius: 5px;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.main-header__sidebar-btn:hover {
    background: linear-gradient(
        135deg,
        var(--fnpsl-green) 0%,
        var(--fnpsl-red) 100%
    );
    transform: scale(1.05);
}

.main-header__sidebar-btn:hover .icon-grid {
    color: var(--fnpsl-white);
}

/* ============================================
   MOBILE NAV BUTTON
   ============================================ */
.mobile-nav__btn span {
    background-color: var(--fnpsl-green);
    height: 3px;
    width: 30px;
    display: block;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.mobile-nav__btn:hover span {
    background: linear-gradient(
        90deg,
        var(--fnpsl-green) 0%,
        var(--fnpsl-red) 100%
    );
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1199px) {
    .main-menu__list > li {
        padding: 8px 0;
    }

    .menu-item-highlight {
        margin-left: 0 !important;
        margin-top: 6px;
    }
}

@media (max-width: 991px) {
    .topbar-one__inner {
        flex-direction: column;
        text-align: center;
    }

    .topbar-one__info {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 10px;
    }

    .main-menu__list {
        flex-direction: column;
        background: var(--fnpsl-white);
        padding: 20px;
        box-shadow: 0 4px 12px rgba(var(--fnpsl-green-rgb), 0.15);
        border-radius: 12px;
    }

    .main-menu__list > li {
        border-bottom: 1px solid var(--cleenhearts-border-color);
        padding: 10px 0;
    }

    /* Styles identiques pour mobile */
    .menu-item-highlight > a.contact-link,
    .menu-item-highlight > a.finance-link {
        display: flex !important;
        text-align: center;
        width: 100%;
        justify-content: center;
        margin: 4px auto !important;
        max-width: 200px !important;
        padding: 10px 20px !important;
    }

    .main-menu__list > li > a::before,
    .main-menu__list > li.current::after {
        display: none;
    }
}

@media (max-width: 575px) {
    .topbar-one__info__item {
        font-size: 13px;
    }

    .main-header__logo img {
        max-height: 55px;
    }
    
    .menu-item-highlight > a.contact-link,
    .menu-item-highlight > a.finance-link {
        font-size: 13px;
        padding: 8px 16px;
    }
}

/* ============================================
   NAVIGATION MOBILE - STYLES IDENTIQUES AU WEB
   ============================================ */

/* Wrapper et overlay */
.mobile-nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.mobile-nav__wrapper.expanded {
    visibility: visible;
    opacity: 1;
}

.mobile-nav__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.75);
    cursor: pointer;
}

/* Contenu du menu mobile */
.mobile-nav__content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background-color: var(--fnpsl-white) !important;
    padding: 30px 20px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.2);
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
    transform: translateX(0);
}

/* Bouton fermeture */
.mobile-nav__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--fnpsl-green), var(--fnpsl-red)) !important;
    color: var(--fnpsl-white) !important;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    border: none;
}

.mobile-nav__close:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 5px 20px rgba(var(--fnpsl-green-rgb), 0.4);
}

.mobile-nav__close i {
    font-size: 20px;
    color: var(--fnpsl-white) !important;
}

/* Logo mobile */
.mobile-nav__content .logo-box {
    text-align: center;
    padding: 20px 0 30px;
    border-bottom: 2px solid rgba(var(--fnpsl-green-rgb), 0.1);
    margin-bottom: 25px;
}

.mobile-nav__content .logo-box img {
    max-width: 140px;
    height: auto;
}

/* Container du menu (généré par JS) */
.mobile-nav__container {
    margin-bottom: 30px;
}

/* CRITIQUE: Reset et styles de base */
.mobile-nav__container * {
    color: inherit !important;
}

.mobile-nav__container ul {
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
    background: transparent !important;
}

.mobile-nav__container ul li {
    border-bottom: 1px solid rgba(var(--fnpsl-green-rgb), 0.1) !important;
    position: relative;
    background: transparent !important;
}

.mobile-nav__container ul li:last-child {
    border-bottom: none !important;
}

/* IMPORTANT: Liens principaux - COULEUR FORCÉE */
.mobile-nav__container ul li > a,
.mobile-nav__container > ul > li > a,
.mobile-nav__container .main-menu__list > li > a {
    display: block !important;
    padding: 15px 10px !important;
    color: #1a1a1a !important;
    background-color: transparent !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    font-family: var(--cleenhearts-font) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    line-height: 1.5 !important;
}

/* Hover des liens principaux */
.mobile-nav__container ul li > a:hover,
.mobile-nav__container > ul > li > a:hover,
.mobile-nav__container .main-menu__list > li > a:hover {
    color: #006837 !important;
    padding-left: 20px !important;
    background: linear-gradient(
        90deg,
        rgba(0, 104, 55, 0.05) 0%,
        transparent 100%
    ) !important;
}

/* Page active */
.mobile-nav__container ul li.current > a,
.mobile-nav__container > ul > li.current > a,
.mobile-nav__container .main-menu__list > li.current > a {
    color: #006837 !important;
    background: linear-gradient(
        90deg,
        rgba(0, 104, 55, 0.08) 0%,
        transparent 100%
    ) !important;
    border-left: 4px solid #006837 !important;
    padding-left: 16px !important;
}

/* Bouton dropdown (flèche) */
.mobile-nav__container ul li > button,
.mobile-nav__container ul li .expanded,
.mobile-nav__container button[aria-label="dropdown toggler"] {
    position: absolute !important;
    right: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 35px !important;
    height: 35px !important;
    background: rgba(0, 104, 55, 0.1) !important;
    border: none !important;
    border-radius: 50% !important;
    color: #006837 !important;
    font-size: 16px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
}

.mobile-nav__container ul li > button:hover,
.mobile-nav__container ul li .expanded:hover {
    background: #006837 !important;
    color: #ffffff !important;
}

.mobile-nav__container ul li > button i,
.mobile-nav__container ul li .expanded i {
    color: inherit !important;
}

/* Sous-menus (dropdowns) */
.mobile-nav__container ul li ul,
.mobile-nav__container ul li > ul {
    padding-left: 0 !important;
    padding: 10px 0 !important;
    background: linear-gradient(
        90deg,
        rgba(0, 104, 55, 0.03) 0%,
        rgba(239, 43, 45, 0.02) 100%
    ) !important;
    border-radius: 8px !important;
    margin: 8px 0 !important;
    overflow: hidden !important;
}

.mobile-nav__container ul li ul li,
.mobile-nav__container ul li > ul > li {
    border-bottom: 1px solid rgba(0, 104, 55, 0.05) !important;
    background: transparent !important;
}

.mobile-nav__container ul li ul li:last-child {
    border-bottom: none !important;
}

/* Liens des sous-menus */
.mobile-nav__container ul li ul li a,
.mobile-nav__container ul li > ul > li > a {
    padding: 12px 15px 12px 25px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #333333 !important;
    background: transparent !important;
}

.mobile-nav__container ul li ul li a:hover,
.mobile-nav__container ul li > ul > li > a:hover {
    color: #006837 !important;
    padding-left: 35px !important;
    background: rgba(0, 104, 55, 0.05) !important;
}

/* Icônes dans les sous-menus */
.mobile-nav__container ul li ul li a i,
.mobile-nav__container ul li ul li a .fas,
.mobile-nav__container ul li ul li a .fab {
    margin-right: 8px !important;
    color: #006837 !important;
    font-size: 14px !important;
}

/* ============================================
   BOUTONS DANS LE MENU MOBILE - STYLES IDENTIQUES AU WEB
   ============================================ */
.mobile-nav__container .menu-item-highlight,
.mobile-nav__container li.menu-item-highlight {
    border: none !important;
    padding: 0 !important;
    margin: 12px 0 8px !important;
    text-align: center;
}

/* Style NOUS FINANCER dans le menu mobile (Jaune) */
.mobile-nav__container .menu-item-highlight > a.finance-link,
.mobile-nav__container li.menu-item-highlight > a.finance-link {
    background: linear-gradient(135deg, #FFD700 0%, #FFB700 100%) !important;
    color: #000000 !important;
    padding: 10px 20px !important;
    border-radius: 50px !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    font-weight: 700 !important;
    text-transform: none;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3) !important;
    margin: 6px auto !important;
    max-width: 200px !important;
    width: auto !important;
    border: 2px solid transparent !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    font-size: 14px !important;
    animation: pulseGold 3s infinite !important;
}

/* Style NOUS CONTACTER dans le menu mobile (Vert) */
.mobile-nav__container .menu-item-highlight > a.contact-link,
.mobile-nav__container li.menu-item-highlight > a.contact-link {
    background: linear-gradient(135deg, #006837 0%, #004d28 100%) !important;
    color: #ffffff !important;
    padding: 10px 20px !important;
    border-radius: 50px !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    font-weight: 700 !important;
    text-transform: none !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 12px rgba(0, 104, 55, 0.3) !important;
    margin: 6px auto !important;
    max-width: 200px !important;
    width: auto !important;
    border: 2px solid transparent !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    font-size: 14px !important;
    animation: pulseGreen 3s infinite !important;
}

/* Effet de brillance dans le menu mobile */
.mobile-nav__container .menu-item-highlight > a.finance-link::before,
.mobile-nav__container .menu-item-highlight > a.contact-link::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent) !important;
    transition: left 0.5s ease !important;
}

/* Hover NOUS FINANCER dans le menu mobile */
.mobile-nav__container .menu-item-highlight > a.finance-link:hover,
.mobile-nav__container li.menu-item-highlight > a.finance-link:hover {
    background: transparent !important;
    color: #000000 !important;
    border-color: #FFD700 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(255, 215, 0, 0.4) !important;
}

/* Hover NOUS CONTACTER dans le menu mobile */
.mobile-nav__container .menu-item-highlight > a.contact-link:hover,
.mobile-nav__container li.menu-item-highlight > a.contact-link:hover {
    background: transparent !important;
    color: #006837 !important;
    border-color: #006837 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(0, 104, 55, 0.4) !important;
}

.mobile-nav__container .menu-item-highlight > a.finance-link:hover::before,
.mobile-nav__container .menu-item-highlight > a.contact-link:hover::before {
    left: 100% !important;
}

/* Animations maintenues dans le menu mobile */
.mobile-nav__container .menu-item-highlight > a.contact-link i {
    animation: phoneRing 2s ease-in-out infinite !important;
    font-size: 16px !important;
    color: inherit !important;
}

.mobile-nav__container .menu-item-highlight > a.finance-link i {
    animation: moneyPulse 2s ease-in-out infinite !important;
    font-size: 16px !important;
    color: inherit !important;
}

/* Coordonnées en bas du menu */
.mobile-nav__contact {
    padding: 20px 10px 15px;
    border-top: 2px solid rgba(0, 104, 55, 0.1);
    margin-top: 20px;
}

.mobile-nav__contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #333333 !important;
}

.mobile-nav__contact li i {
    color: #006837 !important;
    font-size: 16px;
    width: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.mobile-nav__contact li a {
    color: #333333 !important;
    transition: color 0.3s ease;
    text-decoration: none;
}

.mobile-nav__contact li a:hover {
    color: #006837 !important;
}

.mobile-nav__contact li span {
    color: #333333 !important;
}

/* Réseaux sociaux en bas */
.mobile-nav__social {
    display: flex;
    gap: 12px;
    justify-content: center;
    padding: 20px 10px 10px;
    border-top: 1px solid rgba(0, 104, 55, 0.1);
}

.mobile-nav__social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        rgba(0, 104, 55, 0.1) 0%,
        rgba(239, 43, 45, 0.1) 100%
    ) !important;
    color: #006837 !important;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mobile-nav__social a:hover {
    background: linear-gradient(135deg, #006837, #EF2B2D) !important;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 104, 55, 0.3);
}

.mobile-nav__social a i {
    font-size: 18px;
    color: inherit !important;
}

/* Scrollbar personnalisée */
.mobile-nav__content::-webkit-scrollbar {
    width: 6px;
}

.mobile-nav__content::-webkit-scrollbar-track {
    background: rgba(0, 104, 55, 0.05);
}

.mobile-nav__content::-webkit-scrollbar-thumb {
    background: #006837;
    border-radius: 10px;
}

.mobile-nav__content::-webkit-scrollbar-thumb:hover {
    background: #004d28;
}

/* ============================================
   RESPONSIVE MOBILE NAV
   ============================================ */
@media (max-width: 575px) {
    .mobile-nav__content {
        width: 280px;
        padding: 25px 15px;
    }

    .mobile-nav__container ul li > a {
        font-size: 15px !important;
        padding: 13px 10px !important;
    }

    .mobile-nav__contact li {
        font-size: 13px;
    }

    .mobile-nav__social a {
        width: 40px;
        height: 40px;
    }

    .mobile-nav__container .menu-item-highlight > a.contact-link,
    .mobile-nav__container .menu-item-highlight > a.finance-link {
        font-size: 13px !important;
        padding: 8px 16px !important;
        max-width: 180px !important;
    }
}