/* 
* Footer Z-Index Fix
* Ensures footer links are clickable AND floating buttons stay visible
*/

/* Footer has high z-index but below floating buttons */
.site-footer,
.tiger-footer {
    position: relative;
    z-index: 100 !important;
}

/* All footer content */
.site-footer *,
.tiger-footer * {
    position: relative;
    z-index: 100;
}

/* Floating buttons stay on top of everything */
.floating-contact-buttons {
    z-index: 10000 !important;
    position: fixed !important;
}

/* Ensure ALL footer links and elements are clickable */
.footer-links,
.footer-links a,
.footer-bottom,
.footer-bottom a,
.footer-social,
.footer-social a,
.social-links,
.social-links a,
.footer-column,
.footer-column a,
.footer-grid,
.footer-grid a,
footer a,
footer button {
    position: relative !important;
    z-index: 101 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}

/* Remove any blocking overlays */
.site-footer::before,
.tiger-footer::before,
.site-footer::after,
.tiger-footer::after {
    pointer-events: none !important;
}
