/* ==========================================================================
   إحصائيات طلبات الخدمات
   ========================================================================== */
.service-stats-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.service-stats-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(62, 146, 204, 0.05);
    top: -100px;
    left: -100px;
    z-index: 0;
}

.service-stats-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(208, 0, 0, 0.05);
    bottom: -80px;
    right: -80px;
    z-index: 0;
}

.service-stat-card {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 220px;
}

.service-stat-card::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.service-stat-card::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    z-index: 0;
}

.service-stat-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-stat-card .icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.2);
    font-size: 2.2rem;
    border-radius: 50%;
}

.service-stat-card .counter {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.service-stat-card .title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 767.98px) {
    .service-stat-card {
        min-height: 180px;
    }
    
    .service-stat-card .icon-wrapper {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    .service-stat-card .counter {
        font-size: 2rem;
        margin-bottom: 5px;
    }
    
    .service-stat-card .title {
        font-size: 0.9rem;
    }
}

/* تنسيقات خاصة للهواتف الصغيرة */
@media (max-width: 575.98px) {
    .service-stat-card {
        min-height: 160px;
        padding: 1.2rem 0.8rem;
    }
    
    .service-stat-card .icon-wrapper {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
        margin-bottom: 8px;
    }
    
    .service-stat-card .counter {
        font-size: 1.7rem;
        margin-bottom: 4px;
    }
    
    .service-stat-card .title {
        font-size: 0.8rem;
    }
}

/* تنسيق ملاحظة الإحصائيات */
.stats-note {
    position: relative;
    padding: 10px;
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.stats-note p {
    font-size: 0.95rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    font-weight: 500;
}

.stats-note:hover p {
    opacity: 1;
}

.stats-note i {
    color: var(--accent-color);
}
