/* Services Page Specific Styles */

.services-hero {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, hsla(217, 91%, 60%, 0.05), hsla(215, 16%, 47%, 0.05));
}

.services-hero-content {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.services-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.services-hero p {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Main Services */
.main-services {
    padding: 5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-detail-card {
    padding: 2rem;
    border-radius: 0.75rem;
    transition: var(--transition-smooth);
}

.service-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elegant);
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.service-detail-card .service-icon {
    width: 3rem;
    height: 3rem;
    background: hsla(217, 91%, 60%, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-detail-card .service-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.service-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.service-summary {
    font-size: 1rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.25rem 0;
    color: var(--foreground);
    font-size: 0.875rem;
}

.service-cta {
    margin-top: auto;
}

/* Industries Served */
.industries-served {
    padding: 5rem 0;
    background: var(--muted);
}

.industries-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.industry-card {
    background: var(--card);
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.industry-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-corporate);
}

.industry-icon {
    width: 3rem;
    height: 3rem;
    background: hsla(217, 91%, 60%, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.industry-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.industry-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.industry-card p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Process */
.our-process {
    padding: 5rem 0;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--card);
    border-radius: 0.5rem;
    box-shadow: 0 2px 10px 8px hsl(0, 0%, 0%, 0.05);
}

.step-number {
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* CTA Section */
.services-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.cta-content {
    text-align: center;
    color: white;
    max-width: 48rem;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.btn-hero-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-hero-outline:hover {
    background: white;
    color: var(--primary);
}

/* Responsive Design */
@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .services-hero h1 {
        font-size: 3.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-hero h1 {
        font-size: 4rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
}