/* ==========================================
   SERVICES PAGE STYLES
   ========================================== */

.service-hero {
    background: var(--gradient-primary);
    padding: 120px 0 80px;
    text-align: center;
    color: var(--white);
}

.service-hero-title {
    font-size: var(--font-size-5xl);
    margin-bottom: var(--spacing-lg);
    color: var(--white);
}

.service-hero-description {
    font-size: var(--font-size-xl);
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
}

.service-overview {
    background: var(--white);
}

.service-overview-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-overview-content p {
    font-size: var(--font-size-lg);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.service-features {
    background: var(--gray-50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}

.feature-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.feature-card h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-md);
    color: var(--gray-900);
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

.service-technologies {
    background: var(--white);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: var(--spacing-lg);
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--spacing-lg);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.tech-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.tech-icon {
    width: 50px;
    height: 50px;
    margin-bottom: var(--spacing-sm);
}

.tech-name {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--gray-700);
    text-align: center;
}

.service-process {
    background: var(--gray-50);
}

.process-steps {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-3xl);
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    width: 2px;
    height: calc(100% + var(--spacing-2xl));
    background: var(--gradient-primary);
    opacity: 0.3;
}

.process-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    font-weight: 700;
}

.process-content h3 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-sm);
    color: var(--gray-900);
}

.process-content p {
    color: var(--gray-600);
    line-height: 1.7;
}

.service-case-studies {
    background: var(--white);
}

.service-cta {
    background: var(--gradient-primary);
    text-align: center;
    color: var(--white);
}

.service-cta h2 {
    color: var(--white);
    margin-bottom: var(--spacing-lg);
}

.service-cta p {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
}

@media (max-width: 768px) {
    .service-hero {
        padding: 100px 0 60px;
    }

    .service-hero-title {
        font-size: var(--font-size-4xl);
    }

    .process-step {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .process-step::after {
        left: 25px;
        top: 60px;
    }
}
