document.addEventListener("DOMContentLoaded", function() {
const form = document.querySelector('.et_pb_contact_form');
if (form) {
form.addEventListener('submit', function(e) {
const honeypot = document.querySelector('input[name="website"]');
if (honeypot && honeypot.value !== '') {
e.preventDefault();
}
});
}
});