/* Services Page Specific Styles */

.page-hero {
    padding: 8rem 0 4rem;
    background: var(--gradient-hero);
    color: white;
    text-align: center;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    color: white;
}

.services-detail {
    padding: var(--section-padding);
}

.service-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.service-section.reverse {
    direction: rtl;
}

.service-section.reverse > * {
    direction: ltr;
}

.service-icon-large {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-icon-large.blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.service-icon-large.green {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.service-icon-large.purple {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.service-icon-large i {
    font-size: 2.5rem;
}

.service-info h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-info p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.service-features {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.service-features h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-item i {
    color: var(--success);
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.technologies {
    margin-top: 2rem;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-badge {
    background: var(--surface);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.process-section {
    padding: var(--section-padding);
    background: var(--surface);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2rem;
    height: 2rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    z-index: 2;
}

.step-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1.5rem;
    position: relative;
}

.step-icon i {
    font-size: 1.5rem;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 0.875rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .service-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .service-section.reverse {
        direction: ltr;
    }
    
    .service-info h3 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}