input.website {
    display: none !important;
}
#contact-form .form-control:focus {
    border-color: #a9cf39;
    box-shadow: 0 0 0 0.2rem rgba(169, 207, 57, 0.25);
}

#contact-form .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #a9cf39;
    border-color: #a9cf39;
}

#contact-form .custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(169, 207, 57, 0.25);
}

#submitBtn {
    width: 60%;
    background: rgb(155, 207, 19);
    color: white;
    padding: 13px 30px;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    font-weight: 700;
    cursor: not-allowed;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: auto;
    margin-right: auto;
}

#submitBtn[disabled] {
    pointer-events: auto;
}

#submitBtn.active {
    background: rgb(155, 207, 19);
    cursor: pointer;
}

#submitBtn.active:hover {
    background: rgb(125, 170, 15);
}

.tooltip-inner {
    max-width: min(400px, 80vw);
    width: max-content;
}


.steps-timeline {
    position: relative;
    /*max-width: 800px;*/
    margin: 0 auto;
    padding: 0 20px;
}

.steps-line {
    position: absolute;
    top: 28px;
    left: calc(12.5% + 10px);
    right: calc(12.5% + 10px);
    height: 2px;
    background: #9BCF13;
    z-index: 0;
}

.steps-row {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding: 0 5px;
}

.step-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    overflow: hidden;
}

.step-icon svg {
    display: block;
    width: 48px;
    height: 48px;
}

.step-label {
    font-size: 14px;
    font-weight: 500;
    color: #03081c;
    line-height: 1.4;
    text-align: center;
    margin: 0;
}

@media (max-width: 767px) {
    .steps-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .steps-line {
        top: 28px;
        bottom: 28px;
        left: 43px;
        right: auto;
        width: 2px;
        height: auto;
    }

    .step-item {
        flex-direction: row;
        gap: 20px;
        padding: 12px 0;
    }

    .step-item .step-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .step-label {
        text-align: left;
    }

    .form-steps-section h2 {
        font-size: 24px !important;
    }
}