/**
 * أنماط قسم الخدمات المصغر
 */

/* قسم الخدمات */
.services-section.minimal-services {
    padding: 5rem 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
    clear: both;
}

.services-section.minimal-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.02) 0%, rgba(111, 66, 193, 0.04) 100%);
    z-index: 0;
}

/* عنوان القسم */
.services-section.minimal-services .services-title {
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
    text-align: center;
}

.services-section.minimal-services .services-title h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center !important;
    position: relative;
    display: block;
    width: 100%;
    direction: rtl !important;
}

.services-section.minimal-services .services-title p {
    font-size: 1.1rem;
    color: #555;
    text-align: center !important;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    display: block;
    width: 100%;
    direction: rtl !important;
}

/* بطاقات الخدمات المصغرة */
.service-card.minimal-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 20px;
    background-color: #fff;
    height: 80px;
    display: flex;
    align-items: center;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.service-card.minimal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* أيقونة الخدمة المصغرة */
.service-card.minimal-card .service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 15px;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

/* عنوان الخدمة المصغرة */
.service-card.minimal-card .service-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    flex-grow: 1;
}

/* سعر الخدمة المصغرة */
.service-card.minimal-card .service-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 15px;
    white-space: nowrap;
}

/* زر الحجز المصغر */
.service-card.minimal-card .service-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin-right: 15px;
    display: none;
}

.service-card.minimal-card:hover .service-button {
    display: block;
}

/* محتوى الخدمة المصغرة */
.service-card.minimal-card .service-content {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0;
    position: relative;
    z-index: 1;
}

/* وصف الخدمة المصغرة (مخفي افتراضياً) */
.service-card.minimal-card .service-description {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 15px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 3;
    border-top: 1px solid #eee;
    color: #666;
    line-height: 1.6;
}

.service-card.minimal-card:hover .service-description {
    display: block;
}

/* تحسينات للأجهزة المحمولة */
@media (max-width: 768px) {
    .services-section.minimal-services .services-title h2 {
        font-size: 2.2rem;
    }
    
    .service-card.minimal-card {
        height: 70px;
    }
    
    .service-card.minimal-card .service-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin: 0 10px;
    }
    
    .service-card.minimal-card .service-title {
        font-size: 1rem;
    }
    
    .service-card.minimal-card .service-price {
        font-size: 0.9rem;
        margin: 0 10px;
    }
    
    .service-card.minimal-card .service-button {
        padding: 5px 10px;
        font-size: 0.8rem;
        margin-right: 10px;
    }
}

@media (max-width: 576px) {
    .services-section.minimal-services .services-title h2 {
        font-size: 1.8rem;
    }
    
    .service-card.minimal-card {
        height: 60px;
    }
    
    .service-card.minimal-card .service-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
        margin: 0 8px;
    }
    
    .service-card.minimal-card .service-title {
        font-size: 0.9rem;
    }
    
    .service-card.minimal-card .service-price {
        font-size: 0.8rem;
        margin: 0 8px;
    }
    
    .service-card.minimal-card .service-button {
        display: none;
    }
}

/* الوضع الليلي */
body.dark-mode .services-section.minimal-services {
    background-color: #1a1a1a;
}

body.dark-mode .service-card.minimal-card {
    background-color: #2a2a2a;
    border-color: #333;
}

body.dark-mode .service-card.minimal-card .service-title {
    color: #f0f0f0;
}

body.dark-mode .service-card.minimal-card .service-description {
    background-color: #2a2a2a;
    border-color: #333;
    color: #ccc;
}
