'Content-Type': 'application/json'
},
body: JSON.stringify(formData)
});
const result = await response.json();
if (result.success) {
alert(result.message);
contactForm.reset();
} else {
alert(result.message);
}
} catch (error) {
alert('Sorry, there was an error sending your message. Please try again or email us directly at info@hadiati.ae');
} finally {
submitBtn.textContent = originalText;
submitBtn.disabled = false;
}
});
}