/* =========================================
   7. FOOTER – TOP / TRUSTPILOT / NIEUWSBRIEF / BOTTOM
========================================= */

.footer {
    background: var(--dark-blue);
    color: var(--white);
    margin-top: 40px;
    width: 100%;
    overflow-x: hidden;
}

/* =========================================
   FOOTER TOP
========================================= */

.footer-top {
    max-width: 1300px;
    margin: 0 auto;
    padding: 44px 16px 30px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 24px;
    font-size: 0.88rem;
}

.footer-center {
    text-align: center;
}

.footer-logo {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.footer-logo span {
    color: var(--light-green);
}

.footer-col h4 {
    margin: 0 0 8px;
    font-size: 0.95rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 4px;
}

.footer-col a {
    color: var(--white);
}

/* =========================================
   TRUSTPILOT
========================================= */

.footer-trustpilot {
    max-width: 1300px;
    margin: 0 auto;
    padding: 10px 16px 18px;
    display: grid;
    grid-template-columns: 1.3fr 2fr;
    gap: 18px;
    font-size: 0.85rem;
}

.trustpilot-left {
    display: flex;
    gap: 12px;
    align-items: center;
}

.trustpilot-logo {
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--white);
    color: #00b67a;
    font-weight: 700;
    font-size: 0.85rem;
}

.trustpilot-rating {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trustpilot-stars {
    color: #00b67a;
    letter-spacing: 2px;
}

.trustpilot-score {
    font-weight: 600;
}

.trustpilot-reviews {
    display: flex;
    gap: 10px;
}

.trustpilot-card {
    flex: 1;
    border-radius: 14px;
    padding: 10px 12px;
    background: rgba(255,255,255,0.06);
}

/* =========================================
   NIEUWSBRIEF
========================================= */

.footer-newsletter {
    max-width: 1300px;
    margin: 0 auto;
    padding: 12px 16px 18px;
    border-top: 1px solid rgba(255,255,255,0.16);
    border-bottom: 1px solid rgba(255,255,255,0.16);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    width: 100%;
    max-width: 420px;
}

.newsletter-form input {
    flex: 1;
    border-radius: 999px;
    border: none;
    padding: 6px 12px;
    font-size: 0.9rem;
}

.newsletter-form button {
    white-space: nowrap;
}

/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding: 10px 16px 16px;
    font-size: 0.8rem;
}

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 8px;
}

.payment-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    background: var(--white);
    color: var(--dark-blue);
    font-size: 1.85rem;
    border: 1px solid rgba(0,0,0,0.08);
    font-weight: 700;
}

.payment-pill i {
    font-size: 1.6rem;
}

.payment-pill i.fa-ideal { color: #CC0066; }
.payment-pill i.fa-cc-mastercard { color: #EB001B; }
.payment-pill i.fa-cc-visa { color: #1A1F71; }
.payment-pill i.fa-paypal { color: #003087; }
.payment-pill i.fa-bancontact { color: #0055A5; }

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    gap: 6px;
}

/* =========================================
   RESPONSIVE FIXES
========================================= */

@media (max-width: 900px) {
    .footer-trustpilot {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-newsletter {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    /* 🔒 DEFINITIEVE FIX VOOR LEKKEN */
    .newsletter-form {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .footer-bottom-row {
        flex-direction: column;
        align-items: flex-start;
    }
}
