/* ────────────────────────────────────────────────────────────────
   .new-form — shared styling for the multi-step Elementor form
   used on Contact Us and Areas We Service pages.
   The @media (min-width: 1025px) block at the bottom is the
   Areas-page-specific .cta-form-spacing positioning tweak — safely
   ignored on Contact where .cta-form-spacing doesn't exist.
   Icon URLs are relative to this file so they resolve on dev + prod.
   ──────────────────────────────────────────────────────────────── */

#form-field-phone::-webkit-outer-spin-button,
#form-field-phone::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#form-field-phone {
  -moz-appearance: textfield;
}
.new-form .e-form__buttons__wrapper__button-next:after, .new-form .elementor-field-type-submit .elementor-button-text:after{

    content: url('../../../../uploads/2026/06/arrow-right.svg');

}

html .new-form .e-form__buttons__wrapper__button-previous:before{

    content: url('../../../../uploads/2026/06/leftarrow.svg');


}
html .new-form .e-form__buttons__wrapper__button-previous {
    color: #ADADAD !important;
    border-bottom: 2px solid #ADADAD !important;
}
.new-form .e-form__buttons__wrapper__button, .new-form .elementor-field-type-submit .elementor-button-text {

    display: flex;

    gap: 5px;

    align-items: center;

}



.new-form .e-form__indicators__indicator--state-active .e-form__indicators__indicator__number {

    background-color: #ffffff !important;
    border: 2.5px solid #679B32;
    margin: 0;

}

.new-form .e-form__indicators__indicator__number {

    font-size: 0;

    width: 15px;

    height: 15px;

    margin: 0;

    background-color: rgba(57, 56, 54, 0.2) !important;

    border: 0px solid rgba(57, 56, 54, 0.2);

}

.new-form .e-form__indicators__indicator {

    display: flex;

    flex-direction: row;

    gap: 5px;

    align-items: center;

}





.new-form  .e-form__indicators__indicator__label {

    text-wrap: nowrap;

}



.new-form  .e-form__indicators {

    display: flex;

    align-items: center;

}



.new-form .e-form__indicators__indicator__separator {

    margin: 0px !important;

    height: 3px;

    border-radius: 3px;

}



.new-form  .elementor-button.elementor-size-sm.e-form__buttons__wrapper__button {

    min-height: auto;

}



.new-form  .e-form__buttons__wrapper__button-next, .new-form  .e-form__buttons__wrapper__button-previous,.new-form span.elementor-button-text {

    width: auto !important;

    padding-bottom: 10px !important;

    border-bottom: 2px solid #882A2A !important;

}
.new-form .e-form__indicators__indicator--state-completed .e-form__indicators__indicator__number{
    background-color: #679B32 !important;
    border: 2.5px solid #679B32;
}


.new-form .elementor-field-group.e-form__buttons__wrapper.elementor-field-type-next

{

    width: auto !important;

    max-width: 64px;

    margin-left: auto;

    margin-right: 18px;

}



.new-form .elementor-field-type-submit .elementor-button-text {

    margin-left: -20px;

}

.new-form .elementor-field-group.e-form__buttons__wrapper.elementor-field-type-previous {

    max-width: 70px;

    margin-right: auto;

}



.new-form .elementor-field-group.elementor-field-type-submit.e-form__buttons__wrapper {

        width: auto !important;

    max-width: 189px;

    margin-left: auto;

}

.new-form input {
    height: 52px;
}

.new-form  select {
    height: 52px;
}

.new-form {
    padding-left: 14px;
}


.new-form  .elementor-field-group .elementor-field-textual:focus {

    box-shadow: unset !important;

}

/* FOUC prevention — class added by new-form.js before Elementor initializes,
   removed the moment Elementor first modifies the form wrapper (MutationObserver).
   Hides step markers 2-4 and all content field groups that follow them so only
   step 1 fields paint on first load. The class is gone before any interaction. */

/* Areas We Service page — shift the CTA-form column up once the
   user advances past step 1. Contact Us has no .cta-form-spacing
   wrapper, so this block does nothing there. */
@media (max-width: 767px){
    .new-form .e-form__indicators__indicator {
        flex-direction: column-reverse;
    }
}
@media (min-width: 1025px) {
    .cta-form-spacing:has(.e-form__step:not(.elementor-hidden):nth-child(2)) {
    top: 190px;
    margin-bottom: -86px;
    }
    .cta-form-spacing:has(.e-form__step:not(.elementor-hidden):nth-child(3)),  .cta-form-spacing:has(.e-form__step:not(.elementor-hidden):nth-child(4)) {
    top: 190px;
    }
}
