/* ========================================
   SERVICES PAGE STYLES
   ======================================== */

.services-hero {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: var(--space-2xl) 0;
}

.services-hero h1 {
    color: white;
    margin-bottom: var(--space-sm);
}

.services-hero p {
    color: rgba(255,255,255,0.95);
    font-size: 1.25rem;
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border-left: 4px solid var(--color-primary);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.service-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-md);
}

.service-title {
    font-size: 1.75rem;
    margin: 0;
}

.service-subtitle {
    color: var(--color-text-muted);
    font-size: 1rem;
    margin-top: 0.25rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: var(--space-md) 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--color-text-light);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 700;
    font-size: 1.25rem;
}

.service-price {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.125rem;
    margin-top: var(--space-md);
}

.service-cta {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border);
}

.process-section {
    background: var(--color-bg-alt);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.process-step {
    text-align: center;
    padding: var(--space-lg);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

@media (max-width: 768px) {
    .service-header {
        flex-direction: column;
        text-align: center;
    }
}
