/* ==========================================================================
   Footer Trust Strip
   ========================================================================== */

.footer-trust {
    background: var(--color-primary);
    padding: 1.25rem 0;
}
.footer-trust__grid {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
}
.footer-trust__item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-white);
}
.footer-trust__item i {
    color: var(--color-secondary);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .footer-trust__grid { flex-wrap: wrap; justify-content: center; }
    .footer-trust__item { font-size: 0.8rem; }
}


/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: var(--color-white);
    padding: 3.5rem 0 0;
    position: relative;
    overflow: hidden;
}

/* Wave decoratie onderaan */
.footer-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 30px;
    line-height: 0;
    opacity: 0.06;
    animation: footerWave 12s linear infinite;
}
@keyframes footerWave {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--color-border);
}

/* Brand kolom */
.footer-brand {}

.footer-logo img {
    height: 45px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-logo-text {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.15;
    margin-bottom: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-logo-text:hover { color: var(--color-dark); }

.footer-desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Contact cards */
.footer-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-contact-card {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-dark);
    background: var(--color-light);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    width: fit-content;
}
.footer-contact-card i {
    color: var(--color-primary);
    font-size: 0.85rem;
    width: 16px;
    text-align: center;
}
.footer-contact-card:hover {
    background: var(--color-primary);
    color: var(--color-white);
}
.footer-contact-card:hover i { color: var(--color-secondary); }

/* Kolommen */
.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-dark);
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg width='36' height='10' viewBox='0 0 36 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,2 C6,0 12,0 18,2 C24,4 30,4 36,2' stroke='%23f1c400' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3Cpath d='M0,7 C6,5 12,5 18,7 C24,9 30,9 36,7' stroke='%23f1c400' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}
.footer-col ul li a {
    font-size: 0.9rem;
    color: var(--color-text-light);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    padding-left: 0;
}
.footer-col ul li a:hover {
    color: var(--color-primary);
    padding-left: 6px;
}

/* Locatie & uren */
.footer-address,
.footer-hours,
.footer-kvk {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}
.footer-address i,
.footer-hours i,
.footer-kvk i {
    color: var(--color-primary);
    margin-top: 3px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}
.footer-address div,
.footer-hours div,
.footer-kvk div {
    display: flex;
    flex-direction: column;
}
.footer-address strong,
.footer-hours strong,
.footer-kvk strong {
    font-size: 0.85rem;
    color: var(--color-dark);
    margin-bottom: 2px;
}
.footer-address span,
.footer-hours span,
.footer-kvk span,
.footer-address a {
    color: var(--color-text-light);
    font-size: 0.85rem;
}
.footer-address a:hover { color: var(--color-primary); }


/* ==========================================================================
   Sub-footer
   ========================================================================== */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    font-size: 0.8rem;
    color: var(--color-text-light);
    position: relative;
}
.footer-bottom a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-bottom a:hover { color: var(--color-primary); }

/* Back to top */
.footer-top-btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(162,26,40,0.2);
}
.footer-top-btn:hover {
    background: var(--color-dark);
    color: var(--color-white) !important;
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}


/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 500px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding-top: 3.5rem;
    }
    .footer-top-btn { top: -20px; }
    .footer-contact-card { width: 100%; }
}
