/* Footer Features Bar - BLUE BACKGROUND matching design */
.footer-features-section {
    background-color: var(--primary-color);
    padding: 22px 0;
    margin-top: 40px;
}

.footer-features-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

.footer-features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.footer-feature-card {
    display: flex;
    align-items: center;
    padding: 8px 10px;
}

.footer-feature-icon-wrapper {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.footer-feature-card:hover .footer-feature-icon-wrapper {
    background-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.footer-feature-icon-wrapper svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-feature-content {
    display: flex;
    flex-direction: column;
}

.footer-feature-title {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
    line-height: 1.3;
}

.footer-feature-desc {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.3;
}

/* Divider between items */
@media (min-width: 992px) {
    .footer-feature-card:not(:last-child) {
        border-right: 1px solid rgba(255, 255, 255, 0.15);
        padding-right: 15px;
    }
}
