  /* ==========================================================================
     RESET STYLES
     ========================================================================== */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  }

  /* ==========================================================================
     GLOBAL BODY STYLES
     ========================================================================== */
  body {
    background: #f3f5f7;
    display: block;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
  }

  /* ==========================================================================
     CARD CONTAINER / LAYOUT WRAPPER
     ========================================================================== */
  .col-full {
    width: 100%;
    min-width: 640px;
    margin: 0 auto;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.1);
  }

  /* ==========================================================================
     FORM CARD & STRUCTURE
     ========================================================================== */
  #wsfp-form .w-full {
    width: 100%;
  }
  #wsfp-form .form-wrapper {
    padding: 50px 60px;
  }

  /* ==========================================================================
     PROGRESS BAR & COUNTERS
     ========================================================================== */
  #wsfp-form .progress-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1rem;
    margin-bottom: 1rem;
  }
  #wsfp-form #step-count {
    color: #000;
  }
  #wsfp-form #percent-count {
    text-align: center;
    color: #ec4699;
  }
  #wsfp-form .progress-bar {
    height: 6px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
  }
  #wsfp-form .progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #ff6b9c 0%, #ffb74d 100%);
    transition: width 0.3s;
  }

  /* ==========================================================================
     STEP TITLES & SUBTEXT
     ========================================================================== */
  #wsfp-form .step-title {
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin: 16px 0;
    color: #174146;
    line-height: 1.4;
    text-align: center;
    max-width: 100%;
  }
  #wsfp-form .sub-text {
    text-align: center;
    color: #777;
    font-size: 14px;
    margin-bottom: 20px;
  }

  /* ==========================================================================
     FORM OPTIONS STYLES
     ========================================================================== */
  #wsfp-form .option {
    border: 2px solid #87a5a9;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 16px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  #wsfp-form .option:hover,
  #wsfp-form .option.active {
    border-color: #6fb3b8;
  }
  #wsfp-form .option.active {
    background: #f1fbfb;
  }
  #wsfp-form .option-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #eaf3f3;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* ==========================================================================
     TEXT COLOR & SIZING UTILITIES
     ========================================================================== */
  #wsfp-form .text-gray-800 { color: #1f2937; }
  #wsfp-form .text-gray-700 { color: #374151; }
  #wsfp-form .text-gray-600 { color: #4b5563; }
  #wsfp-form .text-gray-500 { color: #6b7280; }
  #wsfp-form .text-gray-400 { color: #2c3e50; }
  #wsfp-form .text-xs { font-size: 13px; line-height: 12px; }
  #wsfp-form .text-sm { font-size: 14px; line-height: 20px; }
  #wsfp-form .text-lg { font-size: 18px; line-height: 28px; }
  #wsfp-form .text-center { text-align: center; }
  #wsfp-form .font-semibold { font-weight: 600; }

  /* ==========================================================================
     SPACING & POSITION UTILITIES
     ========================================================================== */
  #wsfp-form .w-8 { width: 32px !important; }
  #wsfp-form .h-8 { height: 32px !important; }
  #wsfp-form .m1 { margin-top: 4px !important; }
  #wsfp-form .mt-2 { margin-top: 8px; }
  #wsfp-form .mt-10 { margin-top: 10px; }
  #wsfp-form .mt-12 { margin-top: 12px; }
  #wsfp-form .mt-14 { margin-top: 14px; }
  #wsfp-form .mt-16 { margin-top: 16px; }
  #wsfp-form .relative { position: relative; }

  /* ==========================================================================
     GENERIC INPUT FIELD STYLING
     ========================================================================== */
  #wsfp-form input {
    padding: 15px 45px 15px 15px;
    margin: 3px 0;
    border: 2px solid #87a5a9;
    border-radius: 10px;
    color: #2c3e50;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
  }
  #wsfp-form input:focus {
    border-color: #101010;
    color: #2c3e50;
  }
  #wsfp-form .zip-wrapper {
    position: relative;
  }

  /* ==========================================================================
     ZIP FIELD: STATES, ICONS, & TOOLTIPS
     ========================================================================== */
/* --- Error State --- */
  #wsfp-form .zip-wrapper .wsfp-zip-error-icon {
    position: absolute;
    right: 12px; top: 50%;
    transform: translateY(-50%);
    display: none;
    pointer-events: none;
  }
  #wsfp-form .zip-wrapper.show-error .wsfp-zip-error-icon { display: block; }
  #wsfp-form .zip-wrapper .wsfp-zip-error-tooltip {
    position: absolute; left: 50%; top: -36px;
    transform: translateX(-50%);
    padding: 8px 16px; color: #fff; background: #ef4444;
    text-align: center; border-radius: 8px;
    pointer-events: none; z-index: 1000;
    font-size: 13px; font-weight: 600;
    white-space: nowrap; opacity: 0;
    transition: opacity 0.25s;
  }
  #wsfp-form .zip-wrapper.show-error .wsfp-zip-error-tooltip { opacity: 1; }
  #wsfp-form .zip-wrapper .wsfp-zip-error-arrow {
    position: absolute; left: 50%; bottom: -6px;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #ef4444;
  }
/* --- Loading State --- */
  #wsfp-form .wsfp-zip-spinner {
    position: absolute; right: 12px; top: 55%;
    transform: translateY(-50%);
    display: none;
  }
  #wsfp-form .wsfp-zip-spinner svg {
    width: 24px; height: 24px;
    animation: spin 1s linear infinite;
  }
  #wsfp-form .wsfp-zip-spinner circle {
    fill: none;
    stroke: #6fb3b8;
    stroke-width: 4;
    stroke-linecap: round;
  }
/* --- Success State --- */
  #wsfp-form .wsfp-zip-success-icon {
    position: absolute; right: 12px; top: 50%;
    transform: translateY(-50%) scale(0.8);
    display: none; animation: pulse 1s infinite;
  }
  #wsfp-form .zip-wrapper.show-success .wsfp-zip-success-icon { display: block; }
  #wsfp-form .wsfp-zip-success-tooltip {
    position: absolute; left: 50%; top: -36px;
    transform: translateX(-50%);
    padding: 8px 16px; color: #fff; background: #198754;
    text-align: center; border-radius: 8px;
    pointer-events: none; z-index: 1000;
    font-size: 13px; font-weight: 600;
    white-space: nowrap; opacity: 0;
    transition: opacity 0.25s;
  }
  #wsfp-form .zip-wrapper.show-success .wsfp-zip-success-tooltip { opacity: 1; }
  #wsfp-form .wsfp-zip-success-arrow {
    position: absolute; left: 50%; bottom: -6px;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #198754;
  }
/* --- Verifying State --- */
  #wsfp-form .wsfp-zip-verifying-tooltip {
    position: absolute; left: 50%; top: -36px;
    transform: translateX(-50%) scale(0.9);
    padding: 8px 16px; color: #fff; background: #14b8a6;
    border-radius: 8px; display: flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600;
    white-space: nowrap; opacity: 0; pointer-events: none;
    transition: opacity 0.25s, transform 0.25s;
  }
  #wsfp-form .zip-wrapper.show-verifying .wsfp-zip-verifying-tooltip {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
  #wsfp-form .wsfp-zip-verifying-arrow {
    position: absolute; left: 50%; bottom: -6px;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #14b8a6;
  }
  .wsfp-verify-spinner {
    width: 16px; height: 16px;
    animation: wsfp-spin 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
  }
  .wsfp-verify-spinner circle {
    fill: none;
    stroke: #fff;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 90; stroke-dashoffset: 60;
    animation: wsfp-dash 1.4s ease-in-out infinite;
  }

  /* --- Keyframes --- */
  @keyframes spin { to { transform: rotate(360deg); } }
  @keyframes wsfp-spin { to { transform: rotate(360deg); } }
  @keyframes wsfp-dash {
    0%   { stroke-dashoffset: 90; }
    50%  { stroke-dashoffset: 30; }
    100% { stroke-dashoffset: 90; }
  }
  @keyframes pulse {
    0% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.2);}
    100% { transform: translateY(-50%) scale(1);}
  }

  /* ==========================================================================
     EMAIL FIELD: STATES, ICONS & TOOLTIPS
     ========================================================================== */
  #wsfp-form .email-wrapper .wsfp-email-error-icon {
    position: absolute; right: 12px; top: 50%;
    transform: translateY(-50%);
    display: none; pointer-events: none;
  }
  #wsfp-form .email-wrapper.show-error .wsfp-email-error-icon { display: block; }
  #wsfp-form .email-wrapper .wsfp-email-error-tooltip {
    position: absolute; left: 50%; top: -36px;
    transform: translateX(-50%);
    padding: 8px 16px; color: #fff; background: #ef4444;
    text-align: center; border-radius: 8px;
    pointer-events: none; z-index: 1000;
    font-size: 13px; font-weight: 600;
    white-space: nowrap; opacity: 0;
    transition: opacity 0.25s;
  }
  #wsfp-form .email-wrapper.show-error .wsfp-email-error-tooltip { opacity: 1; }
  #wsfp-form .email-wrapper .wsfp-email-error-arrow {
    position: absolute; left: 50%; bottom: -6px;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #ef4444;
  }
/* --- Loading State --- */
  #wsfp-form .wsfp-email-spinner {
    position: absolute; right: 12px; top: 55%;
    transform: translateY(-50%);
    display: none;
  }
  #wsfp-form .wsfp-email-spinner svg {
    width: 24px; height: 24px; animation: spin 1s linear infinite;
  }
  #wsfp-form .wsfp-email-spinner circle {
    fill: none;
    stroke: #6fb3b8;
    stroke-width: 4; stroke-linecap: round;
  }
/* --- Success State --- */
  #wsfp-form .wsfp-email-success-icon {
    position: absolute; right: 12px; top: 50%;
    transform: translateY(-50%) scale(0.8);
    display: none; animation: pulse 1s infinite;
  }
  #wsfp-form .email-wrapper.show-success .wsfp-email-success-icon { display: block; }
  #wsfp-form .wsfp-email-success-tooltip {
    position: absolute; left: 50%; top: -36px;
    transform: translateX(-50%);
    padding: 8px 16px; color: #fff; background: #198754;
    text-align: center; border-radius: 8px;
    pointer-events: none; z-index: 1000;
    font-size: 13px; font-weight: 600;
    white-space: nowrap; opacity: 0;
    transition: opacity 0.25s;
  }
  #wsfp-form .email-wrapper.show-success .wsfp-email-success-tooltip { opacity: 1; }
  #wsfp-form .wsfp-email-success-arrow {
    position: absolute; left: 50%; bottom: -6px;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #198754;
  }
/* --- Verifying State --- */
  #wsfp-form .wsfp-email-verifying-tooltip {
    position: absolute; left: 50%; top: -36px;
    transform: translateX(-50%) scale(0.9);
    padding: 8px 16px; color: #fff; background: #14b8a6;
    border-radius: 8px; display: flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600;
    white-space: nowrap; opacity: 0; pointer-events: none;
    transition: opacity 0.25s, transform 0.25s;
  }
  #wsfp-form .email-wrapper.show-verifying .wsfp-email-verifying-tooltip {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
  #wsfp-form .wsfp-email-verifying-arrow {
    position: absolute; left: 50%; bottom: -6px;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #14b8a6;
  }
  .wsfp-email-verify-spinner {
    width: 16px; height: 16px;
    animation: wsfp-email-spin 1s linear infinite;
    display: inline-block; vertical-align: middle;
  }
  .wsfp-email-verify-spinner circle {
    fill: none;
    stroke: #fff;
    stroke-width: 4; stroke-linecap: round;
    stroke-dasharray: 90; stroke-dashoffset: 60;
    animation: wsfp-email-dash 1.4s ease-in-out infinite;
  }
  @keyframes wsfp-email-spin { to { transform: rotate(360deg); } }
  @keyframes wsfp-email-dash {
    0%   { stroke-dashoffset: 90; }
    50%  { stroke-dashoffset: 30; }
    100% { stroke-dashoffset: 90; }
  }

  /* ==========================================================================
     MOBILE NUMBER FIELD: STATES, ICONS & TOOLTIPS
     ========================================================================== */
  #wsfp-form .cellnumber-wrapper .wsfp-cellnumber-error-icon {
    position: absolute; right: 12px; top: 50%;
    transform: translateY(-50%);
    display: none; pointer-events: none;
  }
  #wsfp-form .cellnumber-wrapper.show-error .wsfp-cellnumber-error-icon { display: block; }
  #wsfp-form .cellnumber-wrapper .wsfp-cellnumber-error-tooltip {
    position: absolute; left: 50%; top: -36px;
    transform: translateX(-50%);
    padding: 8px 16px; color: #fff; background: #ef4444;
    text-align: center; border-radius: 8px;
    pointer-events: none; z-index: 1000;
    font-size: 13px; font-weight: 600;
    white-space: nowrap; opacity: 0;
    transition: opacity 0.25s;
  }
  #wsfp-form .cellnumber-wrapper.show-error .wsfp-cellnumber-error-tooltip { opacity: 1; }
  #wsfp-form .cellnumber-wrapper .wsfp-cellnumber-error-arrow {
    position: absolute; left: 50%; bottom: -6px;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #ef4444;
  }
/* --- Loading State --- */
  #wsfp-form .wsfp-cellnumber-spinner {
    position: absolute; right: 12px; top: 55%;
    transform: translateY(-50%);
    display: none;
  }
  #wsfp-form .wsfp-cellnumber-spinner svg {
    width: 24px; height: 24px; animation: spin 1s linear infinite;
  }
  #wsfp-form .wsfp-cellnumber-spinner circle {
    fill: none;
    stroke: #6fb3b8;
    stroke-width: 4; stroke-linecap: round;
  }
/* --- Success State --- */
  #wsfp-form .wsfp-cellnumber-success-icon {
    position: absolute; right: 12px; top: 50%;
    transform: translateY(-50%) scale(0.8);
    display: none; animation: pulse 1s infinite;
  }
  #wsfp-form .cellnumber-wrapper.show-success .wsfp-cellnumber-success-icon { display: block; }
  #wsfp-form .wsfp-cellnumber-success-tooltip {
    position: absolute; left: 50%; top: -36px;
    transform: translateX(-50%);
    padding: 8px 16px; color: #fff; background: #198754;
    text-align: center; border-radius: 8px;
    pointer-events: none; z-index: 1000;
    font-size: 13px; font-weight: 600;
    white-space: nowrap; opacity: 0;
    transition: opacity 0.25s;
  }
  #wsfp-form .cellnumber-wrapper.show-success .wsfp-cellnumber-success-tooltip { opacity: 1; }
  #wsfp-form .wsfp-cellnumber-success-arrow {
    position: absolute; left: 50%; bottom: -6px;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #198754;
  }
/* --- Verifying State --- */
  #wsfp-form .wsfp-cellnumber-verifying-tooltip {
    position: absolute; left: 50%; top: -36px;
    transform: translateX(-50%) scale(0.9);
    padding: 8px 16px; color: #fff; background: #14b8a6;
    border-radius: 8px; display: flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600;
    white-space: nowrap; opacity: 0; pointer-events: none;
    transition: opacity 0.25s, transform 0.25s;
  }
  #wsfp-form .cellnumber-wrapper.show-verifying .wsfp-cellnumber-verifying-tooltip {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
  #wsfp-form .wsfp-cellnumber-verifying-arrow {
    position: absolute; left: 50%; bottom: -6px;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #14b8a6;
  }
  .wsfp-cellnumber-verify-spinner {
    width: 16px; height: 16px;
    animation: wsfp-cellnumber-spin 1s linear infinite;
    display: inline-block; vertical-align: middle;
  }
  .wsfp-cellnumber-verify-spinner circle {
    fill: none;
    stroke: #fff;
    stroke-width: 4; stroke-linecap: round;
    stroke-dasharray: 90; stroke-dashoffset: 60;
    animation: wsfp-cellnumber-dash 1.4s ease-in-out infinite;
  }
  @keyframes wsfp-cellnumber-spin { to { transform: rotate(360deg); } }
  @keyframes wsfp-cellnumber-dash {
    0%   { stroke-dashoffset: 90; }
    50%  { stroke-dashoffset: 30; }
    100% { stroke-dashoffset: 90; }
  }

  /* ==========================================================================
     BUTTONS STYLING: NEXT, BACK, GENERIC
     ========================================================================== */
  #wsfp-form .btn {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: none;
    background: #ff9800;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
    transition: background 0.2s, box-shadow 0.2s;
  }
  #wsfp-form .btn:disabled {
    background: #f5c387;
    cursor: not-allowed;
    box-shadow: none;
  }
  #wsfp-form .next-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
  }
  #wsfp-form .btn.next-step:not(:disabled):hover {
    background: #c26b00;
  }
  #wsfp-form .next-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
  #wsfp-form .next-btn .arrow-icon {
    height: 16px;
    fill: #fff;
    opacity: 0;
    position: relative;
    left: 0;
    transition: left 0.3s, opacity 0.3s;
    vertical-align: middle;
  }
  #wsfp-form .btn.next-step:not(:disabled):hover .arrow-icon {
    opacity: 0.9;
    left: 10px;
  }
  #wsfp-form .next-btn .arrow-icon.show {
    opacity: 0.4;
  }
  /* -- NEXT BUTTON TOOLTIP -- */
  #wsfp-form .wsfp-next-btn-tooltip {
    position: absolute;
    bottom: 57px; left: 50%;
    transform: translateX(-50%) translateY(10px);
    z-index: 10; background: rgba(178,178,178,0.95);
    color: #fff; font-size: 11px; line-height: 18px;
    width: 180px; padding: 10px;
    border-radius: 6px; opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1), 
                transform 0.4s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none; text-align: center; font-weight: 700;
  }
  #wsfp-form .wsfp-next-btn-tooltip-arrow {
    position: absolute; bottom: -6px; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgb(178,178,178);
  }
  #wsfp-form .wsfp-next-btn-tooltip.show-tooltip {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0px);
  }
  /* -- Special Styling: First Step Button -- */
  #wsfp-form .step:first-child .btn {
    position: relative;
    background: rgb(251, 155, 38);
    color: #fff;
    margin: 0;
    padding: 17px 25px;
    width: 100%;
    max-width: 240px;
    box-sizing: border-box;
    text-align: center;
    display: inline-block;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: none;
    cursor: not-allowed;
    opacity: 0.5;
    transition: background 0.3s, opacity 0.3s;
  }
  #wsfp-form .step:first-child .btn span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
  /* -- BACK BUTTON STYLING -- */
  #wsfp-form .back-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid rgb(178,178,178);
    background: transparent;
    cursor: pointer;
    transition: border-color 0.3s cubic-bezier(0.4,0,0.2,1);
    border-radius: 64px;
    margin: 12px auto;
    width: 3.5rem; height: 3.5rem; padding: 0;
  }
  #wsfp-form .back-btn:hover {
    border-color: rgb(136,136,136);
  }
  #wsfp-form .back-btn svg { color: #4b5563; }

  /* ==========================================================================
     STEPS DISPLAY (show/hide)
     ========================================================================== */
  #wsfp-form .step { display: none; }
  #wsfp-form .step.active { display: block; }

   /* ==========================================================================
     Jquery UI Block
     ========================================================================== */

    /* ---------- BLOCK UI OVERLAY ---------- */
  .blockOverlay {
    backdrop-filter: blur(6px) !important;
    background: rgba(0, 0, 0, 0.35) !important;
  }

  /* ---------- MODERN LOADER BOX ---------- */
  .wsfp-block-loader {
    background: #fff;
    padding: 30px 40px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    text-align: center;
    min-width: 280px;
    max-width: 90vw;
  }

  /* ---------- SPINNER ---------- */
  .wsfp-spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    border-radius: 50%;
    border: 4px solid rgba(255, 120, 80, 0.15);
    border-top: 4px solid #ff7a45;
    animation: wsfp-loader-spin 0.8s linear infinite;
  }

  /* ---------- TEXT ---------- */
  .wsfp-block-loader h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1f4f4f;
  }

  /* ---------- PROGRESS BAR ---------- */
  .wsfp-progress {
    height: 5px;
    margin-top: 18px;
    border-radius: 10px;
    overflow: hidden;
    background: #eee;
  }

  .wsfp-progress-bar {
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, #ff5f8f, #f6a623);
    animation: wsfp-progress 1.2s infinite;
  }

  /* ---------- ANIMATIONS ---------- */
  @keyframes wsfp-loader-spin {
    to {
      transform: rotate(360deg);
    }
  }

  @keyframes wsfp-progress {
    0% {
      margin-left: -40%;
    }
    100% {
      margin-left: 100%;
    }
  }

  /* ---------- COMMON BLOCK POPUP ---------- */
  .wsfp-popup {
    background: #fff;
    padding: 28px 40px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    text-align: center;
    min-width: 300px;
    max-width: 90vw;
  }

  /* ---------- ICON WRAPPER ---------- */
  .wsfp-popup-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ---------- ERROR ---------- */
  .wsfp-error .wsfp-popup-icon {
    background: rgba(239, 68, 68, 0.12);
  }

  .wsfp-error svg {
    width: 40px;
    height: 40px;
    stroke: #ef4444;
    stroke-width: 3;
    fill: none;
  }

  /* ---------- TEXT ---------- */
  .wsfp-popup h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1f4f4f;
  }

  /* ---------- ANIMATION ---------- */
  @keyframes wsfp-check {
    to {
      stroke-dashoffset: 0;
    }
  }

  /* ---------- MOBILE ---------- */
  @media (max-width: 768px) {
    .wsfp-block-loader {
      padding: 25px;
      min-width: auto;
    }
  }

  /* ==========================================================================
     RESPONSIVE DESIGN
     ========================================================================== */
  @media (max-width: 640px) {
    .col-full {
      min-width: 100vw;
      width: 100vw;
      margin: 0; /* Remove parent div margin for mobile */
    }
    #wsfp-form .form-wrapper {
      padding: 30px 20px;
      margin: 0 0 20px 0; /* Apply bottom margin for spacing on mobile */
    }
    #wsfp-form .step-title {
      font-size: 20px;
      margin: 10px 0 16px 0; /* Example: add margin to title for mobile readability */
    }
  }