.elementor-246 .elementor-element.elementor-element-4f26288{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS *//* ═══════════════════════════════════════════════════════════════
   THE BALLANCE GROUP — CONTACT FORM 7 OVERRIDES
   Paste into: Customizer > Additional CSS
   Or: Elementor > Site Settings > Custom CSS
   
   Scope: Targets CF7 forms inside .ballance-cf7 wrapper
   Add class "ballance-cf7" to the parent Elementor container
   ═══════════════════════════════════════════════════════════════ */

/* ── Form Layout ── */
.ballance-cf7 .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── Labels ── */
.ballance-cf7 label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5C5852;
  margin-bottom: 8px;
}

/* ── Inputs, Select, Textarea ── */
.ballance-cf7 input[type="text"],
.ballance-cf7 input[type="email"],
.ballance-cf7 input[type="tel"],
.ballance-cf7 select,
.ballance-cf7 textarea {
  width: 100%;
  background: #1A1A1A;
  border: 1px solid #2A2722;
  border-radius: 8px;
  padding: 14px 18px;
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  color: #F0EDE8;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}

.ballance-cf7 input[type="text"]:focus,
.ballance-cf7 input[type="email"]:focus,
.ballance-cf7 input[type="tel"]:focus,
.ballance-cf7 select:focus,
.ballance-cf7 textarea:focus {
  border-color: #D4922A;
  box-shadow: 0 0 0 3px rgba(212, 146, 42, 0.12);
}

.ballance-cf7 input::placeholder,
.ballance-cf7 textarea::placeholder {
  color: #5C5852;
  font-size: 14px;
}

/* ── Select Dropdown ── */
.ballance-cf7 select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%239A958D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.ballance-cf7 select option {
  background: #161616;
  color: #F0EDE8;
}

/* ── Textarea ── */
.ballance-cf7 textarea {
  min-height: 140px;
  resize: vertical;
}

/* ── 2-Column Row (wrap .form-row around two fields in CF7 markup) ── */
.ballance-cf7 .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .ballance-cf7 .form-row {
    grid-template-columns: 1fr;
  }
}

/* ── Submit Button ── */
.ballance-cf7 input[type="submit"],
.ballance-cf7 .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #D4922A;
  color: #0E0E0E;
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  padding: 16px 36px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  margin-top: 8px;
  width: 100%;
}

.ballance-cf7 input[type="submit"]:hover,
.ballance-cf7 .wpcf7-submit:hover {
  background: #E5A83D;
  transform: translateY(-1px);
}

/* ── Validation & Response ── */
.ballance-cf7 .wpcf7-response-output {
  border-radius: 8px !important;
  font-family: 'Archivo', sans-serif !important;
  font-size: 14px !important;
  padding: 14px 18px !important;
  border-color: #2A2722 !important;
  color: #9A958D !important;
}

.ballance-cf7 .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #E85C4A;
  margin-top: 4px;
  font-family: 'Archivo', sans-serif;
}

.ballance-cf7 span.wpcf7-not-valid {
  border-color: #E85C4A !important;
}

.ballance-cf7 .wpcf7-spinner {
  margin: 0 auto;
}/* End custom CSS */