.elementor-638 .elementor-element.elementor-element-d9721ce{--display:flex;--min-height:100vh;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-638 .elementor-element.elementor-element-ecf49a5{width:100%;max-width:100%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}:root{--page-title-display:none;}/* Start custom CSS *//* ═══════════════════════════════════════════════════
   CREDEX — MULTI-STEP CONTACT FORM
   Namespace: cx-contact-*
   ═══════════════════════════════════════════════════ */

:root {
  --cx-c-dark: #0D0D0D;
  --cx-c-green: #34D399;
  --cx-c-green-dark: #0D3B31;
  --cx-c-green-bg: #0A2F27;
  --cx-c-cream: #F9F8F6;
  --cx-c-gray-100: #F3F4F6;
  --cx-c-gray-300: #D1D5DB;
  --cx-c-gray-400: #9CA3AF;
  --cx-c-gray-500: #6B7280;
  --cx-c-gray-700: #374151;
  --cx-c-white: #FFFFFF;
}

/* ── Section Container ── */
.cx-contact-section {
  padding: 120px 0 100px;
  background: linear-gradient(170deg, #0D3B31 0%, #0A2F27 40%, #072520 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Ambient glow blobs */
.cx-contact-section::before,
.cx-contact-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
}

.cx-contact-section::before {
  width: 500px;
  height: 500px;
  background: #34D399;
  top: -100px;
  right: -100px;
}

.cx-contact-section::after {
  width: 400px;
  height: 400px;
  background: #34D399;
  bottom: -80px;
  left: -80px;
}

.cx-contact-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ── Header ── */
.cx-contact-header {
  text-align: center;
  margin-bottom: 48px;
}

.cx-contact-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--cx-c-gray-400);
  margin-bottom: 16px;
}

.cx-contact-kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cx-c-green);
}

.cx-contact-title {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--cx-c-white);
  margin: 0 0 12px;
}

.cx-contact-title em {
  font-style: italic;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--cx-c-green);
}

.cx-contact-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin: 0;
}

/* ── Progress Bar ── */
.cx-contact-progress {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 40px;
}

.cx-contact-progress-step {
  flex: 1;
  height: 4px;
  border-radius: 4px;
  background: rgba(255,255,255,0.15);
  transition: background 0.4s ease;
}

.cx-contact-progress-step.active {
  background: var(--cx-c-green);
}

.cx-contact-step-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--cx-c-green);
  margin-bottom: 8px;
}

/* ── Form Card ── */
.cx-contact-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* ── Steps ── */
.cx-contact-step {
  display: none;
}

.cx-contact-step.active {
  display: block;
  animation: cx-fadeIn 0.35s ease;
}

@keyframes cx-fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cx-contact-question {
  font-size: 20px;
  font-weight: 700;
  color: var(--cx-c-white);
  margin: 0 0 24px;
  line-height: 1.35;
}

/* ── Multiple Choice Options ── */
.cx-contact-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cx-contact-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: rgba(255,255,255,0.04);
}

.cx-contact-option:hover {
  border-color: var(--cx-c-green);
  background: rgba(52, 211, 153, 0.08);
}

.cx-contact-option input[type="radio"] {
  display: none;
}

.cx-contact-option .cx-radio-circle {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  transition: all 0.2s ease;
}

.cx-contact-option .cx-radio-circle::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cx-c-green);
  transform: scale(0);
  transition: transform 0.2s ease;
}

.cx-contact-option input[type="radio"]:checked ~ .cx-radio-circle {
  border-color: var(--cx-c-green);
}

.cx-contact-option input[type="radio"]:checked ~ .cx-radio-circle::after {
  transform: scale(1);
}

.cx-contact-option input[type="radio"]:checked ~ .cx-option-text {
  color: var(--cx-c-dark);
  font-weight: 600;
}

.cx-option-text {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s ease;
}

.cx-option-label {
  font-weight: 700;
  color: var(--cx-c-green);
  margin-right: 6px;
}

/* ── Textarea ── */
.cx-contact-textarea {
  width: 100%;
  min-height: 120px;
  padding: 16px;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.6;
  color: var(--cx-c-white);
  background: rgba(255,255,255,0.04);
  resize: vertical;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.cx-contact-textarea:focus {
  outline: none;
  border-color: var(--cx-c-green);
}

.cx-contact-charcount {
  text-align: right;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
}

.cx-contact-charcount.over {
  color: #EF4444;
  font-weight: 600;
}

/* ── Contact Info Fields ── */
.cx-contact-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cx-contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cx-contact-field label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

.cx-contact-field label span {
  color: #EF4444;
}

.cx-contact-field input {
  padding: 14px 16px;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  color: var(--cx-c-white);
  background: rgba(255,255,255,0.04);
  transition: border-color 0.2s ease;
}

.cx-contact-field input:focus {
  outline: none;
  border-color: var(--cx-c-green);
}

.cx-contact-phone-row {
  display: flex;
  gap: 10px;
}

.cx-contact-phone-row select {
  width: 120px;
  padding: 14px 10px;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  color: var(--cx-c-white);
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%239CA3AF' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.cx-contact-phone-row select:focus {
  outline: none;
  border-color: var(--cx-c-green);
}

.cx-contact-phone-row input {
  flex: 1;
}

/* ── Declaration ── */
.cx-contact-declaration {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  margin-top: 8px;
}

.cx-contact-declaration input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--cx-c-green);
  cursor: pointer;
}

.cx-contact-declaration p {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

/* ── Navigation Buttons ── */
.cx-contact-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  gap: 12px;
}

.cx-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}

.cx-contact-btn--back {
  background: transparent;
  color: rgba(255,255,255,0.4);
  padding-left: 0;
}

.cx-contact-btn--back:hover {
  color: var(--cx-c-white);
}

.cx-contact-btn--next {
  background: var(--cx-c-dark);
  color: var(--cx-c-white);
  margin-left: auto;
}

.cx-contact-btn--next:hover {
  background: var(--cx-c-green-dark);
}

.cx-contact-btn--next:disabled {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.3);
  cursor: not-allowed;
}

.cx-contact-btn--submit {
  background: var(--cx-c-green);
  color: var(--cx-c-green-dark);
  margin-left: auto;
}

.cx-contact-btn--submit:hover {
  background: #2DD4A3;
  transform: translateY(-1px);
}

.cx-contact-btn--submit:disabled {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.3);
  cursor: not-allowed;
  transform: none;
}

/* ── Success State ── */
.cx-contact-success {
  text-align: center;
  padding: 40px 20px;
}

.cx-contact-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.cx-contact-success h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--cx-c-white);
  margin: 0 0 8px;
}

.cx-contact-success p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin: 0;
}

/* ── Error Hint ── */
.cx-contact-error {
  font-size: 12px;
  color: #EF4444;
  margin-top: 6px;
  display: none;
}

.cx-contact-error.show {
  display: block;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .cx-contact-section {
    padding: 48px 0 64px;
  }

  .cx-contact-card {
    padding: 28px 20px;
    border-radius: 12px;
  }

  .cx-contact-question {
    font-size: 17px;
  }

  .cx-contact-phone-row {
    flex-direction: column;
  }

  .cx-contact-phone-row select {
    width: 100%;
  }
}/* End custom CSS */