/* Base Footer Structure */
.footer-wrapper {
    color: var(--footer-text);
    background: var(--footer-bg) !important;
}

.footer-content {
    max-width: 100%;
}

.footer-section {
    margin-bottom: 1.5rem;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 1rem;
}

.justify-content-between {
    -ms-flex-pack: justify!important;
    justify-content: space-between !important;
}

.footer-pages {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-pages li {
    display: inline-block;
    margin-right: 1.5rem;
}

.footer-pages li:last-child {
    margin-right: 0;
}

.footer-pages a {
    text-decoration: none;
    transition: color 0.3s ease;
    color: var(--footer-link);
}

.footer-pages a:hover {
    color: var(--footer-link-hover);
}

.rights {
    display: block;
}

.footer-description {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.social-links {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.0rem;
}

.social-links li {
    display: inline-block;
    margin-right: 1rem;
}

.social-links li:last-child {
    margin-right: 0;
}

.social-links a {
    text-decoration: none;
    transition: color 0.3s ease;
    color: var(--footer-link);
}

.social-links a:hover {
    color: var(--footer-link-hover);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 768px) {
    .footer-section {
        text-align: center;
    }

    .social-links {
        text-align: center;
    }

    .footer-pages li,
    .social-links li {
        margin: 0 0.5rem;
    }
}
