/* Footer Styling to match Navbar */
.footer-area,
.footer-content-area {
    background-color: rgb(215, 223, 239) !important;
    background: rgb(215, 223, 239) !important;
    /* Brute force override */
    background-image: none !important;
    color: #333 !important;
    margin-top: 0 !important;
    /* Fix excessive margin */
}

/* Footer Headers */
.contact_info h5 {
    color: #333 !important;
    font-weight: 600;
}

/* Footer Links */
.footer-nav li a {
    color: #333 !important;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-nav li a:hover {
    color: #4834d4 !important;
    /* Brand color on hover */
}

/* Footer Text Paragraphs */
.copywrite_text p,
.contact_info p {
    color: #555 !important;
    font-weight: 500;
}

/* Social Icons */
.footer-social-info a {
    color: #333 !important;
    font-size: 18px;
    transition: color 0.3s;
}

.footer-social-info a:hover {
    color: #4834d4 !important;
}

/* Copyright Text */
.footer-content-area .row.mt-5 p {
    color: #555 !important;
}

/* Remove brightness filter from logo if present (redundant if removed in PHP but good for safety) */
.footer-logo img {
    filter: none !important;
}

/* Mobile Optimizations */
@media (max-width: 767px) {
    .footer-area {
        padding-top: 50px !important;
        padding-bottom: 20px !important;
        text-align: center;
        /* Center align on mobile */
    }

    .contact_info {
        text-align: center !important;
        margin-top: 30px;
    }

    .footer-social-info {
        justify-content: center;
        display: flex;
        gap: 15px;
    }

    .footer-social-info a {
        margin-right: 0 !important;
    }
}