/* نظام ألوان موحد - أزرق فقط */
.gradient-card {
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
}

.gradient-card-dark {
    background: hsl(221.12deg 82.97% 32.53%);
}

.modern-hero {
    border-radius: 25px;
    overflow: hidden;
}

.modern-tab {
    border: none;
    background: linear-gradient(135deg, #f8f9fc 0%, #e3e6f0 100%);
    border-radius: 15px;
    margin: 0 5px;
}

.modern-tab.active {
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    color: white;
}

.timeline-modern {
    position: relative;
}

.timeline-step {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 100%);
    border-radius: 20px;
    border: 2px solid transparent;
}

.step-number {
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.3rem;
    position: relative;
    z-index: 2;
}

.step-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 100%);
    border-radius: 20px;
    border: 1px solid #e3e6f0;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.1) !important;
}

.executor-badge {
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    color: white;
    border-radius: 25px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.requirement-item {
    background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 100%);
    border: 1px solid #e3e6f0;
    border-radius: 12px;
    padding: 12px 16px;
}

/* خلفية الصفحة */
.service-details-background {
    background: #f8fafc;
    min-height: auto;
}

/* بطاقات الإحصائيات */
/* 1. Red */
/* 1. Red */
.stats-card-1 {
    background: #ffffff;
    border-bottom: 4px solid transparent;
    border-image: linear-gradient(to left, #CE1126 90%, transparent) 1;
    border-radius: 10px 10px 0 0;
}

/* 2. White (soft visible border) */
.stats-card-2 {
    background: #ffffff;
    border-bottom: 4px solid transparent;
    border-image: linear-gradient(to left, #E0E0E0 90%, transparent) 1;
    border-radius: 10px 10px 0 0;
}

/* 3. Black */
.stats-card-3 {
    background: #ffffff;
    border-bottom: 4px solid transparent;
    border-image: linear-gradient(to left, #000000 90%, transparent) 1;
    border-radius: 10px 10px 0 0;
}

/* 4. Green */
.stats-card-4 {
    background: #ffffff;
    border-bottom: 4px solid transparent;
    border-image: linear-gradient(to left, #007A3D 90%, transparent) 1;
    border-radius: 10px 10px 0 0;
}

.stats-card-1:hover {
    border-image: linear-gradient(to left, #CE1126 100%, #CE1126) 1;
}
.stats-card-2:hover {
    border-image: linear-gradient(to left, #E0E0E0 100%, #E0E0E0) 1;
}
.stats-card-3:hover {
    border-image: linear-gradient(to left, #000000 100%, #000000) 1;
}
.stats-card-4:hover {
    border-image: linear-gradient(to left, #007A3D 100%, #007A3D) 1;
}






/* حاوية المخطط */
.chart-container {
    direction: ltr;
    overflow-x: auto;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* بطاقة المخطط */
.chart-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 100%);
}

/* صفحة تفاصيل الخدمة */
.details-stat-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.details-stat-card:hover {
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.12);
    transform: translateY(-2px);
}

.details-stat-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.details-stat-card__label {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.details-stat-card__value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.4;
}

.details-section-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.details-section-card__header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.details-section-card__body {
    padding: 1.5rem;
}

.details-chart-container {
    min-height: 450px;
    direction: ltr;
    padding: 1.5rem;
}

.details-org-logo {
    width: 28px;
    height: 28px;
    object-fit: cover;
    border-radius: 50%;
}