/* =====================================================================
   Footer  (partials/footer/style-1)
   White rounded card floating on a full-bleed background image.
   4 columns: brand + social, two menu columns, contact. Bottom copyright.
   ===================================================================== */

.zaf-ft {
    --zf-green: #1c4a2e;
    --zf-green-dark: #143a23;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 20px 70px;
}

.zaf-ft-card {
    max-width: 1400px;
    margin: 0 auto;
    background: #fff;
    border-radius: 28px;
    padding: 54px 56px 28px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

/* ── Grid ── */
.zaf-ft-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1.5fr;
    gap: 40px;
}

/* ── Brand column ── */
.zaf-ft-logo {
    display: inline-block;
    margin-bottom: 18px;
}

.zaf-ft-logo img {
    max-height: 66px;
    width: auto;
    display: block;
}

.zaf-ft-tagline {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #1a1a1a;
    margin: 0 0 14px;
}

.zaf-ft-about {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-size: 14.5px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0 0 24px;
    max-width: 340px;
}

.zaf-ft-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.zaf-ft-social a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--zf-green);
    background: #fff;
    border: 1px solid #ececec;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.zaf-ft-social a:hover {
    background: var(--zf-green);
    border-color: var(--zf-green);
    color: #fff;
    transform: translateY(-3px);
}

/* ── Column heading ── */
.zaf-ft-heading {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--zf-green);
    margin: 6px 0 22px;
}

/* ── Menu link columns ── */
.zaf-ft-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zaf-ft-menu li {
    margin: 0 0 16px;
}

.zaf-ft-menu li a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-size: 15px;
    color: #4b5563;
    text-decoration: none;
    transition: color 0.2s ease, gap 0.2s ease;
}

.zaf-ft-menu li a::before {
    content: "\203A"; /* › */
    color: var(--zf-green);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.zaf-ft-menu li a:hover {
    color: var(--zf-green);
    gap: 12px;
}

/* ── Contact column ── */
.zaf-ft-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
    text-decoration: none;
}

.zaf-ft-contact-ic {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f1f3f1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--zf-green);
    transition: background 0.25s ease, color 0.25s ease;
}

.zaf-ft-contact-item:hover .zaf-ft-contact-ic {
    background: var(--zf-green);
    color: #fff;
}

.zaf-ft-contact-txt {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

.zaf-ft-contact-txt strong {
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.zaf-ft-contact-txt small {
    color: #8a8a8a;
    font-size: 13px;
}

/* ── Divider + bottom ── */
.zaf-ft-divider {
    border: 0;
    height: 1px;
    background: #ececec;
    margin: 34px 0 22px;
}

.zaf-ft-copy {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.zaf-ft-copy a {
    color: var(--zf-green);
    font-weight: 600;
    text-decoration: underline;
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .zaf-ft-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .zaf-ft-brand {
        grid-column: 1 / -1;
    }
    .zaf-ft-card {
        padding: 40px 32px 24px;
    }
}

@media (max-width: 576px) {
    .zaf-ft {
        padding: 50px 14px 50px;
    }
    .zaf-ft-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .zaf-ft-card {
        padding: 32px 24px 20px;
        border-radius: 20px;
    }
    .zaf-ft-about {
        max-width: none;
    }
}
