Visit or Contact Us
📍 Calle Juan Lafy #11, Puerto Plata, República Dominicana
📞 (809) 249-7861 — WhatsApp available
✉️ info@zacariastours.com
🕐 Open 24/7 — we answer at any hour, every day.
/* --- Variables de Marca --- */
:root {
--zt-primary-orange: #F37021;
--zt-secondary-green: #008450;
--zt-text-dark: #222222;
--zt-text-light: #555555;
--zt-background-white: #ffffff;
--zt-background-offwhite: #f7f8fa;
}/* --- Estilos Base --- */
body {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
background-color: var(--zt-background-offwhite);
color: var(--zt-text-dark);
}
.zt-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}/* --- Sección Hero --- */
.zt-contact-hero {
/* Foto del parque central de Puerto Plata aplicada aquí */
background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('http://zacariastours.com/wp-content/uploads/2023/07/R-20.jpg');
background-size: cover;
background-position: center;
padding: 100px 20px;
text-align: center;
}
.zt-contact-hero h1 {
font-size: 48px;
font-weight: 800;
margin: 0;
/* === CAMBIO REALIZADO AQUÍ === */
color: var(--zt-background-white);
}
.zt-contact-hero p {
font-size: 18px;
margin-top: 10px;
opacity: 0.9;
color: var(--zt-background-white);
}/* --- Estructura de Contacto --- */
.zt-contact-layout {
padding: 80px 0;
}
.zt-contact-grid {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 50px;
background-color: var(--zt-background-white);
padding: 50px;
border-radius: 10px;
box-shadow: 0 8px 35px rgba(0,0,0,0.08);
}/* --- Columna Izquierda: Información de Contacto --- */
.zt-contact-info h2 { font-size: 28px; margin-top: 0; margin-bottom: 20px; color: var(--zt-text-dark); }
.zt-contact-info p { font-size: 16px; line-height: 1.7; color: var(--zt-text-light); margin-bottom: 30px; }
.zt-contact-item { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 25px; }
.zt-contact-item .icon { flex-shrink: 0; width: 45px; height: 45px; border-radius: 50%; background-color: rgba(0, 132, 80, 0.1); color: var(--zt-secondary-green); display: flex; align-items: center; justify-content: center; }
.zt-contact-item svg { width: 22px; height: 22px; }
.zt-contact-item a { color: var(--zt-secondary-green); text-decoration: none; font-weight: 600; }
.zt-contact-item a:hover { text-decoration: underline; }
.zt-contact-socials { margin-top: 40px; padding-top: 20px; border-top: 1px solid #e9ecef; }
.zt-contact-socials h4 { margin-bottom: 15px; font-size: 16px; color: var(--zt-text-light); }
.zt-contact-socials-links { display: flex; gap: 15px; }
.zt-contact-socials-links a { color: var(--zt-text-dark); transition: transform 0.2s; }
.zt-contact-socials-links a:hover { transform: scale(1.1); color: var(--zt-primary-orange); }
.zt-contact-socials-links svg { width: 24px; height: 24px; }
/* --- Columna Derecha: Formulario de Contacto --- */
.zt-contact-form h2 { font-size: 28px; margin-top: 0; margin-bottom: 25px; }
.zt-form-group { margin-bottom: 20px; }
.zt-form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 15px; }
.zt-form-group input, .zt-form-group select, .zt-form-group textarea { width: 100%; padding: 14px; border: 1px solid #ccc; border-radius: 5px; font-family: 'Poppins', sans-serif; font-size: 16px; transition: border-color 0.3s, box-shadow 0.3s; }
.zt-form-group input:focus, .zt-form-group select:focus, .zt-form-group textarea:focus { outline: none; border-color: var(--zt-primary-orange); box-shadow: 0 0 5px rgba(243, 112, 33, 0.5); }
.zt-form-button { width: 100%; padding: 16px; border: none; border-radius: 5px; background-color: var(--zt-secondary-green); color: var(--zt-background-white); font-size: 18px; font-weight: 700; cursor: pointer; transition: background-color 0.3s, transform 0.3s; display: flex; align-items: center; justify-content: center; gap: 10px; }
.zt-form-button:hover { background-color: #006a42; transform: translateY(-2px); }/* --- Diseño Responsivo --- */
@media (max-width: 992px) {
.zt-contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
.zt-contact-hero h1 { font-size: 36px; }
.zt-contact-hero p { font-size: 16px; }
.zt-contact-layout { padding: 40px 0; }
.zt-contact-grid { padding: 30px; }
}
document.addEventListener('DOMContentLoaded', function() {
const contactForm = document.getElementById('zt-contact-form');
if (contactForm) {
contactForm.addEventListener('submit', function(event) {
event.preventDefault();
const formData = new FormData(contactForm);
const name = formData.get('name');
const email = formData.get('email');
const subject = formData.get('subject');
const message = formData.get('message');
let whatsappMessage = `*New Contact Form Submission* 💬nn`;
whatsappMessage += `*Name:* ${name}n`;
whatsappMessage += `*Email:* ${email}n`;
whatsappMessage += `*Subject:* ${subject}nn`;
whatsappMessage += `*Message:*n${message}`;
const encodedMessage = encodeURIComponent(whatsappMessage);
const whatsappNumber = '18092497861';
const whatsappUrl = `https://wa.me/${whatsappNumber}?text=${encodedMessage}`;
window.open(whatsappUrl, '_blank');
setTimeout(() => {
window.location.href = 'https://zacariastours.com/thanks-you/';
}, 1000);
});
}
});
We'd Love to Hear From You
Questions? Inquiries? Ready to book? We're here to help.
Get in Touch
Fill out the form and our team will get back to you within 24 hours. For a faster response, feel free to contact us directly through any of the methods below.
Phone / WhatsApp
(809) 249-7861
(809) 249-7861
Email Address
info@zacariastours.com
info@zacariastours.com
Our Base
Puerto Plata, Dominican Republic
Puerto Plata, Dominican Republic
Send us a Message
General Question
Tour Booking Inquiry
Transfer Service Inquiry
Feedback or Suggestion
Other
