/* =============================================================
   RESIDENTIAL PAGE — Scoped page styles
   Only loaded on residential.php
   ============================================================= */

/* ── Service detail — CTA button spacing ── */
.residential-cta-wrap {
    margin-top: 2rem;
}

/* ── Process section background ── */
.residential-process-section {
    background: var(--accent-color);
}

/* ── Lord-icon in bathroom step ── */
.lordicon-step {
    width: 36px;
    height: 36px;
}

/* ── Card grid: 2×2 layout on desktop ── */
.residential-process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: stretch;
}

/* ── Cards: left-aligned text + stretch to full height ── */
.residential-process-steps .process-step {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.residential-process-steps .process-step-icon {
    justify-content: flex-start;
    margin-bottom: 0.75rem;
}

/* ── Responsive: single column on mobile ── */
@media (max-width: 768px) {
    .residential-process-steps {
        grid-template-columns: 1fr;
    }
}
