.energyon-quote-form-wrapper {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
}

.energyon-quote-form-wrapper .step[data-step="1"] .option,
.energyon-quote-form-wrapper .step[data-step="2"] .option,
.energyon-quote-form-wrapper .step[data-step="3"] .option,
.energyon-quote-form-wrapper .step[data-step="4"] .option {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 220px;
    text-align: center;
    cursor: pointer;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.energyon-quote-form-wrapper .step[data-step="1"] .option:hover,
.energyon-quote-form-wrapper .step[data-step="2"] .option:hover,
.energyon-quote-form-wrapper .step[data-step="3"] .option:hover,
.energyon-quote-form-wrapper .step[data-step="4"] .option:hover,
.energyon-quote-form-wrapper .step[data-step="1"] .option.selected,
.energyon-quote-form-wrapper .step[data-step="2"] .option.selected,
.energyon-quote-form-wrapper .step[data-step="3"] .option.selected,
.energyon-quote-form-wrapper .step[data-step="4"] .option.selected {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.energyon-quote-form-wrapper .step[data-step="1"] .option img,
.energyon-quote-form-wrapper .step[data-step="2"] .option img,
.energyon-quote-form-wrapper .step[data-step="3"] .option img,
.energyon-quote-form-wrapper .step[data-step="4"] .option img {
    width: 100%;
    height: 130px;
    object-fit: contain;
    background-color: #f9f9f9;
}

.energyon-quote-form-wrapper .step[data-step="1"] .option div,
.energyon-quote-form-wrapper .step[data-step="2"] .option div,
.energyon-quote-form-wrapper .step[data-step="3"] .option div,
.energyon-quote-form-wrapper .step[data-step="4"] .option div {
    background-color: #351BA1;
    color: white;
    padding: 12px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

.energyon-quote-form-wrapper .form-wrapper {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    width: 100%;
    padding: 30px;
    box-sizing: border-box;
}

.energyon-quote-form-wrapper .progress-bar {
    height: 16px;
    background: #e0e0e0;
    border-radius: 10px;
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
}

.energyon-quote-form-wrapper .progress-bar-fill {
    height: 100%;
    width: 0%;
    background: #1E1E69;
    transition: width 0.3s ease;
    text-align: right;
    padding-right: 10px;
    box-sizing: border-box;
    font-weight: bold;
    color: white;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 12px;
}

.energyon-quote-form-wrapper .step {
    display: none;
}

.energyon-quote-form-wrapper .step.active {
    display: block;
}

.energyon-quote-form-wrapper h2 {
    text-align: center;
    margin-bottom: 5px;
    color: #222;
}
.fa-angle-left:before{
    color: #fff;
}

.energyon-quote-form-wrapper .option-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    flex-direction: row;
    flex-wrap: wrap;
    border: none !important;
}

.energyon-quote-form-wrapper .step[data-step="5"] .option-group,
.energyon-quote-form-wrapper .step[data-step="6"] .option-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: nowrap;
    flex-direction: column;
}

.energyon-quote-form-wrapper .option {
    flex: 1 1 40%;
    border: 2px solid #ccc;
    padding: 20px;
    text-align: left;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: #fafafa;
}

.energyon-quote-form-wrapper .option:hover,
.energyon-quote-form-wrapper .option.selected {
    border-color: #00c853;
    background: #f4fff6;
    box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.2);
}

.energyon-quote-form-wrapper .step[data-step="1"] .option,
.energyon-quote-form-wrapper .step[data-step="2"] .option,
.energyon-quote-form-wrapper .step[data-step="3"] .option,
.energyon-quote-form-wrapper .step[data-step="4"] .option {
    text-align: center;
}

.energyon-quote-form-wrapper .step[data-step="1"] .option img,
.energyon-quote-form-wrapper .step[data-step="2"] .option img,
.energyon-quote-form-wrapper .step[data-step="3"] .option img,
.energyon-quote-form-wrapper .step[data-step="4"] .option img {
    width: 100%;
    margin-bottom: 0px;
}

.energyon-quote-form-wrapper .step[data-step="1"] .option input[type="radio"],
.energyon-quote-form-wrapper .step[data-step="2"] .option input[type="radio"],
.energyon-quote-form-wrapper .step[data-step="3"] .option input[type="radio"],
.energyon-quote-form-wrapper .step[data-step="4"] .option input[type="radio"],
.energyon-quote-form-wrapper .step[data-step="6"] .option input[type="radio"] {
    display: none;
}

.energyon-quote-form-wrapper .step[data-step="5"] .option input[type="radio"] {
    margin-right: 10px;
    vertical-align: middle;
}

.energyon-quote-form-wrapper .form-control {
    width: 98.5%;
    margin-left: 10px;
    padding: 14px;
    margin: 12px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    transition: border 0.3s;
    margin-bottom: 0px;
}

.energyon-quote-form-wrapper .select-control {
    width: 100%;
    padding: 10px;
    margin: 12px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    transition: border 0.3s;
    background: white;
    cursor: pointer;
}

.energyon-quote-form-wrapper .select-control:focus {
    outline: none;
    border-color: #00c853;
    box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.2);
}

.energyon-quote-form-wrapper .form-control:focus {
    outline: none;
    border-color: #00c853;
    box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.2);
}

.energyon-quote-form-wrapper .button {
    background: #154a80;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    display: block;
    margin: 30px auto 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.energyon-quote-form-wrapper .button:hover {
    background: #83cb13;
}

.energyon-quote-form-wrapper button.action.submit.button {
    width: 90%;
}

.energyon-quote-form-wrapper .note {
    text-align: center;
    font-size: 14px;
    color: #555;
    margin-top: 10px;
}

.energyon-quote-form-wrapper .step[data-step="5"] .option,
.energyon-quote-form-wrapper .step[data-step="6"] .option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 20px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    border-radius: 6px;
    margin-bottom: 0px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.energyon-quote-form-wrapper .step[data-step="3"] .option:hover,
.energyon-quote-form-wrapper .step[data-step="4"] .option:hover,
.energyon-quote-form-wrapper .step[data-step="5"] .option:hover,
.energyon-quote-form-wrapper .step[data-step="6"] .option:hover,
.energyon-quote-form-wrapper .step[data-step="3"] .option.selected,
.energyon-quote-form-wrapper .step[data-step="4"] .option.selected,
.energyon-quote-form-wrapper .step[data-step="5"] .option.selected,
.energyon-quote-form-wrapper .step[data-step="6"] .option.selected {
    border-color: #00c853;
    background-color: #eefcf2;
}

.energyon-quote-form-wrapper .step[data-step="3"] .option input[type="radio"],
.energyon-quote-form-wrapper .step[data-step="4"] .option input[type="radio"],
.energyon-quote-form-wrapper .step[data-step="5"] .option input[type="radio"],
.energyon-quote-form-wrapper .step[data-step="6"] .option input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #555;
    border-radius: 50%;
    position: relative;
    margin: 0;
}

.energyon-quote-form-wrapper .step[data-step="3"] .option input[type="radio"]:checked::before,
.energyon-quote-form-wrapper .step[data-step="4"] .option input[type="radio"]:checked::before,
.energyon-quote-form-wrapper .step[data-step="5"] .option input[type="radio"]:checked::before,
.energyon-quote-form-wrapper .step[data-step="6"] .option input[type="radio"]:checked::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    background-color: #00c853;
    border-radius: 50%;
}

.energyon-quote-form-wrapper .buttons {
    display: flex;
    justify-content: space-between;
}

.energyon-quote-form-wrapper .button.prev {
    background-color: #ffffff;
    color: #fff;
    border: 2px solid #ccc;
}

.energyon-quote-form-wrapper .button.prev:hover {
    background-color: #f0f0f0;
}

.energyon-quote-form-wrapper button.next.button {
    width: 85%;
}
.energyon-quote-form-wrapper button.next.button {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #007bff, #0056b3);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.energyon-quote-form-wrapper button.next.button:hover {
    transform: scale(1.03);
}

/* Ефект білого блиску */
.energyon-quote-form-wrapper button.next.button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.8), transparent);
    transform: skewX(-25deg);
    animation: shine 2.5s infinite;
}

@keyframes shine {
    0% {
        left: -75%;
    }
    100% {
        left: 125%;
    }
}


.energyon-quote-form-wrapper .phone-group {
    display: flex;
    align-items: center;
}

.energyon-quote-form-wrapper .prefix {
    background: #e9ecef;
    width: 50px;
    padding: 14px;
    margin: 12px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    text-align: center;
    margin-right: 5px;
}

.energyon-quote-form-wrapper .error-msg {
    color: #dc3545;
    font-size: 13px;
    display: none;
    margin-top: 5px;
}

/* Example hint for phone */
#phone_hint {
    font-size: 13px;
}

/* ВИПРАВЛЕНІ СТИЛІ ДЛЯ КНОПКИ */
#submitBtn {
    background: #154a80 !important;
    cursor: pointer !important;
    opacity: 1 !important;
}

#submitBtn:disabled {
    background: #cccccc !important;
    cursor: not-allowed !important;
    opacity: 0.5 !important;
}

@media (max-width: 767px) {
    .energyon-quote-form-wrapper .option-group {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .energyon-quote-form-wrapper .option-group {
        grid-template-columns: repeat(2, 1fr);
    }
    .energyon-quote-form-wrapper .step[data-step="1"] .option,
    .energyon-quote-form-wrapper .step[data-step="2"] .option,
    .energyon-quote-form-wrapper .step[data-step="3"] .option,
    .energyon-quote-form-wrapper .step[data-step="4"] .option {
        max-width: 100%;
        flex: 1 1 auto;
        width: 100%;
    }
    .energyon-quote-form-wrapper button.next.button {
        width: 70% !important;
    }
}