We're Here to Help

Get In Touch

Questions about a unit? Ready to book? We reply within 2 hours.

Let's Talk
Whether you want to enquire about availability, get a custom quote, or just have questions — we're here daily 9am to 11pm.
Phone
Office
Chat on WhatsApp Now
Send Us a Message
Tell us what you're looking for and we'll get back to you shortly.
Working Hours
Daily 9am – 11pm
WhatsApp Response
Within 30 minutes
Booking Confirmation
Within 2 hours
function submitContact(){ var form = document.getElementById('contact-form'); var data = new FormData(form); var btn = form.querySelector('button[type="submit"]') || document.querySelector('#contact-form ~ button') || document.querySelector('.contact-submit-btn'); if(btn){ btn.disabled=true; btn.textContent='Sending...'; } fetch('https://formspree.io/f/REPLACE_WITH_FORMSPREE_ID', { method:'POST', body:data, headers:{'Accept':'application/json'} }).then(function(r){ if(r.ok){ var msg = document.getElementById('contact-success-msg'); if(msg) msg.style.display='block'; else alert('Message sent! We\'ll get back to you soon.'); form.reset(); if(btn){ btn.textContent='Message Sent'; } } else { if(btn){ btn.disabled=false; btn.textContent='Send Message'; } alert('Something went wrong. Email us at info@liv-vue.com'); } }).catch(function(){ if(btn){ btn.disabled=false; btn.textContent='Send Message'; } alert('Network error. Email us at info@liv-vue.com'); }); }