.__zcs_services {
    margin: 0 auto;
    padding: 80px 24px;
}

.__zcs_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

/* ---------- Carte générique ---------- */

.__zcs_card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 430px;
    border-radius: var(--zcs-border-radius-md);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.__zcs_card:hover {
    transform: translateY(-6px);
}

/* ---------- Variante claire (Equipment & Machinery) ---------- */

.__zcs_card--light {
    background: url("../image/01.jpg") no-repeat top center;
    background-size: cover;
    border: 1px solid #e1e8f0;
    box-shadow: 0 12px 28px rgba(16, 35, 59, 0.08);
}

.__zcs_card-media {
    position: relative;
    flex: 1 1 auto;
    min-height: 250px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.__zcs_card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 55%, #ffffff 94%);
    pointer-events: none;
}

#__zcs_card-equipment,
#__zcs_card-equipment .__zcs_card-media {
    overflow: visible;
}

.__zcs_tractor-img {
    position: relative;
    top: -30px;
    z-index: 1;
    width: 98%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 14px 14px rgba(16, 35, 59, 0.18));
}

/* ---------- Variantes couleur pleine (Irrigation / Inputs) ---------- */

.__zcs_card--blue {
    background: #004680;
    box-shadow: 0 12px 28px rgba(0, 63, 132, 0.28);
}

.__zcs_card--green {
    background: #20805C;
    box-shadow: 0 12px 28px rgba(30, 108, 40, 0.24);
}

/* ---------- Corps de carte / texte ---------- */

.__zcs_card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 22px 30px 36px;
}

#__zcs_card-equipment .__zcs_card-body {
    gap: 2px;
}

.__zcs_card-body--center {
    flex: 1;
    justify-content: center;
}

.__zcs_card-title {
    margin: 0;
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.__zcs_card-title.__zcs_card-title--dark {
    color: var(--zcs-primary-color);
    font-size: 2.3rem;
}

.__zcs_card-title--light {
    color: #ffffff;
}

/* ---------- Emplacements d'icônes (placeholders) ---------- */

.__zcs_icon-placeholder--small {
    width: 52px;
    height: 52px;
}

.__zcs_icon-placeholder--small svg {
    fill: var(--zcs-primary-color);
}

.__zcs_icon-placeholder--large {
    width: 130px;
    height: auto;
    margin-bottom: 30px;
}

.__zcs_icon-placeholder--large svg {
    fill: var(--zcs-white);
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 992px) {
    .__zcs_grid {
        grid-template-columns: 1fr 1fr;
    }

    .__zcs_card:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .__zcs_services {
        padding: 32px 16px;
    }

    .__zcs_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .__zcs_card:first-child {
        grid-column: auto;
    }

    .__zcs_card {
        min-height: 360px;
    }

    .__zcs_card-title {
        font-size: 1.9rem;
    }

}