



























<script>
if (!window.__mcClickTrackBound) {
window.__mcClickTrackBound = true;
document.addEventListener('click', function (e) {
var a = e.target.closest('a[href^="tel:"], a[href^="sms:"]');
if (!a || typeof gtag !== 'function') return;
var isCall = a.getAttribute('href').indexOf('tel:') === 0;
gtag('event', isCall ? 'click_to_call' : 'click_to_text', {
link_url: a.getAttribute('href'),
link_text: (a.textContent || '').trim().slice(0, 100),
page_path: location.pathname
});
}, true);
}
</script>