/* ============================================================
   service-page.css — Styles specific to individual service pages
   
   PURPOSE: Shared styles for service hero, benefits, inline styles.
   This file is only loaded on pages inside /pages/.
   ============================================================ */

.service-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    text-align: center;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    z-index: 1;
    margin-bottom: 1rem;
}

.service-hero p {
    z-index: 1;
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #d0d0d0;
}

.service-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0.5;
}

.header-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--bg-color) 0%, rgba(5, 5, 5, 0.7) 100%);
    z-index: -1;
}

/* Benefits column */
.service-benifits {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    background: var(--surface);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--accent);
}

.benefit-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    margin: 0;
    font-size: 1rem;
}