/* ========================================
   Services Page Hero Section
======================================== */

.sjb-services-hero {
    position: relative;
    min-height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1D70B7 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 100px 0;
}

.sjb-services-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(22, 22, 22, 0.699);
    z-index: 1;
}

.sjb-services-hero .container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1335px;
    margin: 0 auto;
    padding: 0 15px;
}

.sjb-services-hero__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.sjb-services-hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-white) !important;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sjb-services-hero__subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-white) !important;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .sjb-services-hero {
        min-height: 40vh;
        padding: 60px 0;
    }
    
    .sjb-services-hero__title {
        font-size: 2.5rem;
    }
    
    .sjb-services-hero__subtitle {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .sjb-services-hero {
        padding: 50px 0;
    }
    
    .sjb-services-hero__title {
        font-size: 2rem;
    }
    
    .sjb-services-hero__subtitle {
        font-size: 1rem;
    }
}