document.addEventListener('DOMContentLoaded',function(){const dropdownTriggers=document.querySelectorAll('.elementor-nav-menu a[href="#"], .elementor-nav-menu a:not([href])');dropdownTriggers.forEach(function(anchor){anchor.setAttribute('role','button');anchor.setAttribute('aria-expanded','false');anchor.addEventListener('keydown',function(e){if(e.key===' '||e.code==='Space'){e.preventDefault();anchor.click();const expanded=anchor.getAttribute('aria-expanded')==='true';anchor.setAttribute('aria-expanded',!expanded)}});anchor.addEventListener('click',function(){const expanded=anchor.getAttribute('aria-expanded')==='true';anchor.setAttribute('aria-expanded',!expanded)})})})