eXp Realty

Our team offers expert guidance and personalized service to make buying, selling, or investing in property smooth and stress-free. With deep market knowledge and a commitment to clear communication, we focus on achieving your real estate goals efficiently and effectively.

  • -

    Houses for Sale

  • -

    Total Listing

  • -

    Average Sale Price

  • -

    Average Listing Price

};function runPageScript(){ document.addEventListener('DOMContentLoaded', () => { // Lead Capture Form const form = document.getElementById('lead-capture'); form.addEventListener('submit', async (e) => { e.preventDefault(); const formData = new FormData(form); // Send to your email/CRM try { const response = await fetch('/api/leads', { method: 'POST', body: formData }); if(response.ok) { showSuccess(); } } catch(err) { showError(); } }); // Save Search Button const saveBtn = document.getElementById('save-search'); saveBtn.addEventListener('click', () => { if(!isLoggedIn()) { showLoginModal(); } else { saveCurrentSearch(); } }); // Property Updates Counter setInterval(() => { const counter = document.getElementById('update-counter'); const time = new Date().toLocaleTimeString(); counter.textContent = `Last updated: ${time}`; }, 900000); // 15 mins }); };