/* ==========================================================
   STAGE 8 — CTA KONSULTASI SEMEN
========================================================== */

.semen-cta-section {
    position: relative;
    isolation: isolate;

    width: 100%;
    min-height: 250px;
    padding:
        clamp(48px, 5vw, 72px) 0;

    background-color: #090b0c;
    color: #ffffff;

    overflow: hidden;
}


/* ==========================================================
   DARK TEXTURED BACKGROUND
========================================================== */

.semen-cta-background {
    position: absolute;
    inset: 0;
    z-index: -3;

    background:
        radial-gradient(circle at 15% 25%,
            rgba(255, 255, 255, 0.045),
            transparent 31%),
        radial-gradient(circle at 82% 70%,
            rgba(255, 255, 255, 0.035),
            transparent 34%),
        linear-gradient(115deg,
            rgba(255, 255, 255, 0.012) 0%,
            rgba(0, 0, 0, 0.23) 50%,
            rgba(255, 255, 255, 0.01) 100%),
        #090b0c;
}

.semen-cta-background::before {
    position: absolute;
    inset: 0;

    background-image:
        repeating-linear-gradient(17deg,
            transparent 0,
            transparent 31px,
            rgba(255, 255, 255, 0.014) 32px,
            transparent 33px),
        repeating-linear-gradient(-25deg,
            transparent 0,
            transparent 57px,
            rgba(255, 255, 255, 0.011) 58px,
            transparent 59px);

    content: "";

    opacity: 0.8;
}

.semen-cta-background::after {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.08),
            transparent 45%,
            rgba(0, 0, 0, 0.1));

    content: "";
}


/* ==========================================================
   LAYOUT
========================================================== */

.semen-cta-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr) minmax(340px, 0.68fr);
    align-items: center;
    gap: clamp(90px, 10vw, 175px);

    width: 100%;
    min-height: 150px;
}


/* ==========================================================
   CONTENT
========================================================== */

.semen-cta-content {
    position: relative;
    z-index: 2;

    max-width: 720px;
}

.semen-cta-title {
    margin: 0;

    color: #ffffff;

    font-size: clamp(35px, 3.4vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1.9px;
}

.semen-cta-description {
    max-width: 700px;
    margin: 17px 0 0;

    color: rgba(255, 255, 255, 0.78);

    font-size: clamp(13px, 0.95vw, 16px);
    font-weight: 400;
    line-height: 1.75;
}


/* ==========================================================
   ACTIONS
========================================================== */

.semen-cta-actions {
    position: relative;
    z-index: 3;

    display: flex;
    flex-direction: column;
    gap: 13px;

    width: 100%;
    max-width: 410px;
    justify-self: end;
}

.semen-cta-whatsapp,
.semen-cta-secondary {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 57px;
    padding:
        13px 22px;

    border-radius: 5px;

    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;

    transition:
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.semen-cta-whatsapp {
    gap: 13px;

    background:
        linear-gradient(105deg,
            #ff2500 0%,
            #e71900 100%);

    border: 1px solid #ff2500;

    color: #ffffff;

    box-shadow:
        0 12px 28px rgba(239, 25, 0, 0.18);
}

.semen-cta-whatsapp:hover {
    background:
        linear-gradient(105deg,
            #e81f00 0%,
            #c91400 100%);

    border-color: #e81f00;

    box-shadow:
        0 15px 36px rgba(239, 25, 0, 0.27);

    transform: translateY(-3px);
}

.semen-cta-whatsapp-icon {
    flex: 0 0 auto;

    width: 29px;
    height: 29px;
}

.semen-cta-secondary {
    background-color: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.8);

    color: #ffffff;
}

.semen-cta-secondary:hover {
    background-color: #ffffff;
    border-color: #ffffff;

    color: #0b0d0e;

    transform: translateY(-3px);
}


/* ==========================================================
   RED CHEVRON
========================================================== */

.semen-cta-chevron {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 54%;
    z-index: 1;

    width: 125px;

    pointer-events: none;
}

.semen-cta-chevron-top,
.semen-cta-chevron-bottom {
    position: absolute;
    left: 35px;

    width: 30px;
    height: 61%;

    background:
        linear-gradient(180deg,
            #f42900 0%,
            #dc1500 100%);
}

.semen-cta-chevron-top {
    top: -30px;

    transform: rotate(-34deg);
    transform-origin: bottom center;
}

.semen-cta-chevron-bottom {
    bottom: -30px;

    transform: rotate(34deg);
    transform-origin: top center;
}


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

@media (max-width: 1380px) {
    .semen-cta-section {
        min-height: 235px;
    }

    .semen-cta-layout {
        grid-template-columns:
            minmax(0, 1fr) minmax(320px, 0.65fr);
        gap: 95px;
    }

    .semen-cta-title {
        font-size: 43px;
    }

    .semen-cta-description {
        font-size: 13px;
    }

    .semen-cta-actions {
        max-width: 380px;
    }

    .semen-cta-chevron {
        left: 53%;
        width: 110px;
    }

    .semen-cta-chevron-top,
    .semen-cta-chevron-bottom {
        left: 31px;

        width: 27px;
    }
}


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

@media (max-width: 1050px) {
    .semen-cta-layout {
        grid-template-columns:
            minmax(0, 1fr) minmax(290px, 0.7fr);
        gap: 65px;
    }

    .semen-cta-title {
        font-size: 38px;
    }

    .semen-cta-chevron {
        left: 51%;

        opacity: 0.82;
    }
}


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

@media (max-width: 820px) {
    .semen-cta-section {
        min-height: 0;
        padding:
            65px 0;
    }

    .semen-cta-layout {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .semen-cta-content {
        max-width: 650px;
    }

    .semen-cta-title {
        font-size: clamp(39px, 7vw, 50px);
    }

    .semen-cta-actions {
        max-width: 480px;
        justify-self: start;
    }

    .semen-cta-chevron {
        top: auto;
        right: -20px;
        bottom: -145px;
        left: auto;

        height: 390px;

        opacity: 0.28;

        transform: rotate(10deg);
    }
}


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

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

    .semen-cta-layout {
        gap: 32px;
    }

    .semen-cta-title {
        font-size: 34px;
        line-height: 1.18;
        letter-spacing: -1.4px;
    }

    .semen-cta-title br {
        display: none;
    }

    .semen-cta-description {
        margin-top: 17px;

        font-size: 13px;
        line-height: 1.7;
    }

    .semen-cta-actions {
        gap: 12px;
    }

    .semen-cta-whatsapp,
    .semen-cta-secondary {
        min-height: 56px;
        padding:
            13px 17px;

        font-size: 13px;
    }

    .semen-cta-whatsapp-icon {
        width: 27px;
        height: 27px;
    }

    .semen-cta-chevron {
        display: none;
    }
}


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

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

    .semen-cta-whatsapp {
        gap: 10px;

        font-size: 12px;
    }

    .semen-cta-secondary {
        font-size: 12px;
    }
}