/* =============================================
   ⭐ سيكشن الركائز – تصميم فاتح وراقي
============================================= */

.msahem-pillars {
    padding: 90px 0;
    background: #f8fafc; /* خلفية فاتحة ناعمة */
    color: #1e293b;
}

/* العنوان */
.pillars-header {
    max-width: 540px;
}

.pillars-badge {
    display: inline-flex;
    padding: 6px 16px;
    font-size: 13px;
    border-radius: 999px;
    border: 1px solid #D9B36A;
    background: #fff;
    color: #0f172a;
    margin-bottom: 12px;
}

.pillars-title {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.pillars-subtitle {
    color: #475569;
    font-size: 15px;
    line-height: 1.9;
}

/* الهيكل الرئيسي */
.pillars-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

/* العد الترتيبي */
.pillar-step {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #D9B36A;
    background: #fff;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* كل ركيزة */
.pillars-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pillar-item {
    display: flex;
    gap: 16px;
    padding: 18px 20px;
    background: #ffffff;
    border: 1px solid rgba(217,179,106,0.4);
    border-radius: 18px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.06);
    transition: 0.25s ease;
}

.pillar-item:hover {
    transform: translateY(-3px);
    border-color: #D9B36A;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

/* نص الركيزة */
.pillar-content h3 {
    margin: 0 0 4px;
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
}

.pillar-content p {
    font-size: 14px;
    color: #475569;
    margin: 0;
    line-height: 1.7;
}

/* استجابة */
@media (max-width: 992px) {
    .pillars-inner {
        grid-template-columns: 1fr;
    }
}
