/* أنماط شريط التنقل للموبايل */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6a11cb;
    cursor: pointer;
    z-index: 1001;
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
        order: 2;
    }
    
    .navbar {
        flex-wrap: wrap;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        right: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        transition: transform 0.3s;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .nav-links li {
        margin: 0 0 20px 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 15px;
        width: 100%;
        font-size: 1.1rem;
    }
    
    .language-switcher {
        display: flex;
        margin: 20px 0;
        justify-content: center;
    }
    
    .whatsapp-btn {
        margin-top: 20px;
        width: 80%;
        justify-content: center;
    }
}