/**
 * Footer Block Styles
 */

.eicom-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 64px 0 24px;
}

/* Footer Content */
.eicom-footer .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

/* Footer Column */
.eicom-footer .footer-col {
    display: flex;
    flex-direction: column;
}

/* Footer Info */
.eicom-footer .footer-info .footer-logo {
    margin-bottom: 16px;
}

.eicom-footer .footer-info .footer-logo img {
    height: 40px;
    width: auto;
}

.eicom-footer .footer-bedrijfsnaam {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Footer Title */
.eicom-footer .footer-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

/* Footer Nav */
.eicom-footer .footer-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.eicom-footer .footer-nav li {
    margin-bottom: 8px;
}

.eicom-footer .footer-nav li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.eicom-footer .footer-nav li a:hover {
    color: #61b01f;
}

/* Footer Badges */
.eicom-footer .footer-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.eicom-footer .footer-badges .badge {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.eicom-footer .footer-badges .divider {
    color: rgba(255, 255, 255, 0.3);
}

/* Footer Bottom */
.eicom-footer .footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.eicom-footer .footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .eicom-footer .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px 32px;
    }
}

@media (max-width: 768px) {
    .eicom-footer {
        padding: 48px 0 20px;
    }

    .eicom-footer .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 32px;
    }

    .eicom-footer .footer-info {
        text-align: center;
    }

    .eicom-footer .footer-info .footer-logo {
        display: flex;
        justify-content: center;
    }

    .eicom-footer .footer-badges {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .eicom-footer {
        padding: 40px 0 16px;
    }

    .eicom-footer .footer-content {
        gap: 28px;
        margin-bottom: 28px;
    }

    .eicom-footer .footer-title {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .eicom-footer .footer-nav li {
        margin-bottom: 6px;
    }

    .eicom-footer .footer-nav li a,
    .eicom-footer .footer-bedrijfsnaam,
    .eicom-footer .footer-badges .badge,
    .eicom-footer .footer-copyright {
        font-size: 13px;
    }

    .eicom-footer .footer-bottom {
        padding-top: 20px;
    }
}
