.wf-footer {
    padding: 100px 0 40px;
    background: var(--color-dark);
    color: var(--color-white);
}

.wf-footer-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.wf-footer-brand h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.wf-footer-brand p {
    opacity: 0.7;
    line-height: 1.6;
}

.wf-footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.wf-footer-links h4 {
    font-size: 16px;
    margin-bottom: 16px;
    opacity: 0.8;
    font-weight: 700;
}

.wf-footer-links a {
    display: block;
    text-decoration: none;
    color: var(--color-white);
    opacity: 0.6;
    margin-bottom: 10px;
    transition: opacity .3s ease;
    font-weight: 300;
}

.wf-footer-links a:hover {
    opacity: 1;
}

.wf-footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.wf-footer-social a {
    margin-left: 20px;
    text-decoration: none;
    color: var(--color-white);
    opacity: 0.6;
    transition: opacity .3s ease;
}

.wf-footer-social a:hover {
    opacity: 1;
}

@media (max-width: 992px) {
    .wf-footer-container {
        grid-template-columns: 1fr;
    }

    .wf-footer-links {
        grid-template-columns: 1fr 1fr;
    }

    .wf-footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}