/* Modern Footer Styles */
footer.footer {
    background-color: #264143; /* Using a dark theme color from the project */
    color: #EDDCD9; /* Light text color */
    padding-top: 4rem;
    padding-bottom: 2rem;
    border-top: 4px solid #E99F4C; /* Accent color border */
}

footer.footer .footer-brand .footer-logo {
    max-height: 50px;
    margin-bottom: 1rem;
}

footer.footer .footer-brand h5 {
    color: #FFFFFF;
    font-weight: 700;
}

footer.footer .footer-brand p {
    color: #bdc3c7; /* Lighter secondary text */
    font-size: 0.9rem;
}

footer.footer h5.footer-heading {
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

footer.footer .footer-links ul {
    padding-left: 0;
    list-style: none;
}

footer.footer .footer-links li {
    margin-bottom: 0.75rem;
}

footer.footer .footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
}

footer.footer .footer-links a:hover {
    color: #FFFFFF;
    padding-left: 5px;
}

footer.footer .footer-contact li {
    color: #bdc3c7;
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

footer.footer .footer-contact i {
    margin-top: 5px;
    margin-right: 10px;
    color: #E99F4C; /* Accent color for icons */
}

footer.footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

footer.footer .footer-bottom p {
    color: #95a5a6;
    font-size: 0.85rem;
    margin: 0;
}

footer.footer .social-links-footer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

footer.footer .social-links-footer a:hover {
    background-color: #DE5499; /* Accent color on hover */
    color: #FFFFFF;
    transform: translateY(-3px);
}