/* ==================== Mobile Menu Styles ==================== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 115px;
        /* Exact height of navbar with padding */
        left: 0;
        right: 0;
        width: 100%;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 248, 240, 0.98) 100%);
        backdrop-filter: blur(12px);
        flex-direction: column;
        gap: 0;
        padding: 1.5rem 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, opacity 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 998;
        border-bottom: 3px solid var(--accent-color);
        opacity: 0;
    }

    .nav-menu.active {
        max-height: 400px;
        opacity: 1;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 1rem 2rem;
        text-align: center;
        font-size: 1.1rem;
        border-radius: 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link::before {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        background: linear-gradient(135deg, var(--bg-rose), var(--bg-light-pink));
        color: var(--primary-color);
    }

    .language-switcher {
        margin: 1.5rem auto 0;
        width: fit-content;
    }

    .logo {
        font-size: 1.3rem;
    }

    .logo img {
        width: 40px;
        height: 40px;
    }
}