/* ============================================
   FOOTER COLOR #6c757d
   Change footer color to #6c757d
   ============================================ */

/* Footer - #6c757d color scheme */
.footer {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: #6c757d !important;
    color: #ffffff !important;
    padding: 3rem 0 !important;
    text-align: center !important;
    transform: none !important;
    mask: none !important;
    filter: none !important;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -o-transform: none !important;
}

/* Footer sections - White text for #6c757d background */
.footer-section {
    color: #ffffff !important;
    margin-bottom: 2rem !important;
}

/* Footer section headers - White text */
.footer-section h4,
.footer-section h5 {
    color: #ffffff !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
}

/* Footer text - White text */
.footer p,
.footer span {
    color: #ffffff !important;
    line-height: 1.6 !important;
}

/* Footer links - White text with blue hover */
.footer-link {
    color: #ffffff !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    display: block !important;
    padding: 0.5rem 0 !important;
}

/* Footer links hover - Blue color */
.footer-link:hover {
    color: #3498db !important;
    text-decoration: underline !important;
}

/* Footer links active - Blue color */
.footer-link.active {
    color: #3498db !important;
    text-decoration: underline !important;
}

/* Footer contact info - White text */
.footer-contact .contact-item {
    color: #ffffff !important;
    margin-bottom: 1rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

/* Footer contact links - White text */
.footer-contact .contact-link {
    color: #ffffff !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

/* Footer contact links hover - Blue color */
.footer-contact .contact-link:hover {
    color: #3498db !important;
    text-decoration: underline !important;
}

/* Footer social links - White text */
.footer-social .social-link {
    color: #ffffff !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
    margin: 0 0.5rem !important;
}

/* Footer social links hover - Blue background */
.footer-social .social-link:hover {
    color: #ffffff !important;
    background: #3498db !important;
    transform: translateY(-2px) !important;
}

/* Footer copyright - White text */
.footer-bottom {
    color: #ffffff !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding-top: 2rem !important;
    margin-top: 2rem !important;
}

/* Footer logo - Keep original styling */
.footer-logo-img {
    max-width: 200px !important;
    height: auto !important;
    margin-bottom: 1rem !important;
}

/* Footer content layout */
.footer-content {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 2rem !important;
    margin-bottom: 2rem !important;
    align-items: start !important;
}

/* Mobile footer adjustments */
@media (max-width: 768px) {
    .footer {
        background: #6c757d !important;
        color: #ffffff !important;
        padding: 2rem 0 !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        text-align: center !important;
    }
    
    .footer-section {
        margin-bottom: 1.5rem !important;
    }
    
    .footer-contact .contact-item {
        justify-content: center !important;
    }
    
    .footer-social .social-link {
        margin: 0 0.25rem !important;
    }
}
