/* =========================================
   service.css – Shared styles for all service pages
   ========================================= */

/* ---- Service Hero Banner ---- */
.service-hero {
    position: relative;
    height: 240px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
}

.service-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.50);
}

/* ---- Service Content Section ---- */
.service-content-section {
    background: #fff;
    padding: 55px 0 65px;
}

.service-content-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 50px;
    align-items: start;
    margin-bottom: 36px;
}

.service-text-col h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.service-text-col .section-bar {
    margin-bottom: 22px;
}

.service-text-col p {
    font-size: 13.5px;
    line-height: 1.85;
    color: #444;
    margin-bottom: 14px;
    text-align: justify;
}

.service-text-col p:last-child {
    margin-bottom: 0;
}

.service-img-col img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
}

/* Extra paragraphs below the grid */
.service-extra-text p {
    font-size: 13.5px;
    line-height: 1.85;
    color: #444;
    margin-bottom: 14px;
    text-align: justify;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .service-content-grid {
        grid-template-columns: 1fr;
    }

    .service-img-col img {
        height: 220px;
    }
}
