/* Footer Contact Information High Contrast Fix */
/* Ensuring maximum readability and contrast for contact information */

/* Force footer background to be dark for maximum contrast */
footer,
.footer,
.site-footer {
    background-color: #1a1a1a !important;
    background: #1a1a1a !important;
}

/* Contact information styling with maximum contrast */
.contact-info {
    color: #ffffff !important;
    background: transparent !important;
    font-weight: 500 !important;
    line-height: 1.6 !important;
    margin-bottom: 8px !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Footer section styling */
.footer-section {
    background: transparent !important;
}

.footer-section h5,
.footer-section h6 {
    color: #ffffff !important;
    margin-bottom: 20px !important;
    font-weight: 600 !important;
}

.footer-section p {
    color: #f0f0f0 !important;
    line-height: 1.6 !important;
    margin-bottom: 10px !important;
}

.footer-section small {
    color: #e0e0e0 !important;
}

/* Links in footer with high contrast */
.footer-section a {
    color: #93c5fd !important;
    text-decoration: underline !important;
    transition: color 0.3s ease !important;
}

.footer-section a:hover {
    color: #dbeafe !important;
    text-decoration: underline !important;
}

.footer-section a:focus {
    outline: 2px solid #93c5fd !important;
    outline-offset: 2px !important;
    color: #dbeafe !important;
}

/* Force visibility for all footer elements */
footer *,
.footer *,
.site-footer * {
    opacity: 1 !important;
    visibility: visible !important;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .contact-info {
        color: #ffffff !important;
        background: #000000 !important;
        border: 1px solid #ffffff !important;
        padding: 5px !important;
    }
    
    footer,
    .footer,
    .site-footer {
        background-color: #000000 !important;
    }
}

/* Mobile responsive contact info */
@media (max-width: 768px) {
    .contact-info {
        font-size: 14px !important;
        padding: 3px 0 !important;
    }
    
    .footer-section {
        margin-bottom: 20px !important;
    }
}

/* Print styles */
@media print {
    .contact-info {
        color: #000000 !important;
        background: #ffffff !important;
    }
}
