/* Hamburger Menu Fix */
body {
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 280px !important;
        max-width: 280px !important;
        height: 100vh !important;
        background: white !important;
        flex-direction: column !important;
        padding: 80px 30px 30px !important;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1) !important;
        transition: right 0.3s ease !important;
        z-index: 1000 !important;
        overflow-y: auto !important;
        margin: 0 !important;
        left: auto !important;
    }
    
    .nav-menu.active {
        right: 0 !important;
    }
    
    .menu-overlay {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: rgba(0, 0, 0, 0.5) !important;
        z-index: 999 !important;
        display: none !important;
    }
    
    .menu-overlay.active {
        display: block !important;
    }
}
