/* =============================================
   🟦 سكشن الثقة – مساهم الدولية القابضة
============================================= */

.trust-section {
    background: #f3f4f6; /* خلفية موحدة */
    padding: 70px 0 80px;
}

.trust-inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* العنوان الرئيسي */
.trust-title {
    font-size: 28px;
    font-weight: 800;
    color: #073649; /* أزرق مساهم */
    margin: 0;
}

/* الفقرة التحت العنوان */
.trust-subtitle {
    font-size: 15px;
    line-height: 1.9;
    color: #4b5563;
    max-width: 720px;
}

/* شبكة الكروت */
.trust-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 10px;
}

/* الكرت الواحد */
.trust-card {
    background: #0b1624;
    border-radius: 20px;
    padding: 20px 18px 22px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.35);
    color: #e5e7eb;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
    overflow: hidden;
}

/* لمعة خفيفة داخل الكرت */
.trust-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right,
        rgba(217, 179, 106, 0.18),
        transparent 55%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.trust-card:hover::before {
    opacity: 1;
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.6);
    border-color: #D9B36A;
}

/* الأيقونة */
.trust-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

/* عنوان الكرت */
.trust-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fefce8;
}

/* نص الكرت */
.trust-card p {
    font-size: 13.5px;
    line-height: 1.8;
    color: #e5e7eb;
    margin: 0;
}

/* استجابة – تابلت */
@media (max-width: 992px) {
    .trust-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* استجابة – موبايل */
@media (max-width: 640px) {
    .trust-section {
        padding: 50px 0 60px;
    }

    .trust-title {
        font-size: 22px;
    }

    .trust-subtitle {
        font-size: 14px;
    }

    .trust-cards {
        grid-template-columns: 1fr;
    }
}
