footer.footer {
    background-color: var(--secondary-dark) !important;
    color: #fff;
    font-family: var(--plus-jakarta-sans);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-contact li {
    line-height: 1.6;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icon:hover {
    background-color: #fff;
    color: var(--secondary-dark);
    transform: translateY(-3px);
}

.footer-legal-link {
    transition: all 0.3s ease;
}

.footer-legal-link:hover {
    color: #fff !important;
    opacity: 1 !important;
}