/* Mobile Menu Fix - Prevents menu from going up on scroll */
@media (max-width: 991px) {
    .top-header {
        position: static !important;
        transform: none !important;
    }
    
    .top-header.fixed-menu {
        position: static !important;
        box-shadow: none !important;
        background: #fff !important;
        transform: none !important;
        animation: none !important;
    }
    
    .header_bottom {
        position: static !important;
        bottom: auto !important;
    }
    
    .navbar-collapse {
        position: static !important;
        background: #ff880e;
        margin-top: 10px;
        padding: 10px;
    }
    
    .navbar-nav .nav-link {
        color: white !important;
        padding: 10px 15px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
}

@media (max-width: 767px) {
    .top-header {
        position: static !important;
        transform: none !important;
    }
    
    .top-header.fixed-menu {
        position: static !important;
        box-shadow: none !important;
        transform: none !important;
        animation: none !important;
    }
}