/* =============================================
   GREEN CARE — SERVICES PAGE STYLES
   ============================================= */

/* === REASSURANCE STRIP === */
.reassurance-strip {
    background: var(--green-700);
    padding: 1.25rem 0;
}

.reassurance-strip__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.reassurance-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--white);
}

.reassurance-item svg {
    width: 18px;
    height: 18px;
    color: var(--sage-300);
}

/* === SERVICE BLOCKS (alternating layout) === */
.service-block {
    padding: var(--section-py) 0;
    border-bottom: 1px solid var(--gray-200);
}

.service-block:last-of-type {
    border-bottom: none;
}

.service-block--alt {
    background: var(--sage-50);
}

.service-block__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.service-block--reverse .service-block__inner {
    direction: rtl;
}

.service-block--reverse .service-block__inner>* {
    direction: ltr;
}

.service-block__media {}

.service-block__img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    aspect-ratio: 4/3;
    display: block;
}

.service-block__icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-lg);
    background: var(--sage-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-block__icon-wrap svg {
    width: 36px;
    height: 36px;
    color: var(--green-700);
}

.service-block__label {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sage-400);
    margin-bottom: 0.5rem;
    display: block;
}

.service-block h2 {
    font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
    color: var(--green-800);
    margin-bottom: 1rem;
}

.service-block__desc {
    font-size: var(--text-lg);
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-block__meta {
    margin-bottom: 1.5rem;
}

.service-block__meta-label {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-700);
    margin-bottom: 0.5rem;
}

.service-block__meta p {
    font-size: var(--text-sm);
    color: var(--gray-600);
    line-height: 1.6;
}

.service-block__included {
    margin-bottom: 2rem;
}

.service-block__included-label {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-700);
    margin-bottom: 0.75rem;
}

.service-block__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-block__list-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: var(--text-sm);
    color: var(--gray-600);
}

.service-block__list-item svg {
    width: 16px;
    height: 16px;
    color: var(--green-700);
    flex-shrink: 0;
}

/* === RESPONSIVE SERVICES === */
@media (max-width: 900px) {
    .service-block__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .service-block--reverse .service-block__inner {
        direction: ltr;
    }

    .service-block__media {
        order: -1;
    }
}

@media (max-width: 600px) {
    .reassurance-strip__inner {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        padding: 0 1.5rem;
    }
}