/* Premium Services CSS */
.premium-services-wrapper {
    max-width: 1400px;
    margin: 40px auto;
    padding: 20px;
    direction: rtl;
    font-family: "Tajawal", Arial, sans-serif;
}

.premium-services-header {
    text-align: center;
    margin-bottom: 50px;
}

.premium-services-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.premium-services-header p {
    font-size: 18px;
    color: #7f8c8d;
}

.premium-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.service-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.service-icon.orange {
    background: rgba(255, 152, 0, 0.15);
    color: #ff9800;
}

.service-icon.blue {
    background: rgba(33, 150, 243, 0.15);
    color: #2196f3;
}

.service-icon.red {
    background: rgba(244, 67, 54, 0.15);
    color: #f44336;
}

.service-icon.yellow {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
}

.service-icon.green {
    background: rgba(76, 175, 80, 0.15);
    color: #4caf50;
}

.service-icon.purple {
    background: rgba(156, 39, 176, 0.15);
    color: #9c27b0;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 15px;
    color: #7f8c8d;
    line-height: 1.7;
    margin-bottom: 20px;
    min-height: 50px;
}

.service-price {
    font-size: 18px;
    font-weight: 700;
    color: #c67c3b;
}

.premium-services-footer {
    text-align: center;
    margin-top: 40px;
}

.view-all-btn {
    display: inline-block;
    background-color: #e6392e;
    color: white;
    padding: 16px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(198, 124, 59, 0.3);
}

.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(198, 124, 59, 0.4);
    color: white;
}

@media (max-width: 768px) {
    .premium-services-grid {
        grid-template-columns: 1fr;
    }
    
    .premium-services-header h2 {
        font-size: 28px;
    }
}