/* QUICK FIX pour l'alignement du menu desktop */

/* Container principal */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 70px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Zone navigation principale */
.nav-links {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    margin: 0 20px;
}

/* Items de navigation */
.nav-item {
    display: flex;
    align-items: center;
    height: 70px;
}

.nav-link {
    padding: 15px 12px !important;
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 15px;
    font-weight: 500;
    color: #2D3748;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #27AE5F;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #27AE5F 0%, #34D399 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 174, 95, 0.3);
    white-space: nowrap;
    margin-left: 15px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39, 174, 95, 0.4);
}

/* Cache les sous-menus mobiles sur desktop */
@media (min-width: 769px) {
    .mobile-submenu {
        display: none !important;
    }
    
    .mobile-toggle,
    .mobile-close {
        display: none !important;
    }
    
    /* Supprime les anciens styles d'industries DU MEGA MENU UNIQUEMENT */
    .mega-menu .industries-grid,
    .mega-menu .industry-item,
    .mega-menu .industry-icon,
    .mega-menu .industry-info {
        display: none !important;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .cta-button {
        display: none;
    }
}
