/* Mobile Menu Styles */
@media (max-width: 767px) {

    /* Hide menu by default on mobile */
    .gh-head-menu,
    .gh-head-menu-custom {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 3999999;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 50px 0;
        background: var(--dark-blue);
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        width: 100%;
        max-width: 400px;
    }

    /* Show menu when active */
    .gh-head-menu.is-active,
    .gh-head-menu-custom.is-active {
        transform: translateX(0);
    }

    /* Stack menu items vertically on mobile */
    .gh-head-menu .nav,
    .gh-head-menu-custom .nav {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .gh-head-menu .nav li,
    .gh-head-menu-custom .nav li {
        width: 100%;
        text-align: center;
    }

    .gh-head-menu .nav a,
    .gh-head-menu-custom .nav a {
        display: block;
        padding: 15px 20px;
        font-size: 18px;
    }
}

/* Desktop - ensure menu is always visible */
@media (min-width: 768px) {

    .gh-head-menu,
    .gh-head-menu-custom {
        position: relative;
        transform: none !important;
        background: transparent;
        padding: 0;
        width: auto;
        max-width: none;
    }

    .gh-head-menu .nav,
    .gh-head-menu-custom .nav {
        flex-direction: row;
    }
}