/* ========================================================
   PURE LIGHT FOOTER STYLING (#f5f5f5 BACKGROUND)
   ======================================================== */

.site-footer {
    background-color: #f5f5f5 !important;
    color: #222222;
    border-top: 1px solid #E2E8F0;
}

/* Top Red Border Accent */
.footer-top-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ed2227 0%, #990B0F 100%);
}

.text-red {
    color: #ed2227 !important;
}

/* Brand Logo */
.footer-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.footer-about-text {
    font-size: 14px;
    color: #444444;
    line-height: 1.7;
}

/* Social Buttons (Black Background with White Icons) */
.social-icon-btn {
    width: 38px;
    height: 38px;
    background-color: #000000 !important; /* Pure Black Circle */
    color: #FFFFFF !important;            /* White Icon */
    border: 1px solid #000000;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.social-icon-btn:hover {
    background-color: #ed2227 !important; /* Red on Hover */
    border-color: #ed2227 !important;
    color: #FFFFFF !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(237, 34, 39, 0.35);
}

/* Widget Titles */
.widget-title {
    font-size: 18px;
    font-weight: 700;
    position: relative;
    padding-bottom: 8px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #ed2227;
}

/* Footer Links */
.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
}

.footer-links-list a:hover {
    color: #ed2227;
    padding-left: 5px;
}

.font-10 {
    font-size: 8px;
}

/* Contact Info Section */
.contact-link {
    color: #111111;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.25s ease;
}

.contact-link:hover {
    color: #ed2227;
}

.contact-text {
    font-size: 13.5px;
    line-height: 1.5;
    font-weight: 500;
}

/* Bottom Copyright Bar */
.copyright-text {
    font-size: 13.5px;
}

.footer-bottom-links a {
    color: #333333;
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-bottom-links a:hover {
    color: #ed2227;
}

/* Responsive Fixes */
@media (max-width: 767.98px) {
    .site-footer {
        text-align: left;
    }
}