/* ==========================================
   MENU MOBILE - REFAIT DE ZÉRO
   ========================================== */

/* Navigation Desktop */
.desktop-nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.desktop-nav a {
    color: #2C4766;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    transition: color 0.3s;
}

.desktop-nav a:hover {
    color: #CE751E;
}

/* Bouton Menu Mobile */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: #2C4766;
    transition: all 0.3s;
}

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

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

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

/* Overlay Menu Mobile */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #2C4766 0%, rgba(44, 71, 102, 0.98) 100%);
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Bouton fermer dans le menu */
.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.mobile-menu-close i {
    color: white;
    font-size: 1.5rem;
}

.mobile-menu-content {
    padding: 100px 30px 30px;
    height: 100%;
    overflow-y: auto;
}

.mobile-menu-content h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
}

/* Liens de contact mobile */
.mobile-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
}

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

.mobile-link i {
    font-size: 1.5rem;
    width: 30px;
}

.mobile-link div {
    display: flex;
    flex-direction: column;
}

.mobile-label {
    font-size: 0.85rem;
    opacity: 0.8;
}

.mobile-value {
    font-size: 1rem;
    font-weight: 600;
}

.mobile-phone {
    background: linear-gradient(135deg, #2C4766, #1a2d42);
}

.mobile-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.mobile-email {
    background: linear-gradient(135deg, #CE751E, #e68a2e);
}

/* Séparateur */
.mobile-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 30px 0;
}

/* Navigation mobile */
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
}

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

/* Bouton CTA */
.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 30px;
    background: #CE751E;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(206, 117, 30, 0.4);
    transition: all 0.3s;
}

.mobile-cta-btn:hover {
    background: #e68a2e;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
}

@media (min-width: 769px) {
    .mobile-menu-btn,
    .mobile-menu-overlay {
        display: none !important;
    }
}
