document.getElementById('contact-form').addEventListener('submit', function(event) { event.preventDefault(); // Form data const name = document.getElementById('name').value; const email = document.getElementById('email').value; const phone = document.getElementById('phone').value; const services = Array.from(document.querySelectorAll('input[name="service"]:checked')).map(e => e.value); const properties = Array.from(document.querySelectorAll('input[name="property"]:checked')).map(e => e.value); const message = document.getElementById('message').value; // Email content const emailContent = ` Name: ${name} Email: ${email} Phone: ${phone} Services Needed: ${services.join(', ')} Type of Property: ${properties.join(', ')} Message: ${message} `; // Email sending logic window.location.href = `mailto:wade@coatingworx.co.za?subject=Obligation Free Quote&body=${encodeURIComponent(emailContent)}`; alert('Thank you for contacting us! We will get back to you soon.'); });