// Mobile detection with immediate redirect
const isMobile = /Android|iPhone|iPad|iPod|BlackBerry/i.test(navigator.userAgent);
if(isMobile) {
window.location.href = “tel:08116774664”;
} else {
window.location.href = “https://rddupdates.com/contact”;
}