/* ================ RESPONSIVE NAVBAR STYLES ================ */
@media screen and (max-width: 1024px) {
    .navbar-links li {
        margin: 0 10px;
    }
    
    .navbar-links a {
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 992px) {
    body.menu-open {
        overflow: hidden;
    }
    
    .navbar {
        height: 80px;
    }
    
    .navbar-brand .logo {
        font-size: 1.4rem;
    }
    
    .navbar-toggle {
        display: flex;
    }
    
    .navbar-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        flex-direction: column;
        background-color: white;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        z-index: 1000;
        padding: 40px 20px;
        justify-content: flex-start;
        overflow-y: auto;
        opacity: 0;
        transform: translateX(-20px);
    }
    
    .navbar-menu.active {
        left: 0;
        opacity: 1;
        transform: translateX(0);
    }
    
    .navbar-links {
        flex-direction: column;
        margin-right: 0;
        width: 100%;
        margin-bottom: 30px;
    }
    
    .navbar-links li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }
    
    .navbar-links a {
        display: block;
        padding: 15px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .navbar-links a:after {
        display: none;
    }
    
    .navbar-links li:last-child a {
        border-bottom: none;
    }
    
    .navbar-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        padding-top: 15px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .navbar-buttons a {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 576px) {
    .navbar {
        height: 70px;
    }
    
    .navbar-menu {
        top: 70px;
        height: calc(100vh - 70px);
        padding: 30px 15px;
    }
    
    .navbar-brand .logo {
        font-size: 1.3rem;
    }
}
