/* ==========================================================
   STAGE 7 — CARA MEMESAN SEMEN
========================================================== */

.semen-order-section {
    width: 100%;
    padding:
        clamp(68px, 7vw, 100px) 0 clamp(76px, 8vw, 115px);

    background-color: #ffffff;
}


/* ==========================================================
   HEADER
========================================================== */

.semen-order-header {
    width: 100%;
    margin-bottom: 34px;
}

.semen-order-title {
    margin: 0;

    color: #090909;

    font-size: clamp(34px, 3.2vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1.7px;
}


/* ==========================================================
   PROCESS
========================================================== */

.semen-order-process {
    display: grid;
    grid-template-columns:
        minmax(130px, 1fr) minmax(60px, 0.55fr) minmax(130px, 1fr) minmax(60px, 0.55fr) minmax(130px, 1fr) minmax(60px, 0.55fr) minmax(130px, 1fr) minmax(60px, 0.55fr) minmax(130px, 1fr);
    align-items: start;

    width: 100%;
}


/* ==========================================================
   STEP
========================================================== */

.semen-order-step {
    display: flex;
    flex-direction: column;
    align-items: center;

    min-width: 0;

    text-align: center;
}

.semen-order-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 43px;
    height: 43px;
    margin-bottom: 19px;

    background-color: #ffffff;
    border: 2px solid #ef0000;
    border-radius: 50%;

    color: #ef0000;

    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.semen-order-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 78px;
    height: 78px;

    color: #111111;

    transition: transform 220ms ease;
}

.semen-order-icon svg {
    display: block;

    width: 100%;
    height: 100%;
}

.semen-order-step:hover .semen-order-icon {
    transform: translateY(-4px);
}

.semen-order-step-title {
    margin: 17px 0 0;

    color: #303030;

    font-size: clamp(12px, 0.95vw, 15px);
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: -0.15px;
}


/* ==========================================================
   CONNECTOR
========================================================== */

.semen-order-connector {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    width: 100%;
    margin-top: 91px;
}

.semen-order-line {
    display: block;

    width: 100%;
    height: 1px;

    background-color: #d7d7d7;
}

.semen-order-dot {
    display: block;

    width: 9px;
    height: 9px;
    margin-inline: 8px;

    background-color: #ef2414;
    border-radius: 50%;
}


/* ==========================================================
   LARGE LAPTOP
========================================================== */

@media (max-width: 1380px) {
    .semen-order-process {
        grid-template-columns:
            minmax(120px, 1fr) minmax(44px, 0.4fr) minmax(120px, 1fr) minmax(44px, 0.4fr) minmax(120px, 1fr) minmax(44px, 0.4fr) minmax(120px, 1fr) minmax(44px, 0.4fr) minmax(120px, 1fr);
    }

    .semen-order-number {
        width: 40px;
        height: 40px;

        font-size: 13px;
    }

    .semen-order-icon {
        width: 70px;
        height: 70px;
    }

    .semen-order-step-title {
        font-size: 12px;
    }

    .semen-order-connector {
        margin-top: 85px;
    }
}


/* ==========================================================
   SMALL LAPTOP
========================================================== */

@media (max-width: 1050px) {
    .semen-order-process {
        grid-template-columns: repeat(5, minmax(195px, 1fr));
        gap: 16px;

        padding:
            4px 2px 22px;

        overflow-x: auto;

        scroll-snap-type: x mandatory;
    }

    .semen-order-step {
        min-height: 270px;
        padding:
            27px 20px;

        background-color: #ffffff;
        border: 1px solid #dddddd;
        border-radius: 10px;

        scroll-snap-align: start;
    }

    .semen-order-connector {
        display: none;
    }

    .semen-order-number {
        margin-bottom: 20px;
    }

    .semen-order-icon {
        width: 86px;
        height: 86px;
    }

    .semen-order-step-title {
        margin-top: 19px;

        font-size: 15px;
    }
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 800px) {
    .semen-order-section {
        padding:
            64px 0 78px;
    }

    .semen-order-header {
        margin-bottom: 28px;
    }

    .semen-order-title {
        font-size: 40px;
        letter-spacing: -1.4px;
    }

    .semen-order-process {
        grid-template-columns: repeat(5, 210px);
    }
}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 560px) {
    .semen-order-section {
        padding:
            52px 0 66px;
    }

    .semen-order-header {
        margin-bottom: 24px;
    }

    .semen-order-title {
        font-size: 34px;
        letter-spacing: -1.2px;
    }

    .semen-order-process {
        display: flex;
        flex-direction: column;
        gap: 13px;

        padding: 0;

        overflow: visible;
    }

    .semen-order-step {
        display: grid;
        grid-template-columns:
            42px 72px minmax(0, 1fr);
        align-items: center;
        gap: 15px;

        width: 100%;
        min-height: 112px;
        padding:
            18px 17px;

        text-align: left;
    }

    .semen-order-number {
        width: 40px;
        height: 40px;
        margin: 0;

        font-size: 13px;
    }

    .semen-order-icon {
        width: 68px;
        height: 68px;
    }

    .semen-order-step-title {
        margin: 0;

        font-size: 15px;
    }

    .semen-order-step-title br {
        display: none;
    }
}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 390px) {
    .semen-order-title {
        font-size: 30px;
    }

    .semen-order-step {
        grid-template-columns:
            37px 60px minmax(0, 1fr);
        gap: 11px;

        padding:
            15px 13px;
    }

    .semen-order-number {
        width: 36px;
        height: 36px;

        font-size: 12px;
    }

    .semen-order-icon {
        width: 57px;
        height: 57px;
    }

    .semen-order-step-title {
        font-size: 13px;
    }
}