Book an Appointment
If you're interested in working with us, complete the form with a few details about your project. We'll review your message and get back to you within 48 hours.
function checkZip(zip) {
const container = document.getElementById('booking-container');
const status = document.getElementById('status-msg');
// Define your zones
const zones = {
"94027": "https://square.site/book/YOUR_ATHERTON_LINK", // Thursday
"95118": "https://square.site/book/YOUR_SAN_JOSE_LINK", // Monday
"95120": "https://square.site/book/YOUR_SAN_JOSE_LINK" // Monday
};
if (zones[zip]) {
status.innerHTML = "ESTATE VERIFIED: Service available for " + zip;
container.innerHTML = `<a href="${zones[zip]}" style="display:inline-block; margin-top:20px; padding:15px 30px; background:#8B0000; color:#fff; text-decoration:none; font-weight:bold;">[ RESERVE APPOINTMENT ]</a>`;
} else {
status.innerHTML = "SATELLITE SYNC COMPLETE: " + zip;
container.innerHTML = "<p>Your area is currently outside our primary zones. Please contact us for a custom quote.</p>";
}
}

