Terms & Conditions

By booking a service with Homb, you agree to the following terms:

Pricing: All prices displayed on this website include VAT.

For full terms including our privacy policy and insurance coverage, please contact us or view our policies online.

// Hamburger menu toggle functionality const hamburger = document.getElementById('hamburger'); const navMenu = document.getElementById('nav-menu'); hamburger.addEventListener('click', () => { hamburger.classList.toggle('active'); navMenu.classList.toggle('active'); }); // Close menu when a link is clicked const navLinks = navMenu.querySelectorAll('a'); navLinks.forEach(link => { link.addEventListener('click', () => { hamburger.classList.remove('active'); navMenu.classList.remove('active'); }); }); style="position:fixed;right:18px;bottom:18px;z-index:9999;background:#25D366;color:#fff; width:56px;height:56px;border-radius:50%;display:flex;align-items:center;justify-content:center; text-decoration:none;box-shadow:0 6px 16px rgba(0,0,0,.2);">