/* Direct Mobile Navigation - Guaranteed to work */

/* Mobile Menu Button */
.mobile-menu {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #FF7A00;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2000;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 122, 0, 0.3);
}

.mobile-menu:hover {
    background: #e66e00;
    transform: translateY(-50%) translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.4);
}

.mobile-menu:active {
    transform: translateY(-50%) scale(0.95);
    box-shadow: 0 1px 4px rgba(255, 122, 0, 0.2);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    overflow-y: auto;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav.show {
    display: block;
}

.mobile-nav-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.close-mobile-nav {
    background: none;
    border: none;
    color: #333;
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-mobile-nav:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #FF7A00;
}

.close-mobile-nav:active {
    transform: scale(0.9);
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-links li {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.mobile-nav-links a {
    display: block;
    padding: 15px 10px;
    color: #333;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-links a:hover {
    color: #FF7A00;
    background: rgba(255, 122, 0, 0.05);
    padding-left: 15px;
}

.mobile-nav-links a:active {
    background: rgba(255, 122, 0, 0.1);
    transform: scale(0.99);
}

.mobile-nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF7A00;
    transition: width 0.3s ease;
}

.mobile-nav-links a:hover::after {
    width: 100%;
}

/* Active state for current page */
.mobile-nav-links a.active {
    color: #FF7A00;
    background: rgba(255, 122, 0, 0.05);
    font-weight: 600;
    padding-left: 15px;
}

.mobile-nav-links a.active::after {
    width: 100%;
}

/* Ripple effect for buttons */
.mobile-nav-links a {
    overflow: hidden;
    position: relative;
}

.ripple {
    position: absolute;
    background: rgba(255, 122, 0, 0.3);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
    width: 100px;
    height: 100px;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Media Queries */
@media (max-width: 992px) {
    .mobile-menu {
        display: flex;
    }
    
    .nav-container {
        display: none;
    }
}
