/* ═══════════════════════════════════════════════
   MAIN FOOTER  —  all classes prefixed with mf-
   No global selectors. No class collisions.
   ═══════════════════════════════════════════════ */

.mf-footer {
    background: #0d0d0d;
    color: rgba(255, 255, 255, .85);
    padding: 32px 0 0;
    font-size: 14px;
}

.mf-inner {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

/* Grid */
.mf-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
    gap: 40px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

/* Brand column */
.mf-brand-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mf-logo {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.mf-logo-img {
    height: 34px;
    width: auto;
    object-fit: contain;
    display: block;
}

.mf-tagline {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .75);
    margin: 0;
    max-width: 260px;
}

/* Socials */
.mf-socials {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

.mf-social {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, .15);
    cursor: pointer;
    text-decoration: none;
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.mf-social:hover {
    transform: translateY(-3px);
}

.mf-social img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
}

.mf-social--facebook {
    border-color: rgba(24, 119, 242, .25);
}

.mf-social--facebook:hover {
    background: rgba(24, 119, 242, .18);
    border-color: rgba(24, 119, 242, .5);
}

.mf-social--instagram {
    border-color: rgba(225, 48, 108, .25);
}

.mf-social--instagram:hover {
    background: rgba(225, 48, 108, .16);
    border-color: rgba(225, 48, 108, .5);
}

.mf-social--x {
    border-color: rgba(255, 255, 255, .2);
}

.mf-social--x:hover {
    background: rgba(255, 255, 255, .15);
    border-color: rgba(255, 255, 255, .45);
}

.mf-social--x img {
    width: 26px;
    height: 26px;
}

/* Link columns */
.mf-col h4 {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin: 0 0 16px;
}

.mf-link-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, .8);
    cursor: pointer;
    transition: color .2s ease;
    text-decoration: none;
}

.mf-link-row:hover {
    color: rgba(255, 255, 255, .95);
}

.mf-link-icon {
    font-size: 10px;
    color: var(--primary, #e84d14);
    flex-shrink: 0;
}

/* Bottom bar */
.mf-bottom {
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.mf-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.mf-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ══════════════════════
   RESPONSIVE
   ══════════════════════ */
@media (max-width: 1024px) {
    .mf-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .mf-brand-col {
        grid-column: 1 / -1;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        align-items: flex-start;
    }

    .mf-tagline {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .mf-footer {
        padding: 24px 0 0;
    }

    .mf-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px 20px;
    }

    .mf-brand-col {
        grid-column: 1 / -1;
        flex-direction: column;
        gap: 12px;
    }

    .mf-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 375px) {
    .mf-grid {
        grid-template-columns: 1fr;
    }

    .mf-inner {
        width: 94%;
    }
}