.contact img {
    max-width: 100%;
}
.contact-bg {
    width: 100%;
    background-color: #133537;
    /* full-width background */
    padding-top: 40px;
    /* optional */
    padding-bottom: 40px;
    /* optional */
}
.contact .title {
    text-align: center;
    margin-bottom: 20px;
}

.contact .form__message {
    align-items: flex-start;
}

.contact .icon-success {
    margin-top: 2px;
}

.contact .field {
    margin-bottom: 15px;
}

.contact .field__info {
    margin-bottom: 20px;
}

@media screen and (min-width: 960px) {
    .contact .field {
        margin-bottom: 20px;
    }

    .contact .field__info {
        margin-bottom: 30px;
    }
}

.contact__button {
    margin-top: 30px;
    text-align: center;
}

.contact__button .button {
    padding-left: 50px;
    padding-right: 50px;
}

@media screen and (min-width: 960px) {
    .contact__button {
        margin-top: 40px;
    }
}

@media screen and (min-width: 960px) {
    .contact__fields {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 20px;
    }
}

@media screen and (min-width: 960px) {
    .contact .title {
        margin-bottom: 30px;
    }
}

/* The ipad end responds to the mobile end in vertical screen */
/* @custom-media --tablet (max-width: 959px); */
/* @custom-media --gt-mobile (min-width: 751px); */
/* detectingScreen need to consider the configuration of the tablet */

.contact-top-text-1 {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    color: #133537;
    margin-bottom: 10px;
    line-height: 1.3;
}

.contact-top-text-2 {
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    color: #133537;
    margin: 40px auto 20px auto;
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-description-text {
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: #133537;
    font-size: 18px;
    line-height: 1.65;
    text-align: center;
}

.contact-description-text p {
    margin-bottom: 12px;
}
/* ========================================= */
/* ASK AWAY – MOBILE ONLY FINAL STYLES       */
/* ========================================= */
@media screen and (max-width: 959px) {

    /* Section spacing */
    .contact-bg {
        padding: 40px 16px;
    }

    /* Headings + text */
    .contact-top-text-2 {
        color: #ffffff;
        font-size: 36px;
        margin-top: 0;
    }

    .contact-description-text,
    .contact-description-text p,
    .contact-description-text a {
        color: #d6e2e0;
    }

    .contact-description-text a {
        text-decoration: underline;
    }

    /* Form full width */
    .contact,
    .contact-form,
    .contact form {
        width: 100%;
    }

    /* Stack fields */
    .contact__fields {
        display: block !important;
    }

    /* Field wrapper */
    .contact .field {
        width: 100%;
        margin-bottom: 16px;
        position: relative;
    }

    /* INPUTS – dark outlined style */
    .contact .field__input,
    .contact .text-area {
        width: 100% !important;
        max-width: 100%;
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.35);
        border-radius: 2px;
        padding: 18px 16px;
        font-size: 16px;
        color: #ffffff;
        box-sizing: border-box;
    }

    .contact .field__input {
        height: 56px;
    }

    .contact .text-area {
        min-height: 160px;
        resize: none;
    }

    /* Placeholder */
    .contact .field__input::placeholder,
    .contact .text-area::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

    /* Labels hidden by default */
    .contact .field__label {
        position: absolute;
        top: 6px;
        left: 14px;
        font-size: 11px;
        letter-spacing: 0.04em;
        color: rgba(255, 255, 255, 0.7);
        background-color: #133537;
        padding: 0 6px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
    }

    /* Show label on focus or filled */
    .contact .field__input:focus+.field__label,
    .contact .field__input:not(:placeholder-shown)+.field__label,
    .contact .text-area:focus+.field__label,
    .contact .text-area:not(:placeholder-shown)+.field__label {
        opacity: 1;
    }

    /* Focus state */
    .contact .field__input:focus,
    .contact .text-area:focus {
        outline: none;
        border-color: #ffffff;
    }

    /* Button */
    .contact-dynamic-button {
        max-width: 100% !important;
        border-radius: 999px;
        margin-top: 10px;
    }

    /* Bottom legal text */
    .contact-bottom-text,
    .contact-bottom-text p,
    .contact-bottom-text a {
        color: rgba(255, 255, 255, 0.7);
        font-size: 12px;
    }

}