/* =========================
   FOOTER
========================= */

.site-footer {
    background-color: #d9dde1;
    padding: 40px 20px 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-brand {
    width: 300px;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    text-decoration: none;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: #3b82f6;
    border-radius: 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    font-weight: 700;
    margin-right: 10px;
}

.footer-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
}

.footer-description {
    font-size: 14px;
    color: #374151;
}

.footer-links {
    width: 200px;
    margin-bottom: 20px;
}

.footer-links h2 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 6px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 14px;
    color: #1d4ed8;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #374151;
}

/* Mobile */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-brand,
    .footer-links {
        width: 100%;
    }
}
