📞 Call Us
/* Disable tel: links on desktop */
@media (min-width: 1024px) {
.header-nav a[href^="tel:"] {
pointer-events: none; /* makes it unclickable */
cursor: text; /* looks like plain text */
color: inherit; /* keeps your brand text colour */
text-decoration: none; /* no underline */
}
}
/* Make ALL tel: links act like plain text on desktop */
@media (min-width: 1024px) {
a[href^="tel:"],
a[href^="tel:"] * {
pointer-events: none !important; /* no clicks */
cursor: text !important; /* no hand cursor */
text-decoration: none !important; /* no underline */
}
}