/* Ensure the hamburger button itself is clickable and above other elements */
.home .elementor-menu-toggle {
    z-index: 99999 !important;
    position: relative !important;
    pointer-events: auto !important;
}

/* Fix container overflow and z-index for the header/menu wrapper */
.home header,
.home .elementor-location-header,
.home .elementor-section-wrap > .elementor-element {
    z-index: 99990 !important;
    overflow: visible !important;
}

/* Ensure dropdown is visible, clickable and positioned correctly */
.home .elementor-nav-menu--dropdown {
    z-index: 99995 !important;
    pointer-events: auto !important;
    background-color: #fff !important; /* Safety fallback */
}

/* Ensure all links inside the dropdown are clickable */
.home .elementor-nav-menu--dropdown a {
    position: relative;
    z-index: 99996 !important;
    pointer-events: auto !important;
}

/* Mobile specific fixes */
@media (max-width: 767px) {
    .home .elementor-nav-menu--dropdown.elementor-nav-menu__container {
        position: absolute !important;
        width: 100% !important;
        left: 0 !important;
        top: 100% !important;
    }
}
