
/* ============================
            FOOTER
   ============================ */

.site-footer {
    background: #0b1735;
    color: white;
    padding: 80px 20px 40px;
    margin-top: 120px;
}

.footer-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

.footer-col h3, .footer-col h4 {
    margin-bottom: 14px;
    font-weight: 700;
}

.footer-col p {
    opacity: 0.75;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #d0d8ff;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    margin-top: 50px;
    text-align: center;
    opacity: 0.7;
}
/* ================================
   FOOTER BOROUGH COLUMNS (MOBILE FIX)
================================ */

/* Default: desktop */
.footer-boroughs {
    column-count: 3;
    column-gap: 20px;
}

/* Tablets */
@media (max-width: 900px) {
    .footer-boroughs {
        column-count: 2;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .footer-boroughs {
        column-count: 2;      /* KEY FIX */
        column-gap: 16px;
    }

    .footer-boroughs li {
        font-size: 14px;
        margin-bottom: 6px;
    }
}