/* hero.css */
.service-hero {
    padding: min(10vh, 120px) 0;
    background-color: var(--wp--preset--color--dark);
    color: var(--wp--preset--color--white);
    width: 100vw;
    position: relative;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at center,
        rgba(var(--wp--preset--color--primary-rgb), 0.1) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
}

.service-hero .container {
    position: relative;
    z-index: 2;
    width: min(90%, var(--container-width));
    margin: 0 auto;
    text-align: center;
}

/* Rest of your existing hero styles remain exactly the same */
.service-hero__title {
    font-size: clamp(1.75rem, 4vw + 1rem, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    letter-spacing: -0.02em;
}

.service-hero__subtitle {
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.5rem);
    line-height: 1.6;
    margin-bottom: clamp(2rem, 4vw, 2.5rem);
    opacity: 0.9;
    max-width: min(90%, 800px);
    margin-left: auto;
    margin-right: auto;
}

.service-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--wp--preset--color--primary);
    color: var(--wp--preset--color--white);
    padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
    border-radius: 0.375rem;
    font-size: clamp(0.875rem, 0.5vw + 0.8rem, 1rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: var(--transition-base);
    text-decoration: none;
}

.service-hero__cta:hover {
    background-color: var(--wp--preset--color--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: var(--wp--preset--color--white);
}

.service-hero__cta i {
    font-size: clamp(1rem, 1vw + 0.8rem, 1.125rem);
}

/* Larger screens */
@media screen and (min-width: 1440px) {
    .service-hero {
        padding: min(12vh, 140px) 0;
    }
    
    .service-hero .container {
        width: min(85%, var(--container-width));
    }
}

/* Medium screens */
@media screen and (max-width: 1024px) {
    .service-hero {
        padding: min(8vh, 100px) 0;
    }
}

/* Mobile screens */
@media screen and (max-width: 768px) {
    .service-hero {
        padding: min(6vh, 80px) 0;
    }
    
    .service-hero .container {
        width: min(95%, var(--container-width));
    }
}

/* Small mobile screens */
@media screen and (max-width: 480px) {
    .service-hero {
        padding: min(5vh, 60px) 0;
    }
}