document.addEventListener("DOMContentLoaded", function () { const form = document.getElementById("movingForm"); if (!form) return;form.addEventListener("submit", function (event) { event.preventDefault(); // Impede o redirecionamentolet formData = new FormData(form);fetch("https://www.premiumremovals.com.au/process_form.php", { method: "POST", body: formData }) .then(response => response.text()) .then(data => { document.getElementById("movingForm").style.display = "none"; document.getElementById("formStep2").style.display = "block"; }) .catch(error => { alert("Error connecting to the server. Please try again."); }); }); }); document.addEventListener("DOMContentLoaded", function () { const form = document.getElementById("movingForm"); if (!form) return;form.addEventListener("submit", function (event) { event.preventDefault(); // Impede o redirecionamentolet formData = new FormData(form);fetch("https://www.premiumremovals.com.au/process_form.php", { method: "POST", body: formData }) .then(response => response.text()) .then(data => { document.getElementById("movingForm").style.display = "none"; document.getElementById("formStep2").style.display = "block"; }) .catch(error => { alert("Error connecting to the server. Please try again."); }); }); }); /* Estilização do formulário */ #movingForm { max-width: 400px; background: #f4f4f4; padding: 20px; border-radius: 8px; box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); font-family: Arial, sans-serif; margin: 0 auto; }/* Estilização dos campos */ #movingForm label { display: block; font-weight: bold; margin: 10px 0 5px; }#movingForm input, #movingForm textarea { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 5px; font-size: 14px; }/* Botão */ #movingForm button { width: 100%; background-color: #001c38; color: white; padding: 10px; border: none; border-radius: 5px; font-size: 16px; cursor: pointer; margin-top: 10px; }#movingForm button:hover { background-color: #003366; }/* Mensagem de Thank You */ #formStep2 { max-width: 400px; text-align: center; background: #e0f7fa; padding: 20px; border-radius: 8px; box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); font-family: Arial, sans-serif; margin: 0 auto; }