/* Footer Contact Info Fixes */

/* Fix phone and email text color to be white instead of gray */
.footer1 .single-footer-items .contact-box .pera a,
.footer1 .single-footer-items .contact-box .pera p {
    color: #ffffff !important;
    opacity: 0.9;
}

/* Ensure white color on hover */
.footer1 .single-footer-items .contact-box:hover .pera a,
.footer1 .single-footer-items .contact-box:hover .pera p {
    color: #ffffff !important;
    opacity: 1;
}

/* Fix email icon visibility at all screen widths */
.footer1 .single-footer-items .contact-box .icon {
    min-width: 30px;
    flex-shrink: 0;
}

.footer1 .single-footer-items .contact-box .icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

/* Ensure contact boxes don't collapse at medium screen sizes */
@media (min-width: 992px) and (max-width: 1400px) {
    .footer1 .single-footer-items .contact-box {
        flex-wrap: nowrap;
        gap: 10px;
    }
    
    .footer1 .single-footer-items .contact-box .icon {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Additional responsive fixes for contact info */
@media (max-width: 1400px) {
    .footer1 .single-footer-items h2 {
        font-size: 18px;
    }
    
    .footer1 .single-footer-items .contact-box .pera a,
    .footer1 .single-footer-items .contact-box .pera p {
        font-size: 14px;
        line-height: 22px;
    }
}