/* Mobile Menu Global Styles */

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

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.25rem;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(12px);
    z-index: 100;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-items {
    padding: 1rem 0;
}

.mobile-menu-items a,
.mobile-menu-items .mobile-dropdown-trigger {
    display: block;
    padding: 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.mobile-menu-items a:hover,
.mobile-menu-items .mobile-dropdown-trigger:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.mobile-dropdown-content {
    display: none;
    background: rgba(0, 0, 0, 0.2);
}

.mobile-dropdown-content.active {
    display: block;
}

.mobile-dropdown-content a {
    padding-left: 2.5rem;
    font-size: 0.9rem;
}

.mobile-cta {
    margin: 1rem 1.5rem;
    background: linear-gradient(135deg, #10b981 0%, #2563eb 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    display: block;
}

/* Responsive - Show mobile menu on mobile devices */
@media (max-width: 768px) {
    .nav-menu {
        display: none !important;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu,
    .mobile-menu-overlay {
        display: block;
    }
}