/* ============================================================
   FEATURES STRIP — Horizontal Bar Design
   شريط المميزات الأفقي (مطابق للصورة المرجعية)
   ============================================================ */

.features-strip-section {
    padding: 0;
    background: transparent;
}

/* ── Strip container ── */
.features-strip {
    display: flex;
    align-items: stretch;
    background: #EBF4FD;
    border-radius: 16px;
    border: 1px solid #D0E6F7;
    overflow: hidden;
    margin: 0 0 8px;
}

/* ── Single feature item ── */
.feature-strip-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 20px;
    position: relative;
    transition: background 0.2s ease;
}

.feature-strip-item:hover {
    background: rgba(15, 32, 96, 0.04);
}

/* ── Vertical divider between items ── */
.feature-strip-divider {
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(15, 32, 96, 0.12);
}

/* ── Icon circle ── */
.feature-strip-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid #C8D8EE;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--almabr-primary);
    box-shadow: 0 2px 8px rgba(15, 32, 96, 0.08);
    transition: all 0.25s ease;
}

.feature-strip-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--almabr-primary);
}

.feature-strip-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.feature-strip-item:hover .feature-strip-icon {
    background: var(--almabr-primary);
    border-color: var(--almabr-primary);
    box-shadow: 0 4px 14px rgba(15, 32, 96, 0.25);
}

.feature-strip-item:hover .feature-strip-icon svg {
    stroke: #fff;
}

/* ── Text area ── */
.feature-strip-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.feature-strip-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text-heading);
    line-height: 1.3;
    white-space: nowrap;
}

.feature-strip-desc {
    font-size: 12.5px;
    color: var(--almabr-primary-light);
    font-weight: 500;
    line-height: 1.3;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .features-strip {
        flex-wrap: wrap;
        border-radius: 12px;
    }

    .feature-strip-item {
        flex: 0 0 50%;
        padding: 18px 16px;
    }

    .feature-strip-divider {
        display: none;
    }

    /* Internal border between items on mobile */
    .feature-strip-item:nth-child(odd) {
        border-bottom: 1px solid rgba(15, 32, 96, 0.08);
        border-left: 1px solid rgba(15, 32, 96, 0.08);   /* RTL: right border */
    }

    .feature-strip-item:nth-child(even) {
        border-bottom: 1px solid rgba(15, 32, 96, 0.08);
    }

    .feature-strip-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .feature-strip-item {
        flex: 0 0 100%;
        border-left: none !important;
        border-bottom: 1px solid rgba(15, 32, 96, 0.08) !important;
    }

    .feature-strip-item:last-child {
        border-bottom: none !important;
    }

    .feature-strip-icon {
        width: 44px;
        height: 44px;
    }

    .feature-strip-icon svg {
        width: 22px;
        height: 22px;
    }

    .feature-strip-title {
        font-size: 14px;
        white-space: normal;
    }
}

/* ============================================================
   OLD .features-section styles — kept for backward compat
   ============================================================ */
.features-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}