:root {
    --color-red: #FF0000;
    --color-red-dark: #CC0000;
    --color-gold: #FFD700;
    --color-gold-dark: #DAA520;
    --color-green: #0a7734;
    --color-green-dark: #085c28;
    --color-white: #FFFFFF;
    --color-black: #1a1a1a;
    --color-gray: #6B7280;
    --color-gray-light: #F3F4F6;
    --color-cream: #FFFDEE;
    --color-cream-light: #FFFEF5;
    --color-cream-dark: #F5F3E4;

    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
    --shadow-glow-red: 0 0 20px rgba(255, 0, 0, 0.3);
    --shadow-glow-gold: 0 0 20px rgba(255, 215, 0, 0.3);

    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Container Principal */
.navbar-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
}

/* État initial (avant scroll) - Plus transparent */
.navbar-container.initial {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.2rem 2rem;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

/* État après scroll - Plus opaque */
.navbar-container.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 0.6rem 2rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

/* Animation d'apparition de la navbar */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

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

.navbar-container {
    animation: slideDown 0.6s ease-out;
}

/* Espace réservé pour éviter le saut de contenu */
.navbar-spacer {
    height: 80px;
    width: 100%;
}

/* Ajustement pour mobile */
@media (max-width: 768px) {
    .navbar-container {
        padding: 0.75rem 1rem;
    }

    .navbar-container.initial {
        padding: 0.9rem 1rem;
    }

    .navbar-container.scrolled {
        padding: 0.5rem 1rem;
    }

    .navbar-spacer {
        height: 65px;
    }
}

@media (max-width: 480px) {
    .navbar-spacer {
        height: 60px;
    }
}

/* .navbar-container.scrolled {
    padding: 0.5rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
} */

.navbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Area Élégant */
.logo-area {
    margin: 0 1rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    position: relative;
}

.logo-icon {
    position: relative;
}

.logo-img {
    height: 25px;
    width: auto;
    transition: var(--transition-bounce);
}

.logo-glow {
    position: absolute;
    inset: -5px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition-smooth);
}

.logo-link:hover .logo-img {
    transform: scale(1.05) rotate(5deg);
}

.logo-link:hover .logo-glow {
    opacity: 1;
}

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

.logo-title {
    font-size: 0.9rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}

.logo-badge {
    font-size: 0.8rem;
    color: var(--color-gray);
    font-weight: 500;
    letter-spacing: 1px;
}

/* Navigation Desktop */
.nav-desktop {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 0.3rem;
    align-items: center;
}

/* Nav Link Items */
.nav-link-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    color: var(--color-black);
    font-weight: 500;
    transition: var(--transition-smooth);
    overflow: hidden;
    background: transparent;
    cursor: pointer;
    border: none;
}

.nav-icon {
    font-size: 0.7rem;
    transition: var(--transition-smooth);
}

.nav-text {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1px;
}

.nav-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-red-dark), var(--color-red));
    border-radius: 3px;
    transition: var(--transition-smooth);
}

/* Hover Effect */
.nav-link-item:hover {
    background: rgba(255, 0, 0, 0.05);
    transform: translateY(-2px);
}

.nav-link-item:hover .nav-icon {
    transform: scale(1.1) translateY(-2px);
    color: var(--color-red);
}

.nav-link-item:hover .nav-indicator {
    transform: translateX(-50%) scaleX(1);
}

/* Active State */
.nav-link-item.active {
    background: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
    color: var(--color-white);
    box-shadow: var(--shadow-glow-red);
}

.nav-link-item.active .nav-icon {
    color: var(--color-white);
}

.nav-link-item.active::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

/* Gradient Buttons */
.btn-gradient {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-black);
    box-shadow: var(--shadow-sm);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-gold);
}

.submit-btn {
    background: linear-gradient(135deg, var(--color-green), var(--color-green-dark));
    color: var(--color-white);
}

.submit-btn:hover {
    box-shadow: 0 0 20px rgba(10, 119, 52, 0.4);
}

/* User Menu Sophistiqué */
.user-menu {
    position: relative;
}

.user-trigger {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.2rem 0.5rem 0.2rem 0.2rem;
    background: var(--color-gray-light);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.user-trigger:hover {
    background: rgba(255, 0, 0, 0.1);
    transform: translateY(-2px);
}

.user-avatar {
    position: relative;
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-initials {
    color: var(--color-white);
    font-weight: 700;
    font-size: 0.6rem;
}

.avatar-status {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: var(--color-green);
    border: 2px solid var(--color-white);
    border-radius: 50%;
}

.online {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

.user-name {
    font-weight: 600;
    font-size: 0.6rem;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.chevron {
    font-size: 0.6rem;
    transition: var(--transition-smooth);
}

.user-trigger:hover .chevron {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.user-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 260px;
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: var(--transition-smooth);
    z-index: 100;
}

.user-menu:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    padding: 1.2rem;
}

.dropdown-user-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.dropdown-user-info strong {
    font-size: 0.95rem;
    color: var(--color-black);
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropdown-user-info small {
    font-size: 0.8rem;
    color: var(--color-gray);
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropdown-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gray), transparent);
    margin: 0.5rem 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1.2rem;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: rgba(255, 0, 0, 0.05);
}

.logout {
    color: var(--color-red);
}

.logout:hover {
    background: rgba(255, 0, 0, 0.1);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    width: 30px;
    height: 20px;
    position: relative;
}

.hamburger span {
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--color-red);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

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

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

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

.mobile-menu-btn.active .hamburger span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

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

.mobile-menu-btn.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

/* Mobile Navigation Overlay */

/* ============================================
   MENU MOBILE - DESIGN SPÉCIFIQUE
   ============================================ */

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Conteneur du menu mobile */
.mobile-nav-container {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 380px;
    height: 100%;
    background: #FFFFFF;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    z-index: 10001;
    display: flex;
    flex-direction: column;
}

.mobile-nav-overlay.active .mobile-nav-container {
    transform: translateX(0);
}

/* Header du menu mobile */
.mobile-nav-header {
    padding: 1.5rem;
    border-bottom: 1px solid #E5E7EB;
    background: #FFFFFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-logo img {
    height: 40px;
    width: auto;
}

.mobile-logo span {
    font-size: 1.7rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}

/* Bouton de fermeture */
.mobile-nav-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F3F4F6;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-nav-close:hover {
    background: #FF0000;
}

.mobile-nav-close:hover i {
    color: #FFFFFF;
}

.mobile-nav-close i {
    font-size: 1.2rem;
    color: #6B7280;
    transition: color 0.3s ease;
}

/* Navigation links - STYLE MOBILE UNIQUEMENT */
.mobile-nav-links {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    text-decoration: none;
    color: #1F2937;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
}

.mobile-nav-link i {
    width: 24px;
    font-size: 1.2rem;
    color: var(--color-white);
    transition: all 0.3s ease;
}

.mobile-nav-link span {
    /* flex: 1; */
}

.mobile-nav-link:hover {
    background: rgba(255, 0, 0, 0.05);
    transform: translateX(5px);
}

.mobile-nav-link:hover i {
    color: var(--color-red);
    transform: scale(1.1);
}

/* Active state pour mobile */
.mobile-nav-link.active {
    background: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
    color: var(--color-white);
    box-shadow: var(--shadow-glow-red);
}

.mobile-nav-link.active i {
    color: #FFFFFF;
}

/* Boutons spéciaux mobile */
.mobile-nav-link.btn-mobile-register {
    background: linear-gradient(135deg, #FFD700, #DAA520);
    color: #000000;
    margin-top: 0.5rem;
}

.mobile-nav-link.btn-mobile-register i {
    color: #000000;
}

.mobile-nav-link.btn-mobile-submit {
    background: linear-gradient(135deg, #0a7734, #085c28);
    color: #FFFFFF;
}

.mobile-nav-link.logout-mobile {
    color: #FF0000;
    border-top: 1px solid #E5E7EB;
    margin-top: 1rem;
    border-radius: 12px;
}

.mobile-nav-link.logout-mobile:hover {
    background: rgba(255, 0, 0, 0.1);
}

/* Section utilisateur dans menu mobile */
.mobile-user-section {
    padding: 1rem 1.5rem;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
    margin: 0.5rem 0;
}

.mobile-user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
}

.mobile-user-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: #FFFFFF;
}

.mobile-user-details {
    flex: 1;
}

.mobile-user-name {
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 0.25rem;
}

.mobile-user-email {
    font-size: 0.75rem;
    color: #6B7280;
}

/* Footer du menu mobile */
.mobile-nav-footer {
    padding: 1.5rem;
    border-top: 1px solid #E5E7EB;
    text-align: center;
}

.mobile-nav-footer p {
    font-size: 0.75rem;
    color: #9CA3AF;
    margin: 0;
}

/* Responsive - Ajustements */
@media (max-width: 480px) {
    .mobile-nav-container {
        width: 100%;
        max-width: none;
    }

    .mobile-nav-links {
        padding: 1rem;
    }

    .mobile-nav-link {
        padding: 0.9rem 1rem;
    }
}


.btn-mobile-register {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-black);
    text-align: center;
}

.logout-mobile {
    width: 100%;
    color: var(--color-red);
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-desktop {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .navbar-container {
        padding: 1rem;
    }
}

/* Scroll Animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

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

.navbar-container {
    animation: slideDown 0.6s ease;
}

/* ============================================
   MEGAMENU DROPDOWN - STYLE GLASSMORPHIQUE
   ============================================ */

.dropdown-mega {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    margin-left: 4px;
}

.dropdown-mega:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Megamenu Content */
.dropdown-mega-content {
    position: absolute;
    top: calc(100% + 7px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 680px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.dropdown-mega:hover .dropdown-mega-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Pour Structures (plus large) */
.dropdown-mega:first-of-type .dropdown-mega-content {
    min-width: 750px;
}

/* Container du megamenu */
.mega-container {
    display: flex;
    padding: 1.8rem;
    gap: 2rem;
}

.mega-col {
    flex: 1;
}

.mega-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FF0000;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 0, 0, 0.2);
    display: inline-block;
}

.mega-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-col ul li {
    margin-bottom: 0.6rem;
}

.mega-col ul li a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.8rem;
    color: #1a2c3e;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.mega-col ul li a i {
    width: 20px;
    font-size: 0.85rem;
    color: #0a7734;
    transition: all 0.2s ease;
}

.mega-col ul li a:hover {
    background: rgba(10, 119, 52, 0.1);
    transform: translateX(5px);
    color: #0a7734;
}

.mega-col ul li a:hover i {
    color: #FFD700;
    transform: scale(1.1);
}

/* Ajustement pour le dernier dropdown */
.dropdown-mega:last-of-type .dropdown-mega-content {
    left: auto;
    right: 0;
    transform: translateX(0) translateY(-10px);
}

.dropdown-mega:last-of-type:hover .dropdown-mega-content {
    transform: translateX(0) translateY(0);
}

/* Responsive Megamenu */
@media (max-width: 1200px) {
    .dropdown-mega-content,
    .dropdown-mega:first-of-type .dropdown-mega-content {
        min-width: 600px;
    }
    
    .mega-container {
        padding: 1.5rem;
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .dropdown-mega-content {
        display: none;
    }
    
    .dropdown-mega:hover .dropdown-mega-content {
        display: none;
    }
}

/* ============================================
   MOBILE MENU - CATÉGORIES SUPPLEMENTAIRES
   ============================================ */

/* Sous-menu dans le menu mobile */
.mobile-nav-link.has-submenu {
    position: relative;
    justify-content: space-between;
}

.mobile-nav-link.has-submenu .submenu-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.mobile-nav-link.has-submenu.active .submenu-arrow {
    transform: rotate(180deg);
}

.mobile-submenu {
    padding-left: 2.5rem;
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.mobile-submenu.active {
    display: flex;
}

.mobile-submenu a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 1rem;
    color: #4B5563;
    text-decoration: none;
    font-size: 0.85rem;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.mobile-submenu a i {
    width: 20px;
    font-size: 0.8rem;
    color: #9CA3AF;
}

.mobile-submenu a:hover {
    background: rgba(10, 119, 52, 0.1);
    color: #0a7734;
    transform: translateX(5px);
}

.mobile-submenu a:hover i {
    color: #0a7734;
}

/* ============================================
   MENU MOBILE - STYLES DES SOUS-MENUS
   ============================================ */

/* Élément avec sous-menu */
.mobile-nav-item {
    width: 100%;
}

.mobile-nav-item.has-submenu {
    margin-bottom: 0.25rem;
}

.dropdown-trigger {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.dropdown-trigger .submenu-arrow {
    transition: transform 0.3s ease;
    font-size: 0.7rem;
    color: var(--color-gray);
}

.dropdown-trigger.active .submenu-arrow {
    transform: rotate(180deg);
}

/* Sous-menu */
.mobile-submenu {
    display: none;
    padding: 0.5rem 0 0.5rem 2rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    margin: 0.25rem 0 0.5rem 0;
}

.mobile-submenu.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

/* Groupes dans le sous-menu */
.submenu-group {
    margin-bottom: 1rem;
}

.submenu-group h4 {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-gold-dark);
    margin: 0.75rem 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.submenu-group h4 i {
    font-size: 0.7rem;
}

.submenu-group a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.8rem;
    text-decoration: none;
    font-size: 0.85rem;
    color: #4a5568;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.submenu-group a i {
    width: 20px;
    font-size: 0.8rem;
    color: var(--color-green-light);
}

.submenu-group a:hover {
    background: rgba(10, 119, 52, 0.08);
    color: var(--color-green-light);
    transform: translateX(5px);
}

/* Divider */
.mobile-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
    margin: 0.75rem 0;
}

/* Animation d'ouverture */
.mobile-submenu {
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 480px) {
    .mobile-submenu {
        padding-left: 1rem;
    }
    
    .submenu-group a {
        padding: 0.5rem 0.6rem;
        font-size: 0.8rem;
    }
}