/* Footer Styles */

.footer {
    background-color: #f8f9fa;
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(0, 0, 0, 0.1),
        transparent
    );
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 32px;
    width: auto;
    margin-right: 0.5rem;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.footer-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.footer-nav-column {
    min-width: 160px;
}

.footer-heading {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 1.25rem;
    font-weight: 600;
}

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

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

.footer-links a {
    color: var(--text-light);
    transition: color var(--transition-fast);
    font-size: 0.9375rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.copyright {
    color: var(--text-light);
    font-size: 0.875rem;
}
/* Media Queries */
@media screen and (max-width: 992px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-navigation {
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-navigation {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-nav-column {
        min-width: auto;
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
