/* ===========
    FOOTER
============ */
.modern-footer {
    background: linear-gradient(90deg, #00b8ff 0%, #0b5c81 100%);
    color: #fff;
    margin-top: 60px;
    font-family: 'Poppins', Arial, sans-serif;
    box-shadow: 0 -4px 24px rgba(11, 92, 129, 0.08);  /* Subtiele schaduw boven de footer */
}

.footer-content {
    display: flex;
    flex-wrap: wrap; /* Zorgt ervoor dat inhoud op kleinere schermen wordt gewrapt */
    align-items: center; /* Verticaal centreren */
    justify-content: space-between; /* Ruimte tussen de secties */
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 5% 18px 5%;
    gap: 24px;
}

.footer-contact {
    display: grid; /* Grid layout voor contactinfo */
    grid-template-columns: 1fr 1fr; /* Twee kolommen */
    gap: 10px 32px;
    margin-top: 18px;
    margin-bottom: 0;
    color: #e0f7fa;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    line-height: 1.6;
}

.footer-contact div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: #fff;
    font-size: 1.1em;
    background: rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    padding: 7px;
    margin-right: 4px;
    min-width: 28px;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.footer-brand img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.brand-name {
    font-size: 1.4rem;
    letter-spacing: 1.5px;
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    opacity: 0.88;
    transition: opacity 0.2s, color 0.2s;
}

.footer-links a:hover {
    color: #354DF0;
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 18px;
}

.footer-social a {
    color: #fff;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}

.footer-social a:hover {
    background: #354DF0;
    transform: translateY(-3px) scale(1.08);
}

.footer-bottom {
    text-align: center;
    padding: 12px 0;
    background: rgba(0, 0, 0, 0.07);
    font-size: 0.9rem;
    color: #e0f7fa;
}

/* ===== TABLET & MOBIEL ===== */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-contact {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .brand-name {
        font-size: 1.25rem;
    }

    .footer-links a {
        font-size: 0.95rem;
    }
}

/* ===== KLEINE SMARTPHONES ===== */
@media(max-width: 480px) {

    .footer-links {
        flex-direction: column;
        gap: 14px;
    }

    .footer-bottom {
        font-size: 0.85rem;
        padding: 10px;
        line-height: 1.4;
    }
}