.step-app > .step-steps {
    margin: 0;
    padding: 0;
    display: flex;
    border-radius: 3px 3px 0 0;
    overflow: hidden;
}

.step-app > .step-steps > li {
    list-style: none;
    flex: 1;
    cursor: pointer;
    display: block;
    padding: 15px 20px;
    color: #333;
    background-color: #e5e5e5;
    text-decoration: none;
    border-right: 1px solid #fff;
    font-weight: 600;
}

.step-app > .step-steps > li i {
    margin-right: 3.5px;
}

.step-app > .step-steps > li:hover {
    background-color: #ddd;
}

.step-app > .step-steps > li:last-child a {
    border: none;
}

.step-app > .step-steps > li.active {
    background-color: #32c5d2;
    color: #fff;
}

.step-app > .step-steps > li.error {
    background-color: #e7505a;
    color: #fff;
}

.step-app > .step-steps > li.done {
    background-color: #3cb371;
    color: #fff;
}

.step-app > .step-steps > li > .number {
    background: #fff;
    padding: 0 8px;
    display: inline-block;
    text-align: center;
    margin-right: 15px;
    border-radius: 3px;
    color: #333;
}

.step-app > .step-content {
    border: 1px solid #e5e5e5;
    padding: 10px;
    border-top: 0;
}

.step-app > .step-content > .step-tab-panel {
    display: none;
}

.step-app > .step-content > .step-tab-panel.active {
    display: block;
}

.step-app > .step-footer {
    margin-top: 15px;
    margin-bottom: 15px;
}

.step-app > .step-footer > .step-btn {
    padding: 0.75rem 1.5rem !important;
    color: #fff !important;
    text-decoration: none !important;
    background: #1063a0 !important;
    border-radius: 15px !important;
    box-shadow: none !important;
    background-image: var(--bs-gradient) !important;
    border: none;
    outline: none;
    cursor: pointer
}

.step-app > .step-footer > .step-btn i {
    color: #fff !important;
}

.step-app > .step-steps > li.active {
    background-color: #1063a0 !important;
}

.step-app > .step-steps > li.active i {
    color: #fff;
}

.step-app > .step-steps > li.done i {
    color: #fff;
}

/* --- Service Item Box --- */
.order .service-item {
    margin-bottom: 1rem;
    cursor: pointer !important;
}

.order .service-item:last-child {
    margin-bottom: 0;
}

.order .service-item .custom-control {
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.order .service-item:has(.custom-control-input:checked) .custom-control {
    border-color: #1063a0;
}

/* Show icon when checked */
.order .service-item:has(.custom-control-input:checked) .checkbox-icon {
    border-color: #1063a0;
    background: #fff;
}

.order .service-item:has(.custom-control-input:checked) .checkbox-icon i::before {
    font-family: "bootstrap-icons";
    content: "\f633";
    font-weight: 900;
    font-size: 1rem;
    color: #1063a0;
}

.order .service-item .custom-control-input {
    position: absolute;
    opacity: 0;
}

/* --- Label Styling --- */
.order .service-item .custom-control-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    position: relative;
    margin-bottom: 0;
    gap: 1rem;
}

/* --- Checkbox Icon --- */
.order .service-item .checkbox-icon {
    width: 1.5rem;
    height: 1.5rem;
    border: 2px solid #cbd5e0;
    border-radius: 6px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.order .service-item .custom-control-input:checked + .custom-control-label .checkbox-icon {
    border-color: #1063a0;
    background: #fff;
}

.order .service-item .custom-control-input:checked + .custom-control-label .checkbox-icon i::before {
    font-family: "bootstrap-icons";
    content: "\f633"; /* check2 icon */
    font-weight: 900;
    font-size: 1rem;
    color: #1063a0;
}

/* --- Title and Description --- */
.order .service-item .service-text {
    flex: 1;
}

.order .service-item .service-title {
    font-weight: 600;
    font-size: 1rem;
    color: #2d3748;
    display: block;
}

.order .service-item .service-description {
    font-size: 0.9rem;
    color: #718096;
    display: block;
}

/* --- Price Styling --- */
.order .service-item .price {
    font-size: 1.1rem;
    font-weight: bold;
    color: #1063a0;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .order .service-item .custom-control {
        flex-direction: column;
        gap: 0.75rem;
    }

    .order .service-item .custom-control-label {
        flex-direction: column;
        align-items: flex-start;
    }

    .order .service-item .price {
        align-self: flex-end;
        margin-top: 0.5rem;
    }
}

.select2-container--default .select2-selection--single {
    background-color: #fff;
    border-radius: 0.65rem;
    padding: 0.775rem 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
    height: auto;
    border: 1px solid var(--kt-input-border-color);
}
