.services-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    color: var(--color-text-inverse);
    padding: var(--space-24) 0 var(--space-16);
    margin-bottom: var(--space-16);
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.75) 100%);
}

.services-hero .container {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    margin-bottom: var(--space-8);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: var(--space-2);
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: var(--space-2);
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb a:hover {
    color: var(--color-accent);
}

.breadcrumb [aria-current="page"] {
    color: rgba(255, 255, 255, 0.6);
}


.services-hero h1 {
    color: var(--color-text-inverse);
    font-size: var(--text-5xl);
    margin-bottom: var(--space-6);
    line-height: var(--leading-tight);
}

.services-hero p {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-8);
    opacity: 0.95;
}

.services-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.services-list {
    margin-bottom: var(--space-16);
}

.service-section {
    padding: var(--space-16) 0;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--duration-slow) var(--ease-out),
                transform var(--duration-slow) var(--ease-out);
}

.service-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.service-section:nth-child(even) {
    background-color: var(--color-bg-alt);
}

.service-section__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    align-items: center;
}

.service-section__content h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-4);
    color: var(--color-text-heading);
}

.service-section__content p {
    color: var(--color-text);
    margin-bottom: var(--space-4);
    line-height: var(--leading-relaxed);
}

.service-section__content p:last-of-type {
    margin-bottom: var(--space-6);
}

.service-section__image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    min-height: 300px;
}

.service-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-in-out);
}

.service-section:hover .service-section__image img {
    transform: scale(1.03);
}

.services-cta {
    background-color: var(--color-primary);
    color: var(--color-text-inverse);
    padding: var(--space-20) 0;
    text-align: center;
}

.services-cta__content {
    max-width: 700px;
    margin: 0 auto;
}

.services-cta h2 {
    color: var(--color-text-inverse);
    font-size: var(--text-4xl);
    margin-bottom: var(--space-4);
}

.services-cta p {
    font-size: var(--text-lg);
    opacity: 0.9;
    margin-bottom: var(--space-8);
}

.services-cta__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
}

.btn--large {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
}

@media (min-width: 1024px) {
    .service-section__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-12);
    }
    
    .service-section--alt .service-section__content {
        order: 2;
    }
    
    .service-section--alt .service-section__image {
        order: 1;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: var(--space-16) 0 var(--space-12);
    }
    
    .services-hero h1 {
        font-size: var(--text-3xl);
    }
    
    .services-hero p {
        font-size: var(--text-base);
    }
    
    .service-section {
        padding: var(--space-12) 0;
    }
    
    .service-section__content h2 {
        font-size: var(--text-2xl);
    }
    
    .services-cta h2 {
        font-size: var(--text-3xl);
    }
}