/* ==========================================
   الستايلات العامة والهيرو سيكشن
========================================== */
.page-header {
    position: relative;
    height: 350px;
    width: 100%;
    /* تم نقل background-image للـ HTML كـ Inline Style */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.page-header::before {
    content: '';
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.page-header-content { 
    position: relative; 
    z-index: 2; 
}

.breadcrumb { 
    background: transparent; 
    padding: 0; 
    justify-content: center; 
    margin-bottom: 0; 
}

.breadcrumb-item a { 
    color: #ccc; 
    text-decoration: none; 
    transition: 0.3s; 
}

.breadcrumb-item a:hover { 
    color: #fff; 
}

.breadcrumb-item.active { 
    color: #fff; 
}

.breadcrumb-item + .breadcrumb-item::before { 
    color: #ccc; 
}

/* ==========================================
   السايد بار والأدوات (Sidebar Widgets)
========================================== */
.sidebar-widget { 
    background: #fff; 
    padding: 20px; 
    border-radius: 12px; 
    box-shadow: 0 2px 15px rgba(0,0,0,0.03); 
    margin-bottom: 25px; 
    border: 1px solid #eee; 
}

.widget-title { 
    font-weight: 700; 
    margin-bottom: 20px; 
    padding-bottom: 10px; 
    border-bottom: 2px solid #f1f1f1; 
    position: relative; 
}

.widget-title::after { 
    content: ''; 
    position: absolute; 
    bottom: -2px; 
    right: 0; 
    width: 50px; 
    height: 2px; 
    background: var(--bs-primary); 
}

/* ==========================================
   بطاقات خطوات العمل (How it works cards)
========================================== */
.how-it-works-card { 
    background: #fff; 
    padding: 30px; 
    border-radius: 12px; 
    box-shadow: 0 2px 15px rgba(0,0,0,0.03); 
    border: 1px solid #eee; 
    margin-bottom: 20px; 
    display: flex; 
    align-items: flex-start; 
    transition: transform 0.3s ease; 
}

.how-it-works-card:hover { 
    transform: translateY(-5px); 
    border-color: var(--bs-primary); 
}

.step-number { 
    font-size: 1.5rem; 
    font-weight: 800; 
    color: var(--bs-primary); 
    background: rgba(13, 110, 253, 0.1); 
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex-shrink: 0; 
    margin-left: 20px; 
}

/* تعديل الاتجاه للغة الإنجليزية (LTR) */
html[dir="ltr"] .step-number { 
    margin-left: 0; 
    margin-right: 20px; 
}

.step-content h5 { 
    font-weight: 700; 
    margin-bottom: 10px; 
}

/* ==========================================
   عناوين الأقسام المخصصة
========================================== */
.section-header-custom { 
    display: flex; 
    align-items: center; 
    margin-bottom: 30px; 
    padding-bottom: 15px; 
    border-bottom: 1px solid #eee; 
}

.section-header-custom i { 
    font-size: 1.8rem; 
    color: var(--bs-primary); 
    margin-left: 10px; 
}

/* تعديل الاتجاه للغة الإنجليزية (LTR) */
html[dir="ltr"] .section-header-custom i { 
    margin-left: 0; 
    margin-right: 10px; 
}