:root {
    --brand-accent: #e0cc9c;
    --brand-dark: #5e5e5e;
    --brand-dark-strong: #3f3f3f;
}

/* ==========================================
   SERVICE HERO – ISOLATED SYSTEM
========================================== */

.service-hero {
    position: relative;
    min-height: 75vh;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

/* Background image wrapper */
.service-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.service-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.service-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

/* Inner layout */
.service-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    width: 100%;
}

/* Content */
.service-hero-content {
    padding-bottom: 90px;
    max-width: 720px;
    color: #ffffff;
}

.service-hero-content h1 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.service-hero-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 28px;
}

/* Mobile */
@media (max-width: 991px) {

    .service-hero {
        min-height: 60vh;
    }

    .service-hero-content {
        padding-bottom: 60px;
    }

    .service-hero-content h1 {
        font-size: 30px;
    }

}
/* ==========================================
   SERVICE HERO – BRAND COLORS
========================================== */

.service-hero-content h1 {
    color: #ffffff;
}

.service-hero-content p {
    color: rgba(255,255,255,0.9);
}

/* CTA button */
.service-hero .btn {
    background-color: var(--brand-accent);
    color: var(--brand-dark);
    border-radius: 30px;
    padding: 14px 42px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-hero .btn:hover {
    background-color: var(--brand-dark-strong);
    color: #ffffff;
    transform: translateY(-2px);
}
/* ==========================================
   SERVICE CTA – BRAND ALIGNMENT
========================================== */

.service-cta {
    background-color: var(--brand-accent);
}

.service-cta h2 {
    color: var(--brand-dark-strong);
}

.service-cta p {
    color: var(--brand-dark);
}

.service-cta .btn {
    background-color: var(--brand-dark-strong);
    color: #ffffff;
}

.service-cta .btn:hover {
    background-color: var(--brand-dark);
}
/* ==========================================
   SERVICE TEXT COLOR SYSTEM
========================================== */

.service-problem,
.service-authority,
.service-breakdown,
.service-process,
.service-faq {
    color: var(--brand-dark);
}

.service-section-intro h2 {
    color: var(--brand-dark-strong);
}

.service-problem-list li {
    color: var(--brand-dark);
}

