/* Mobile Header and Menu Styles */

/* Mobile Header Layout Fix */
@media (max-width: 1024px) {
    .header-top-content {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100%;
        gap: 10px;
    }

    .contact-info {
        flex-direction: row !important;
        gap: 0 !important;
        order: 1;
    }

    .contact-info .contact-link {
        display: none !important;
    }

    .contact-info .say-hello {
        display: inline-block !important;
    }

    .lang-toggle-wrapper {
        order: 2;
    }

    /* Beautiful Mobile Menu Styles */
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 85% !important;
        max-width: 320px !important;
        height: 100vh !important;
        background: linear-gradient(180deg, #1a365d 0%, #0d2540 100%) !important;
        padding: 0 !important;
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.4) !important;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        z-index: 999999 !important;
        display: flex !important;
        flex-direction: column !important;
        overflow-y: auto !important;
    }

    .nav-menu.active {
        left: 0 !important;
    }

    .nav-menu::before {
        content: '';
        display: block;
        width: 100%;
        height: 120px;
        background: linear-gradient(135deg, var(--accent-color, #d4af37) 0%, #c9a961 100%);
        clip-path: ellipse(80% 100% at 50% 0%);
        margin-bottom: 20px;
        flex-shrink: 0;
        pointer-events: none;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-menu li a {
        display: block !important;
        padding: 18px 25px !important;
        color: rgba(255, 255, 255, 0.9) !important;
        font-size: 1.05rem !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        background: transparent !important;
    }

    .nav-menu li a:hover,
    .nav-menu li a:active {
        background: rgba(212, 175, 55, 0.15) !important;
        color: var(--accent-color, #d4af37) !important;
    }

    /* Hamburger Animation */
    .hamburger {
        z-index: 9999999 !important;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Footer should be below menu */
    .footer {
        z-index: 100 !important;
    }
}