/* نظام التقييم بالنجوم */
.service-rating {
    margin-top: 15px;
    padding: 10px 0;
    border-top: 1px solid #eee;
    text-align: center;
    direction: rtl;
}

.rating-stars {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 5px;
    direction: ltr; /* النجوم من اليسار لليمين */
}

.star {
    font-size: 18px;
    color: #ddd;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    margin: 0 1px;
    display: inline-block;
}

.star:hover {
    color: #4CAF50 !important; /* أخضر عند التمرير */
    transform: scale(1.1);
}

.star.active {
    color: #ffd700; /* ذهبي للنجوم المقيمة */
    transform: scale(1.1);
}

.star.rated {
    opacity: 0.7;
    cursor: default !important;
}

.star.rated:hover {
    transform: none;
    color: #ddd !important; /* النجوم المقيمة لا تتغير عند التمرير */
}

/* كلاس خاص للتمرير الأخضر */
.star.hover-green {
    color: #4CAF50 !important;
    transform: scale(1.1);
    text-shadow: 0 0 8px rgba(76, 175, 80, 0.5);
    transition: all 0.2s ease;
}

.star.half {
    background: linear-gradient(90deg, #ffd700 50%, #ddd 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-info {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
    direction: rtl;
    font-family: 'Cairo', sans-serif;
}

.rating-count {
    font-weight: 600;
    color: #333;
}

.rating-average {
    color: #ffd700;
    font-weight: 600;
}

.user-rated {
    color: #4CAF50;
    font-weight: 600;
    font-size: 11px;
}

/* تأثيرات التحميل */
.rating-loading {
    opacity: 0.6;
    pointer-events: none;
}

.rating-loading::after {
    content: "جاري التحديث...";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 11px;
    color: #666;
}

/* تحسينات للموبايل */
@media (max-width: 768px) {
    .star {
        font-size: 16px;
    }
    
    .rating-info {
        font-size: 11px;
    }
}

/* تأثيرات النقر */
.star-clicked {
    animation: starPulse 0.3s ease;
}

@keyframes starPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1.1); }
}

/* تحسين التباعد في البطاقات */
.service-content {
    position: relative;
}

.service-rating {
    position: relative;
    z-index: 1;
}

/* منع التداخل مع onclick للبطاقة */
.service-rating {
    pointer-events: auto;
    position: relative;
    z-index: 10;
}

.service-item {
    position: relative;
}

.service-rating * {
    pointer-events: auto;
}

/* تحسين التفاعل */
.service-rating:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px;
    margin: -8px;
}

/* تأثيرات الرسائل */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}
