/* ============================================================
   Dubai Property Lab — Footer (M12)
   Source: Module Library M12
   ============================================================ */

.footer {
    background: var(--slate);
    border-top: 1px solid var(--border);
    padding: var(--space-7) var(--space-5);
}

.footer__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-5);
}

.footer__tagline {
    font-size: 13px;
    color: var(--text-secondary);
}

.footer__links {
    display: flex;
    align-items: center;
    gap: var(--space-5);
}

.footer__link {
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-default);
}

.footer__link:hover {
    color: var(--signal);
}

.footer__copyright {
    font-size: 11px;
    color: var(--text-muted);
    width: 100%;
    text-align: center;
    margin-top: var(--space-4);
}

/* --- Responsive --- */

@media (max-width: 767px) {
    .footer__inner {
        flex-direction: column;
        text-align: center;
    }

    .footer__links {
        flex-wrap: wrap;
        justify-content: center;
    }
}
