/* MOBILE CONTACT LINK FIX */
/* Remove blur, backdrop-filter, opacity, and filter effects on mobile only */
@media (max-width: 1024px) {
    /* Fix Contact link in mobile navigation */
    .header-nav .navbar-nav li a[href="contact-us.html"],
    .header-nav .navbar-nav li a[title="Contact Us"],
    .btn[href="contact-us.html"] {
        font-weight: 700 !important;
        opacity: 1 !important;
        filter: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        text-shadow: none !important;
        transform: none !important;
        -webkit-font-smoothing: antialiased !important;
        -moz-osx-font-smoothing: grayscale !important;
        color: #fff !important;
        text-decoration: none !important;
    }
    
    /* Ensure sharp rendering on mobile */
    .header-nav .navbar-nav li a[href="contact-us.html"]:hover,
    .header-nav .navbar-nav li a[title="Contact Us"]:hover,
    .btn[href="contact-us.html"]:hover {
        font-weight: 700 !important;
        opacity: 1 !important;
        filter: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        text-shadow: none !important;
        transform: none !important;
        -webkit-font-smoothing: antialiased !important;
        -moz-osx-font-smoothing: grayscale !important;
    }
}
