/* ============================================================
   Section CONTACT — Formulaire 2 étapes (Figma 7:3626 + 7:3896)
   Rendu en MODAL : masqué par défaut, ouvert via JS au clic
   sur les liens href="#contact" de la page.
   ============================================================ */
@media (max-width: 767px) {
   html:has(.fac-elec__contact-modal.is-open){
      overflow: hidden;
   }
}
/* ----- Modal overlay ----- */
.fac-elec__contact-modal {
    position: fixed;
    inset: 0;
    z-index: 100001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 200ms ease, visibility 200ms ease;
    --fac-elec-orange: #FF6150;
    --fac-elec-orange-dark: #FF4B2B;
    --fac-elec-orange-soft: #FFF7ED;
    --fac-elec-yellow: #F5A623;
    --fac-elec-ink-700: #1E2939;
    --fac-elec-ink-500: #6A7282;
    --fac-elec-ink-400: #6B7280;
    --fac-elec-ink-900: #101828;
    --fac-elec-gray-50: #F9FAFB;
    --fac-elec-gray-100: #F3F4F6;
    --fac-elec-gray-200: #E5E7EB;
    --fac-elec-white: #FFFFFF;
    --fac-elec-radius-pill: 999px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    
    @media (max-width: 767px) {
       padding: 15px 10px;
    }
}
.fac-elec__contact-modal[hidden] { display: none; }
.fac-elec__contact-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.fac-elec__contact-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(16, 24, 40, 0.55);
    backdrop-filter: blur(2px);
    cursor: pointer;
}

.fac-elec__contact-modal-dialog {
    position: relative;
    background: var(--fac-elec-white);
    border-radius: 24px;
    box-shadow: 0 30px 80px -10px rgba(0, 0, 0, 0.35);
    width: min(1180px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    transform: translateY(12px) scale(0.985);
    transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
    
    @media (max-width: 767px) {
       overflow: hidden;
    }
}
.fac-elec__contact-modal.is-open .fac-elec__contact-modal-dialog {
    transform: translateY(0) scale(1);
}

.fac-elec__contact-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    padding: 0;
    background: var(--fac-elec-white);
    border: 1px solid var(--fac-elec-gray-200);
    color: var(--fac-elec-ink-700);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transform: scale(1);
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out,border 0.3s ease-in-out;
}
.fac-elec__contact-modal-close:hover {
    background: var(--fac-elec-gray-50);
    border: 1px solid var(--fac-elec-gray-200);
    transform: scale(1.3);
}

/* Empêche le scroll de la page quand la modal est ouverte 
body.fac-elec__contact-modal-open { overflow: hidden; }*/

.fac-elec__contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 720px;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
}

/* Figma : sidebar marketing à GAUCHE (gradient), formulaire blanc à DROITE.
   Le partial PHP rend la forme avant la sidebar pour l'ordre DOM logique
   (form first = accessibilité) ; on remet l'ordre visuel ici. */
.fac-elec__contact-pane--side { order: 1; }
.fac-elec__contact-pane--form { order: 2; }

.fac-elec__contact-pane {
    position: relative;
    padding: 55px 50px 40px 50px;
    display: flex;
    flex-direction: column;
}
.fac-elec__contact-pane--form {
    background: var(--fac-elec-white);
    justify-content: center;
    justify-content: flex-start;
}
.fac-elec__contact-pane--side {
    background: linear-gradient(155deg, #F3F4F6 0%, #E5E7EB 100%);
    overflow: hidden;
}

/* -------- Stepper -------- */
.fac-elec__contact-stepper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    max-width: 445px;
    @media (max-width: 980px) {
       width: 95%;
       margin: 0 auto 30px;
    }
    @media (max-width: 767px) {
       margin-bottom: 20px;
    }
}
.fac-elec__contact-step {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.fac-elec__contact-step-bullet {
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--fac-elec-gray-100);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 200ms ease;
}
.fac-elec__contact-step-num {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    color: #9CA3AF;
    transition: color 200ms ease;
}
.fac-elec__contact-step-check {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
}
.fac-elec__contact-step-label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #9CA3AF;
    transition: color 200ms ease;
    white-space: nowrap;
}
.fac-elec__contact-step--active .fac-elec__contact-step-bullet { background: var(--fac-elec-orange); }
.fac-elec__contact-step--active .fac-elec__contact-step-num    { color: var(--fac-elec-white); }
.fac-elec__contact-step--active .fac-elec__contact-step-label  { color: var(--fac-elec-orange); font-weight: 600; }
.fac-elec__contact-step--done   .fac-elec__contact-step-bullet { background: #ECFDF5; }
.fac-elec__contact-step--done   .fac-elec__contact-step-num    { display: none; }
.fac-elec__contact-step--done   .fac-elec__contact-step-check  { display: inline-flex; }
.fac-elec__contact-step--done   .fac-elec__contact-step-label  { color: #22C55E; font-weight: 500; }

.fac-elec__contact-step-sep {
    flex: 1;
    height: 1px;
    background: var(--fac-elec-gray-200);
    min-width: 16px;
    
    @media (max-width: 767px) {
       display: none;
    }
}
 @media (max-width: 767px) {
    .fac-elec__contact-step {display: none;}
    .fac-elec__contact-step--active{display: inline-flex;}
 }

/* -------- Titres / paragraphes étape -------- */
.fac-elec__contact-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 26px;
    line-height: 1.4;
    color: var(--fac-elec-ink-900);
    margin: 0 0 8px 0;
    max-width: 445px;
}
.fac-elec__contact-stepdesc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.4;
    color: var(--fac-elec-ink-500);
    margin: 0 0 24px 0;
    max-width: 445px;
    @media (max-width: 767px) {
       font-size: 12px;
       margin-bottom: 15px;
    }
}

/* -------- Formulaire wrapper -------- */
.fac-elec__contact-form-wrap {
   .wpcf7 form.wpcf7-form p {
      margin: 0 !important;
   }
}
.fac-elec__contact-form-wrap .wpcf7-form { 
   display: flex; 
   flex-direction: column; 
   gap: 16px;
   @media (max-width: 767px) {
      gap:10px;
   }
}
.facelec-form__step[hidden] { display: none !important; }
.facelec-form__row{
   display: flex;
   flex-wrap: wrap;
   gap:1rem;
   justify-content: space-between;
   
   @media (max-width: 767px) {
      gap:0;  
   }
   
   .facelec-field{
      max-width: calc(50% - 1rem);
      @media (max-width: 767px) {
         max-width: 100%;
      }
   }
}

/* -------- Labels -------- */
.facelec-field {
    /*display: flex;
    flex-direction: column;
    gap: 6px;*/
    margin-bottom: 16px;
    p{
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    br{
       display: none;
    }
}
.facelec-field__label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    line-height: 1.3;
    color: #364153;
}
.facelec-field__req { color: var(--fac-elec-orange-dark); margin-left: 2px; }

/* -------- Inputs -------- */
.fac-elec__contact-form-wrap input[type="text"],
.fac-elec__contact-form-wrap input[type="email"],
.fac-elec__contact-form-wrap input[type="tel"],
.fac-elec__contact-form-wrap select {
    width: 100%;
    padding: 10px 12px 10px 36px;
    margin: 0 !important;
    background: var(--fac-elec-gray-50) !important;
    border: 1px solid var(--fac-elec-gray-200);
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: var(--fac-elec-ink-900);
    transition: border-color 150ms ease, background-color 150ms ease;
}
.fac-elec__contact-form-wrap input::placeholder { color: rgba(10, 10, 10, 0.5); }
.fac-elec__contact-form-wrap input:focus,
.fac-elec__contact-form-wrap select:focus {
    outline: none;
    border-color: var(--fac-elec-orange);
    background: var(--fac-elec-white) !important;
}

/* -------- Icônes décoratives input -------- */
.fac-elec__contact-form-wrap .wpcf7-form-control-wrap {
    position: relative;
    display: block;
}
.fac-elec__contact-form-wrap .wpcf7-form-control-wrap::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 12.5px;
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.45;
    pointer-events: none;
    z-index: 1;
}
.fac-elec__contact-form-wrap .wpcf7-form-control-wrap[data-name="prenom"]::before,
.fac-elec__contact-form-wrap .wpcf7-form-control-wrap[data-name="nom"]::before {
    background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23364153' stroke-width='1.5'%3E%3Ccircle cx='8' cy='5' r='3'/%3E%3Cpath d='M2 14c0-3 2.7-5 6-5s6 2 6 5'/%3E%3C/svg%3E");
}
.fac-elec__contact-form-wrap .wpcf7-form-control-wrap[data-name="email"]::before {
    background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23364153' stroke-width='1.5'%3E%3Crect x='2' y='3.5' width='12' height='9' rx='1.5'/%3E%3Cpath d='M2.5 4.5L8 9l5.5-4.5'/%3E%3C/svg%3E");
}
.fac-elec__contact-form-wrap .wpcf7-form-control-wrap[data-name="telephone"]::before {
    background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23364153' stroke-width='1.5'%3E%3Cpath d='M2.5 2c0-.55.45-1 1-1h2l1 3-1.5 1A8 8 0 009.5 11.5L10.5 10l3 1v2c0 .55-.45 1-1 1A11 11 0 012.5 2z'/%3E%3C/svg%3E");
}
.fac-elec__contact-form-wrap .wpcf7-form-control-wrap[data-name="societe"]::before {
    background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23364153' stroke-width='1.5'%3E%3Crect x='2' y='3' width='12' height='11' rx='1'/%3E%3Cpath d='M5 6h6M5 9h6M7 14v-3h2v3'/%3E%3C/svg%3E");
}
.fac-elec__contact-form-wrap .wpcf7-form-control-wrap[data-name="secteur"]::before {
    background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23364153' stroke-width='1.5'%3E%3Cpath d='M2 6L8 2l6 4M3 6v7h10V6M6 10h4'/%3E%3C/svg%3E");
}
.fac-elec__contact-form-wrap .wpcf7-form-control-wrap[data-name="effectif"]::before {
    background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23364153' stroke-width='1.5'%3E%3Ccircle cx='6' cy='6' r='2.5'/%3E%3Cpath d='M2 14c0-2.2 1.8-4 4-4s4 1.8 4 4'/%3E%3Ccircle cx='11.5' cy='6' r='2'/%3E%3Cpath d='M9.5 14c0-2 1.3-3.5 3-3.5'/%3E%3C/svg%3E");
}

/* -------- Selects (icône chevron à droite) -------- */
.fac-elec__contact-form-wrap select {
    padding-right: 36px;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2399A1AF' stroke-width='1.5'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 16px;
}

/* -------- Boutons -------- */
.facelec-form__btn,
.fac-elec__contact-form-wrap .wpcf7-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 24px;
    border-radius: 14px;
    border: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
    border-width:1px;
    border-style: solid;
    transition: background-color 150ms ease, color 150ms ease, transform 60ms ease;
    @media (max-width: 767px) {
       font-size: 13px;
    }
}
@media (max-width: 767px) {
   .fac-elec__contact-form-wrap .wpcf7-submit {
      padding: 10px 12px;
   }
}
.facelec-form__btn--next,
.fac-elec__contact-modal .fac-elec__contact-form-wrap .wpcf7-submit,
.fac-elec__contact-modal .fac-elec__contact-form-wrap input[type="submit"].wpcf7-submit {
    background: #D1D5DC !important;
    background-image: none !important;
    border-color:#D1D5DC !important;
    color: var(--fac-elec-white) !important;
    cursor: not-allowed;
    text-transform: none;
}
/* Activation orange : appliquée par JS via classe .is-active sur submit step 2
   (CGU coché) OU directement sur le bouton step 1 next quand 5 champs valides. */
.facelec-form__btn--next.is-active,
.fac-elec__contact-modal .fac-elec__contact-form-wrap .wpcf7-submit.is-active,
.fac-elec__contact-modal .fac-elec__contact-form-wrap input[type="submit"].wpcf7-submit.is-active {
    background: var(--fac-elec-orange) !important;
    border-color:var(--fac-elec-orange) !important;
    cursor: pointer;
}
.facelec-form__btn--next.is-active:hover,
.fac-elec__contact-modal .fac-elec__contact-form-wrap .wpcf7-submit.is-active:hover,
.fac-elec__contact-modal .fac-elec__contact-form-wrap input[type="submit"].wpcf7-submit.is-active:hover {
    background: var(--fac-elec-orange-dark) !important;
}
.facelec-form__btn--back {
    background: var(--fac-elec-white);
    color: #4A5565;
    border: 1px solid var(--fac-elec-gray-200);
    font-weight: 600;
    font-size: 14px;
    width: auto;
    padding: 11px 15px;
    flex-shrink: 0;
    
    @media (max-width: 767px) {
       padding: 10px 12.5px;
       font-size: 12px;
    }
    
}
.facelec-form__btn--back:hover { background: #333333; }
.facelec-form__btn:active,
.fac-elec__contact-form-wrap .wpcf7-submit:active { }
.facelec-form__btn-icon { font-size: 18px; line-height: 1; }

.facelec-form__actions {
    
    margin-top: 16px;
    br{
       display: none;
    }
    p{
      display: flex;
      gap: 6px;
      align-items: center;
      @media (max-width: 767px) {
         gap:3px;
         flex-direction: column-reverse;
      }
    }
    @media (max-width: 767px) {
       margin-top: 12.5px;
    }
}
.facelec-form__actions .facelec-form__btn--back { 
   width: auto;
   text-transform: none;
   margin: 0;
}
.fac-elec__contact-modal .fac-elec__contact-form-wrap .wpcf7-submit{
   margin: 0;
}
.facelec-form__actions .wpcf7-submit { flex: 1; }
.facelec-form__next-wrap {}
..facelec-form__actions .wpcf7-spinner{
   margin: 0;
}

/* -------- Acceptance -------- */
.fac-elec__contact-form-wrap .wpcf7-form-control-wrap[data-name="cgu"]::before{display: none}
.fac-elec__contact-form-wrap .wpcf7-acceptance { display: block; margin-top: 16px; }
.fac-elec__contact-form-wrap .wpcf7-list-item { margin: 0 !important;}
 .fac-elec__contact-form-wrap .wpcf7-list-item label{display: flex; align-items: flex-start; gap: 6px; }
.fac-elec__contact-form-wrap .wpcf7-list-item-label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.4;
    color: var(--fac-elec-ink-500);
}
.fac-elec__contact-form-wrap .wpcf7-acceptance input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--fac-elec-orange);
    margin-top: 1px;
    flex-shrink: 0;
}
.fac-elec__contact-form-wrap .wpcf7-acceptance a { color: var(--fac-elec-ink-400); font-weight: 600; }

/* -------- Erreurs (CF7 + validation front step 1) -------- */
.fac-elec__contact-form-wrap .wpcf7-not-valid-tip,
.fac-elec__contact-form-wrap .facelec-field__tip {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    line-height: 18px;
    color: #DC2626;
    margin-top: 4px;
}
.fac-elec__contact-form-wrap input.facelec-field--invalid,
.fac-elec__contact-form-wrap input[aria-invalid="true"],
.fac-elec__contact-form-wrap select.facelec-field--invalid,
.fac-elec__contact-form-wrap select[aria-invalid="true"] {
    border-color: #DC2626 !important;
    background: #FEF2F2;
}
.fac-elec__contact-form-wrap .wpcf7-response-output {
    margin: 16px 0 0 0;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    border: 1px solid currentColor;
}

/* -------- Footer-links étape 1 -------- */
.fac-elec__contact-form-wrap .wpcf7 form.wpcf7-form .facelec-form__legal {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.5;
    color: #99A1AF;
    text-align: center;
    max-width: 45ch;
    margin: 16px auto 0 !important;
}
.facelec-form__legal a { color: var(--fac-elec-ink-400); text-decoration: underline; }
.fac-elec__contact-form-wrap .wpcf7 form.wpcf7-form .facelec-form__login {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.5;
    color: var(--fac-elec-ink-500);
    text-align: center;
    max-width: 45ch;
    margin: 16px auto 0 !important;
}
.facelec-form__login a { color: var(--fac-elec-orange); }

/* ============================================================
   PANNEAU DROIT — sidebar marketing
   ============================================================ */
.fac-elec__contact-side-blur {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}
.fac-elec__contact-side-blur--orange {
    width: 384px;
    height: 384px;
    background: var(--fac-elec-orange-dark);
    filter: blur(160px);
    top: -115px;
    right: -160px;
}
.fac-elec__contact-side-blur--yellow {
    width: 288px;
    height: 288px;
    background: var(--fac-elec-yellow);
    filter: blur(120px);
    bottom: 80px;
    left: -88px;
}

.fac-elec__contact-side-logo {
    position: relative;
    z-index: 1;
    margin-bottom: 12px;
    @media (max-width: 767px) {
       margin-bottom: 10px;
    }
}
.fac-elec__contact-side-logo img {
    display: block;
    max-width: 176px;
    height: auto;
}

.fac-elec__contact-side-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    @media (max-width: 980px) {
       gap:10px;
    }
}

.fac-elec__contact-side-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: var(--fac-elec-radius-pill);
    background: rgba(255, 75, 43, 0.1);
    border: 1px solid rgba(255, 75, 43, 0.3);
    align-self: flex-start;
}
.fac-elec__contact-side-pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--fac-elec-orange-dark);
    opacity: 0.5;
}
.fac-elec__contact-side-pill-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 0.04em;
    color: var(--fac-elec-orange);
    @media (max-width: 767px) {
       font-size: 10px;
    }
}

.fac-elec__contact-side-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 30px;
    line-height: 1.2;
    color: var(--fac-elec-ink-700);
    margin: 0;
    max-width: 24ch;
    @media (max-width: 1280px) {
        font-size:25px;
     }
    @media (max-width: 1024px) {
       font-size:25px;
    }
    @media (max-width: 980px) {
       max-width: 45ch;
    }
    @media (max-width: 767px) {
       display: none;
    }
}
.fac-elec__contact-side-title-accent {
    color: var(--fac-elec-orange);
}

.fac-elec__contact-side-lead {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    color: var(--fac-elec-ink-400);
    margin: 0;
    @media (max-width: 980px) {
       display: none;
    }
}

.fac-elec__contact-side-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    @media (max-width: 980px) {
       display: none;
    }
}
.fac-elec__contact-side-bullet {
    display: flex;
    align-items: center;
    gap: 12px;
}
.fac-elec__contact-side-bullet-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: var(--fac-elec-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px -1px rgba(0, 0, 0, 0.1), 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}
.fac-elec__contact-side-bullet-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14.4px;
    line-height: 21.6px;
    color: #4B5563;
}

.fac-elec__contact-side-phone-block { 
   margin-top: 16px; 
   @media (max-width: 980px) {
      margin-top: 10px;
   }
   @media (max-width: 767px) {
      display: none;
   }
}
.fac-elec__contact-side-phone-intro {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 20px;
    line-height: 1.4;
    color: #000;
    margin: 0 0 14px 0;
    @media (max-width: 1280px) {
       margin-bottom: 12.5px;
       br{display: none;}
    }
    @media (max-width: 980px) {
        display: none;
     }
}
.fac-elec__contact-side-phone-accent { color: var(--fac-elec-orange); }
.fac-elec__contact-side-phone-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 25px;
    background: var(--fac-elec-white);
    border-radius: 35px;
    color: var(--fac-elec-orange);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    transition: transform 100ms ease, box-shadow 150ms ease;
}
.fac-elec__contact-side-phone-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 8px 0 rgba(0, 0, 0, 0.25);
}
.fac-elec__contact-side-phone-icon{
   line-height: 0;
}

.fac-elec__contact-side-copy {
    position: relative;
    z-index: 1;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #9CA3AF;
    margin: 32px 0 0 0;
    
    @media (max-width: 767px) {
        display: none;
     }
}

/* -------- Responsive -------- */
@media (max-width: 1024px) {
    .fac-elec__contact-pane { padding: 55px 20px 10px; }
    .fac-elec__contact-pane--side { padding: 25px; }
    .fac-elec__contact-side-blur--orange { right: -180px; top: -180px; }
    .fac-elec__contact-side-blur--yellow { left: -180px; bottom: -180px; }
}
@media (max-width: 980px) {
   .fac-elec__contact-grid { grid-template-columns: 1fr; min-height: 0; }
   /*.fac-elec__contact-pane--form { order: 1; }
   .fac-elec__contact-pane--side { order: 2; }*/
}
@media (max-width: 767px) {
    .fac-elec__contact-pane { padding: 25px 10px; }
    .fac-elec__contact-pane--form{padding: 25px 10px 65px;overflow: auto;max-height:450px;}
    .fac-elec__contact-stepper { gap: 6px; }
    .fac-elec__contact-step-label { font-size: 12.5px; }
    .fac-elec__contact-title { font-size: 15px; line-height: 30px; }
    .fac-elec__contact-side-title { font-size: 24px; line-height: 30px; }
}
