/* صفحة الخدمات - امجاد الفلاح */

.services-page {
    background: #f8fafc;
}

/* Hero Section */
.services-hero {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.services-hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.services-hero-content {
    position: relative;
    z-index: 1;
}

.services-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.services-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* Services Content */
.services-content {
    padding: 80px 0;
}

.service-section {
    background: white;
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-section:hover {
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
    transform: translateY(-5px);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid #e5e7eb;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 32px;
    color: white;
}

.service-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.service-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-body.reverse {
    direction: ltr;
}

.service-body.reverse .service-info {
    direction: rtl;
}

.service-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.service-info > p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-item i {
    font-size: 24px;
    color: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 5px 0;
}

.feature-item p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.service-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Pricing Table */
.service-pricing {
    margin-top: 30px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 15px;
}

.service-pricing h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table tr {
    border-bottom: 1px solid #e5e7eb;
}

.pricing-table tr:last-child {
    border-bottom: none;
}

.pricing-table td {
    padding: 15px 10px;
    font-size: 16px;
}

.pricing-table td:first-child {
    color: #6b7280;
}

.pricing-table td:last-child {
    text-align: left;
    font-weight: 600;
    color: #1f2937;
}

.pricing-table tr.highlight {
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.1), transparent);
}

.pricing-table tr.highlight td {
    color: #10b981;
    font-weight: 700;
}

/* Service Note */
.service-note {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #fef3c7;
    border: 2px solid #f59e0b;
    border-radius: 12px;
    margin-top: 30px;
}

.service-note.success {
    background: #ecfdf5;
    border-color: #10b981;
}

.service-note i {
    font-size: 24px;
    color: #f59e0b;
    flex-shrink: 0;
}

.service-note.success i {
    color: #10b981;
}

.service-note p {
    font-size: 15px;
    color: #78350f;
    line-height: 1.6;
    margin: 0;
}

.service-note.success p {
    color: #065f46;
}

/* Payment Methods */
.payment-methods {
    margin-top: 30px;
}

.payment-methods h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.payment-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.payment-method:hover {
    background: white;
    border-color: #3b82f6;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.payment-method i {
    font-size: 32px;
    color: #3b82f6;
}

.payment-method span {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
}

/* CTA Section */
.services-cta {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: white;
    color: #10b981;
}

.btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #10b981;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
    .service-body {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-body.reverse {
        direction: rtl;
    }
    
    .service-image {
        order: -1;
    }
    
    .payment-icons {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 60px 0;
    }
    
    .services-hero-title {
        font-size: 36px;
    }
    
    .services-hero-subtitle {
        font-size: 16px;
    }
    
    .services-content {
        padding: 50px 0;
    }
    
    .service-section {
        padding: 30px 20px;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
    }
    
    .service-header h2 {
        font-size: 24px;
    }
    
    .service-info h3 {
        font-size: 20px;
    }
    
    .payment-icons {
        grid-template-columns: 1fr;
    }
    
    .services-cta {
        padding: 50px 0;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        justify-content: center;
    }
}
