/* =========================================================
   CTA CONTACT
========================================================= */

.cta-contact {

    padding: 0 24px 50px;

    background: #f5f5f7;

}

/* =========================================================
   CONTAINER
========================================================= */

.cta-contact__container {

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 24px 30px;

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            #03143f 0%,
            #07194b 55%,
            #0d2a78 100%
        );

    border: 1px solid rgba(255,255,255,0.08);

    overflow: hidden;

}

/* =========================================================
   LEFT
========================================================= */

.cta-contact__left {

    display: flex;

    align-items: center;

    gap: 18px;

}

/* =========================================================
   ICON
========================================================= */

.cta-contact__icon {

    width: 64px;
    height: 64px;

    min-width: 64px;

    border-radius: 50%;

    background:
        linear-gradient(
            180deg,
            rgba(255,132,0,0.16) 0%,
            rgba(255,132,0,0.08) 100%
        );

    display: flex;

    align-items: center;
    justify-content: center;

}

.cta-contact__icon svg {

    width: 30px;
    height: 30px;

    stroke: var(--color-secondary);

    stroke-width: 2;

}

/* =========================================================
   CONTENT
========================================================= */

.cta-contact__title {

    font-size: 18px;

    font-weight: 800;

    line-height: 1.3;

    color: #ffffff;

    margin-bottom: 6px;

}

.cta-contact__text {

    font-size: 14px;

    line-height: 1.6;

    color: rgba(255,255,255,0.82);

}

/* =========================================================
   BUTTON
========================================================= */

.cta-contact__btn {

    height: 52px;

    padding: 0 24px;

    border-radius: 10px;

    background: var(--color-secondary);

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    color: #ffffff;

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    white-space: nowrap;

    transition: var(--transition-fast);

}

.cta-contact__btn svg {

    width: 16px;
    height: 16px;

    stroke-width: 2.4;

}

.cta-contact__btn:hover {

    background: var(--color-secondary-hover);

    transform: translateY(-2px);

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 768px) {

    .cta-contact {

        padding: 0 16px 40px;

    }

    .cta-contact__container {

        flex-direction: column;

        align-items: flex-start;

        padding: 22px;

    }

    .cta-contact__left {

        align-items: flex-start;

    }

    .cta-contact__icon {

        width: 54px;
        height: 54px;

        min-width: 54px;

    }

    .cta-contact__icon svg {

        width: 24px;
        height: 24px;

    }

    .cta-contact__title {

        font-size: 16px;

    }

    .cta-contact__text {

        font-size: 13px;

    }

    .cta-contact__btn {

        width: 100%;

        height: 48px;

        font-size: 14px;

    }

}