/* Fix footer link hover colors for better visibility */

/* Footer quick links hover - use a lighter purple/blue color */
.single-footer-widget .footer-quick-links li a:hover {
    color: #7B68EE !important;  /* Medium Slate Blue - much more visible */
    text-decoration: underline !important;
    transition: 0.4s;
}

/* Footer contact info links hover */
.single-footer-widget .footer-info-contact span a:hover {
    color: #7B68EE !important;
    transition: 0.4s;
}

/* Footer social links hover */
.single-footer-widget .footer-social li a:hover {
    background-color: #7B68EE !important;
    border-color: #7B68EE !important;
    color: #ffffff !important;
    transition: 0.4s;
}

/* Newsletter subscribe button hover */
.single-footer-widget .newsletter-form button:hover {
    background-color: #7B68EE !important;
    border-color: #7B68EE !important;
}

/* Footer bottom links hover */
.footer-bottom .footer-bottom-list li a:hover {
    color: #7B68EE !important;
    text-decoration: underline;
}

/* Alternative lighter color option - uncomment to use */
/*
.single-footer-widget .footer-quick-links li a:hover,
.single-footer-widget .footer-info-contact span a:hover,
.footer-bottom .footer-bottom-list li a:hover {
    color: #9370DB !important;  
}
*/