/* Gravity Form Submit Button Styling */
#gform_submit_button_1,
.gform_wrapper .gform_button {
    background: linear-gradient(135deg, #f2a42f 0%, #ef4444 100%);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

/* Hover effect */
#gform_submit_button_1:hover,
.gform_wrapper .gform_button:hover {
    background: linear-gradient(135deg, #ef4444 0%, #f2a42f 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Remove arrow / icon if theme adds one */
.gform_wrapper .gform_button::before,
.gform_wrapper .gform_button::after {
    display: none !important;
    content: none !important;
}

/* Override footer CTA arrow button → show Submit text */
.footer-cta .gform_footer .button,
.footer-form .gform_footer .button {
    width: auto !important;
    height: auto !important;
    min-width: 160px;

    text-indent: 0 !important;
    white-space: nowrap;

    border-radius: 6px !important;
    padding: 14px 36px !important;

    background: linear-gradient(135deg, #f2a42f 0%, #ef4444 100%) !important;
    color: #004a8c !important;

    font-size: 16px !important;
    font-weight: 600 !important;
    text-transform: uppercase;

    background-image: none !important;
    margin-top: 20% !important;
}

/* Remove arrow pseudo-elements */
.footer-cta .gform_footer .button::before,
.footer-cta .gform_footer .button::after,
.footer-form .gform_footer .button::before,
.footer-form .gform_footer .button::after {
    content: none !important;
    display: none !important;
}

/* HOVER STATE – KEEP TEXT, NO ARROW */
.footer-cta .gform_footer .button:hover,
.footer-form .gform_footer .button:hover {
    background: #004a8c !important;
    background-image: none !important;

    color: #ffffff !important;
    text-indent: 0 !important;
}

/* REMOVE ANY ARROW ICONS */
.footer-cta .gform_footer .button::before,
.footer-cta .gform_footer .button::after,
.footer-form .gform_footer .button::before,
.footer-form .gform_footer .button::after {
    content: none !important;
    display: none !important;
}




.spacer.footer-cta.contact {
    /* padding-left: 10%; */
    /* padding-right: 10%; */
    /* margin-left: -10%; */
    width: 100%;
    margin: 0 auto;
}

@media only screen and (max-width: 767px) {

    #gform_submit_button_1,
    .gform_wrapper .gform_button,
    .footer-cta .gform_footer .button,
    .footer-form .gform_footer .button {
        width: 100% !important;
        min-width: 0 !important;
        white-space: normal !important;
        padding: 14px 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }

    .spacer.footer-cta.contact {
        padding-left: 5%;
        padding-right: 5%;
        margin-left: 0;
    }
}