/* =====================
   STEP VISIBILITY V2
   ===================== */
.step-v2 { display: none; }
.step-v2.active { display: block; }


/* =====================
   FORM WRAPPER V2
   ===================== */
.ghl-form-v2 {
    font-family: Arial, sans-serif;
    max-width:100% !important;
}

.form-title-v2 {
    font-size: 20px;
    margin-bottom: 20px;
}

.ghl-form-v2 label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 500;
}

.ghl-form-v2 input[type="text"],
.ghl-form-v2 input[type="tel"],
.ghl-form-v2 input[type="email"],
.ghl-form-v2 input:not([type="radio"]):not([type="checkbox"]) {
    width: 100%;
    padding: 14px;
    border-radius: 25px;
    border: 1px solid #ccc;
    background: #f5f5f5;
    margin-bottom: 16px;
    outline: none;
    font-size: 14px;
}

.ghl-form-v2 input:focus {
    border-color: #5b8def;
    background: #fff;
}


/* =====================
   PHONE FIELD V2
   ===================== */
.phone-wrapper-v2 {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 25px;
    padding: 0 12px;
    margin-bottom: 16px;
}

.phone-wrapper-v2 input {
    border: none !important;
    background: transparent !important;
    margin: 0 !important;
}


/* =====================
   RADIO BUTTONS V2
   ===================== */
.radio-group-v2 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.radio-group-v2 label {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}


/* =====================
   BUTTONS V2
   ===================== */
.next-btn-v2 {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(to right, #5b8def, #4a7be0);
    color: white;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
}

.next-btn-v2:hover {
    opacity: 0.9;
}

.back-btn-v2 {
    background: none;
    border: none;
    color: #666;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 14px;
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
}


/* =====================
   ERRORS V2
   ===================== */
.error-v2 {
    color: red;
    font-size: 12px;
    margin-bottom: 10px;
    display: block;
}

.ghl-form-v2 input.error-input-v2 {
    border: 1px solid red;
    background: #fff0f0;
}


/* =====================
   THANK YOU STEP V2
   ===================== */
.thankyouStepV2 {
    text-align: center;
    padding: 40px 20px;
}

.thankyouStepV2 h3 {
    color: #4a7be0;
    font-size: 24px;
}

.thankyouStepV2 p {
    font-size: 14px;
    margin-top: 10px;
}


/* =====================
   LOADER SPINNER V2
   ===================== */
.loader-v2 {
    width: 18px;
    height: 18px;
    border: 3px solid #fff;
    border-top: 3px solid transparent;
    border-radius: 50%;
    display: inline-block;
    animation: spinV2 1s linear infinite;
    margin-left: 10px;
}

@keyframes spinV2 {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* =====================
   FORM MESSAGES V2
   ===================== */
.form-message-v2 {
    padding: 14px;
    border-radius: 10px;
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
}

.form-message-v2.success {
    background: #e6f7ee;
    color: #1a7f4b;
}

.form-message-v2.error {
    background: #fdecea;
    color: #d93025;
}
