﻿.dx-texteditor-container, .dx-dropdowneditor-input-wrapper, .dx-checkbox-container, .dx-fileuploader-wrapper, .dx-fileuploader-container {
    height: auto !important;
}

.dx-placeholder {
    left: 7px !important;
}

.dx-texteditor.dx-editor-outlined {
    background: inherit !important;
    border: 0 !important;
}

/* DISCLAIMER */
/* Main Content Section */
.simulator-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    min-height: calc(100vh - 400px);
    position: relative;
    overflow: hidden;
}
    /* Decorative Circle Elements */
    .simulator-section::before {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(201, 58, 62, 0.03) 0%, rgba(122, 20, 25, 0.05) 100%);
        top: -100px;
        right: -100px;
        z-index: 0;
    }

    .simulator-section::after {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: linear-gradient(225deg, rgba(201, 58, 62, 0.02) 0%, rgba(122, 20, 25, 0.04) 100%);
        bottom: 50px;
        left: -80px;
        z-index: 0;
    }

.container {
    position: relative;
    z-index: 1;
}

.simulator-header {
    margin-bottom: 3rem;
}

.simulator-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.disclaimer-box {
    background: white;
    border: none;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .disclaimer-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #c93a3e 0%, #7a1419 50%, #c93a3e 100%);
    }

    .disclaimer-box::after {
        content: '';
        position: absolute;
        width: 150px;
        height: 150px;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(201, 58, 62, 0.03) 0%, rgba(122, 20, 25, 0.05) 100%);
        bottom: -50px;
        right: -50px;
        z-index: 0;
    }

    .disclaimer-box:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    }

    .disclaimer-box .disclaimer-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(201, 58, 62, 0.1) 0%, rgba(122, 20, 25, 0.15) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #c93a3e;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 1;
    }

    .disclaimer-box p {
        color: #495057;
        line-height: 1.8;
        margin-bottom: 1rem;
        font-size: 0.95rem;
        position: relative;
        z-index: 1;
    }

        .disclaimer-box p:last-child {
            margin-bottom: 0;
        }

.terms-checkbox {
    background: white;
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 1.75rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    background-image: linear-gradient(white, white), linear-gradient(135deg, rgba(201, 58, 62, 0.2) 0%, rgba(122, 20, 25, 0.3) 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .terms-checkbox::before {
        content: '';
        position: absolute;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(201, 58, 62, 0.04) 0%, rgba(122, 20, 25, 0.06) 100%);
        top: -30px;
        left: -30px;
        z-index: 0;
    }

    .terms-checkbox:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    }

    .terms-checkbox label {
        display: flex;
        align-items: start;
        cursor: pointer;
        font-size: 0.95rem;
        color: #495057;
        margin: 0;
        position: relative;
        z-index: 1;
    }

    .terms-checkbox input[type="checkbox"] {
        margin-right: 1rem;
        margin-top: 0.25rem;
        cursor: pointer;
        width: 22px;
        height: 22px;
        accent-color: #c93a3e;
        flex-shrink: 0;
    }

.btn-next {
    background: linear-gradient(135deg, #c93a3e 0%, #7a1419 100%);
    color: white;
    border: none;
    padding: 1rem 3.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.5;
    pointer-events: none;
    position: relative;
    overflow: hidden;
}

    .btn-next::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s ease;
    }

    .btn-next:enabled {
        opacity: 1;
        pointer-events: auto;
    }

        .btn-next:enabled:hover {
            background: linear-gradient(135deg, #a82f33 0%, #5d0f13 100%);
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(201, 58, 62, 0.4);
        }

            .btn-next:enabled:hover::before {
                left: 100%;
            }

        .btn-next:enabled:active {
            transform: translateY(-1px);
        }

    .btn-next i {
        margin-left: 0.5rem;
        transition: transform 0.3s ease;
    }

    .btn-next:enabled:hover i {
        transform: translateX(4px);
    }

/* Responsive */
@media (max-width: 768px) {
    .simulator-section::before {
        width: 250px;
        height: 250px;
        top: -80px;
        right: -80px;
    }

    .simulator-section::after {
        width: 200px;
        height: 200px;
        bottom: 30px;
        left: -60px;
    }

    .simulator-title {
        font-size: 1.75rem;
    }

    .disclaimer-box {
        padding: 1.75rem;
    }

        .disclaimer-box .disclaimer-icon {
            width: 45px;
            height: 45px;
            font-size: 1.25rem;
        }

    .terms-checkbox {
        padding: 1.25rem;
    }

    .btn-next {
        width: 100%;
        padding: 1rem;
    }
}

/* FORM */
/* Main Content Section */
.form-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    min-height: calc(100vh - 400px);
    position: relative;
    overflow: hidden;
}

    /* Decorative Circle Elements */
    .form-section::before {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(201, 58, 62, 0.03) 0%, rgba(122, 20, 25, 0.05) 100%);
        top: -100px;
        right: -100px;
        z-index: 0;
    }

    .form-section::after {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: linear-gradient(225deg, rgba(201, 58, 62, 0.02) 0%, rgba(122, 20, 25, 0.04) 100%);
        bottom: 50px;
        left: -80px;
        z-index: 0;
    }

.container {
    position: relative;
    z-index: 1;
}

.info-banner {
    background: white;
    border: none;
    border-radius: 16px;
    padding: 0;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

    .info-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #c93a3e 0%, #7a1419 50%, #c93a3e 100%);
    }

.info-banner-header {
    background: linear-gradient(135deg, #c93a3e 0%, #7a1419 100%);
    padding: 2rem;
    position: relative;
}

    .info-banner-header::after {
        content: '';
        position: absolute;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
        top: -50px;
        right: -50px;
    }

.info-banner h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.info-banner-content {
    padding: 2.5rem;
    background: white;
}

.info-banner-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 58, 62, 0.1) 0%, rgba(122, 20, 25, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c93a3e;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem;
}

.info-banner p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: #495057;
    text-align: left;
}

    .info-banner p:last-child {
        margin-bottom: 0;
    }

.form-container {
    background: white;
    border: none;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

    .form-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #c93a3e 0%, #7a1419 50%, #c93a3e 100%);
    }

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

    .form-label .required {
        color: #c93a3e;
        margin-left: 2px;
    }

.form-control,
.form-select {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

    .form-control:focus,
    .form-select:focus {
        border-color: #c93a3e;
        box-shadow: 0 0 0 3px rgba(201, 58, 62, 0.1);
        background-color: white;
    }

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.help-button {
    background: linear-gradient(135deg, rgba(201, 58, 62, 0.1) 0%, rgba(122, 20, 25, 0.15) 100%);
    color: #c93a3e;
    border: 1px solid rgba(201, 58, 62, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .help-button:hover {
        background: linear-gradient(135deg, #c93a3e 0%, #7a1419 100%);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(201, 58, 62, 0.3);
    }

    .help-button i {
        font-size: 1rem;
    }

.form-actions {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.btn-back {
    background: white;
    color: #666;
    border: 2px solid #dee2e6;
    padding: 0.875rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-back:hover {
        border-color: #c93a3e;
        color: #c93a3e;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

.btn-submit {
    background: linear-gradient(135deg, #c93a3e 0%, #7a1419 100%);
    color: white;
    border: none;
    padding: 0.875rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .btn-submit::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s ease;
    }

    .btn-submit:hover:not(:disabled) {
        background: linear-gradient(135deg, #a82f33 0%, #5d0f13 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(201, 58, 62, 0.4);
    }

        .btn-submit:hover:not(:disabled)::before {
            left: 100%;
        }

    .btn-submit i {
        margin-left: 0.5rem;
        transition: transform 0.3s ease;
    }

    .btn-submit:hover:not(:disabled) i {
        transform: translateX(4px);
    }

    .btn-submit:disabled {
        background: linear-gradient(135deg, #9e9e9e 0%, #757575 100%);
        cursor: not-allowed;
        opacity: 0.6;
    }

.input-group {
    position: relative;
}

    .input-group .form-control,
    .input-group .form-select {
        padding-right: 3rem;
    }

.input-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    pointer-events: none;
    z-index: 5;
}

/* Select2 Custom Styling */
.select2-container--bootstrap-5 .select2-selection {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    background-color: #fafafa;
    min-height: 48px;
}

.select2-container--bootstrap-5.select2-container--focus .select2-selection,
.select2-container--bootstrap-5.select2-container--open .select2-selection {
    border-color: #c93a3e;
    box-shadow: 0 0 0 3px rgba(201, 58, 62, 0.1);
    background-color: white;
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
    color: #495057;
    padding-left: 0;
    line-height: 1.5;
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__placeholder {
    color: #6c757d;
}

.select2-container--bootstrap-5 .select2-dropdown {
    border: 1px solid #c93a3e;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(201, 58, 62, 0.15);
}

.select2-container--bootstrap-5 .select2-search--dropdown .select2-search__field {
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 0.5rem;
}

    .select2-container--bootstrap-5 .select2-search--dropdown .select2-search__field:focus {
        border-color: #c93a3e;
        outline: none;
        box-shadow: 0 0 0 2px rgba(201, 58, 62, 0.1);
    }

.select2-container--bootstrap-5 .select2-results__option--highlighted {
    background-color: #c93a3e;
    color: white;
}

.select2-container--bootstrap-5 .select2-results__option--selected {
    background-color: rgba(201, 58, 62, 0.1);
    color: #c93a3e;
}

.select2-container--bootstrap-5 .select2-results__option[aria-disabled="true"] {
    color: #333;
    font-weight: 600;
    background-color: #f8f9fa;
    cursor: default;
}

    .select2-container--bootstrap-5 .select2-results__option[aria-disabled="true"]:hover {
        background-color: #f8f9fa;
        color: #333;
    }

/* Indentation for KBLI dropdown options */
#kbli option[data-indent="1"] {
    padding-left: 20px;
}

#kbli option[data-indent="2"] {
    padding-left: 40px;
}

#kbli option[data-indent="3"] {
    padding-left: 60px;
}

#kbli option[data-indent="4"] {
    padding-left: 80px;
}

#kbli option[data-indent="5"] {
    padding-left: 100px;
}

/* Petunjuk Pengisian Button */
.form-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.petunjuk-help-button {
    background: white;
    color: #c93a3e;
    border: 2px solid #c93a3e;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .petunjuk-help-button:hover {
        background: #c93a3e;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(201, 58, 62, 0.3);
    }

    .petunjuk-help-button i {
        font-size: 1.1rem;
    }

/* Petunjuk Content Card */
.petunjuk-content-card {
    background: white;
    border: 2px solid #c93a3e;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    display: none;
    animation: slideDown 0.3s ease-out;
}

    .petunjuk-content-card.show {
        display: block;
    }

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.petunjuk-content-card h4 {
    color: #c93a3e;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .petunjuk-content-card h4 i {
        font-size: 1.5rem;
    }

.petunjuk-content-card h5 {
    color: #333;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.petunjuk-content-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.petunjuk-content-card ul {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

    .petunjuk-content-card ul li {
        margin-bottom: 0.5rem;
    }

.petunjuk-content-card .close-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    color: #666;
    border: 1px solid #dee2e6;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

    .petunjuk-content-card .close-button:hover {
        background: #e9ecef;
        border-color: #c93a3e;
        color: #c93a3e;
    }

/* Responsive */
@media (max-width: 768px) {
    .form-section::before {
        width: 250px;
        height: 250px;
        top: -80px;
        right: -80px;
    }

    .form-section::after {
        width: 200px;
        height: 200px;
        bottom: 30px;
        left: -60px;
    }

    .info-banner-header {
        padding: 1.5rem;
    }

    .info-banner h2 {
        font-size: 1.5rem;
    }

    .info-banner-content {
        padding: 1.75rem;
    }

    .info-banner-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .info-banner p {
        font-size: 0.9rem;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .form-actions {
        flex-direction: column-reverse;
    }

    .btn-back,
    .btn-submit {
        width: 100%;
    }

    .form-header {
        justify-content: center;
    }

    .petunjuk-help-button {
        width: 100%;
        justify-content: center;
    }
}

/* SIMULASI */
/* Review Section */
.review-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    min-height: calc(100vh - 400px);
    position: relative;
    overflow: hidden;
}

    /* Decorative Circle Elements */
    .review-section::before {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(201, 58, 62, 0.05) 0%, rgba(122, 20, 25, 0.08) 100%);
        top: -150px;
        right: -100px;
        z-index: 0;
    }

    .review-section::after {
        content: '';
        position: absolute;
        width: 350px;
        height: 350px;
        border-radius: 50%;
        background: linear-gradient(225deg, rgba(201, 58, 62, 0.03) 0%, rgba(122, 20, 25, 0.06) 100%);
        bottom: -100px;
        left: -80px;
        z-index: 0;
    }

.container {
    position: relative;
    z-index: 1;
}

.review-container {
    background: white;
    border: none;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

    .review-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #c93a3e 0%, #7a1419 50%, #c93a3e 100%);
    }

.review-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.review-item {
    padding: 1rem 1.25rem;
    border-right: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    transition: all 0.3s ease;
}

    .review-item:nth-child(2n) {
        border-right: none;
    }

    .review-item:hover {
        background: linear-gradient(135deg, rgba(201, 58, 62, 0.02) 0%, rgba(122, 20, 25, 0.03) 100%);
    }

.review-item-label {
    color: #c93a3e;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .review-item-label i {
        font-size: 1rem;
    }

.review-item-value {
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
}

.review-definition {
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(201, 58, 62, 0.03) 0%, rgba(122, 20, 25, 0.05) 100%);
    border-top: 2px solid #f0f0f0;
    grid-column: 1 / -1;
}

.review-definition-label {
    color: #c93a3e;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .review-definition-label i {
        font-size: 1.2rem;
    }

.review-definition-text {
    color: #495057;
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: justify;
}

/* Multi-Step Indicator */
.step-indicator {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.step-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00e676 0%, #00c853 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.3);
}

.step-label {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.step-help-button {
    background: white;
    color: #c93a3e;
    border: 2px solid #c93a3e;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .step-help-button:hover {
        background: #c93a3e;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(201, 58, 62, 0.3);
    }

    .step-help-button i {
        font-size: 1.1rem;
    }

/* Petunjuk Content Card */
.petunjuk-content-card {
    background: white;
    border: 2px solid #c93a3e;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    display: none;
    animation: slideDown 0.3s ease-out;
}

    .petunjuk-content-card.show {
        display: block;
    }

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.petunjuk-content-card h4 {
    color: #c93a3e;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .petunjuk-content-card h4 i {
        font-size: 1.5rem;
    }

.petunjuk-content-card h5 {
    color: #333;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.petunjuk-content-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.petunjuk-content-card ul {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

    .petunjuk-content-card ul li {
        margin-bottom: 0.5rem;
    }

.petunjuk-content-card .close-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    color: #666;
    border: 1px solid #dee2e6;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

    .petunjuk-content-card .close-button:hover {
        background: #e9ecef;
        border-color: #c93a3e;
        color: #c93a3e;
    }

.progress-bar-container {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #00e676 0%, #00c853 100%);
    width: 10%;
    transition: width 0.5s ease;
}

/* SDT Form Section */
.sdt-form-container {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.sdt-form-title {
    color: #c93a3e;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.sdt-question {
    margin-bottom: 1.5rem;
}

.sdt-question-text {
    color: #333;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
    white-space: pre-wrap !important;
}

.sdt-option {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .sdt-option:hover {
        border-color: #c93a3e;
        background: rgba(201, 58, 62, 0.02);
    }

    .sdt-option input[type="checkbox"], .sdt-option .dx-checkbox .dx-checkbox-container .dx-checkbox-icon {
        width: 20px;
        height: 20px;
        cursor: pointer;
        flex-shrink: 0;
        margin-top: 0.2rem;
        order: 2;
    }

.sdt-option-text {
    color: #495057;
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1;
    order: 1;
    white-space: pre-wrap !important;
}

.sdt-or {
    text-align: center;
    color: #6c757d;
    font-weight: 600;
    margin: 1rem 0;
}

.sdt-section-label {
    color: #333;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.sdt-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

    .sdt-input:focus {
        outline: none;
        border-color: #c93a3e;
        box-shadow: 0 0 0 3px rgba(201, 58, 62, 0.1);
    }

.sdt-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9rem;
    min-height: 150px;
    resize: vertical;
    margin-bottom: 1rem;
}

    .sdt-textarea:focus {
        outline: none;
        border-color: #c93a3e;
        box-shadow: 0 0 0 3px rgba(201, 58, 62, 0.1);
    }

.sdt-result {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.sdt-result-label {
    color: #6c757d;
    font-size: 0.9rem;
}

.sdt-result-value {
    color: #dc3545;
    font-weight: 700;
    font-size: 1rem;
    transition: color 0.3s ease;
}

    .sdt-result-value.terpenuhi {
        color: #00c853;
    }

.sdt-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: flex-end;
}

.btn-back {
    background: white;
    color: #666;
    border: 2px solid #dee2e6;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-back:hover {
        border-color: #c93a3e;
        color: #c93a3e;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

.btn-reset {
    background: #6c757d;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

    .btn-reset:hover {
        background: #5a6268;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
    }

.btn-next {
    background: linear-gradient(135deg, #c93a3e 0%, #7a1419 100%);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

    .btn-next:hover {
        background: linear-gradient(135deg, #a82f33 0%, #5d0f13 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(201, 58, 62, 0.3);
    }

/* Responsive */
@media (max-width: 768px) {
    .review-section::before {
        width: 250px;
        height: 250px;
    }

    .review-section::after {
        width: 200px;
        height: 200px;
    }

    .review-header h2 {
        font-size: 1.5rem;
        flex-direction: column;
    }

    .review-grid {
        grid-template-columns: 1fr;
    }

    .review-item {
        border-right: none;
    }

    .review-item-label {
        font-size: 0.8rem;
    }

    .review-item-value {
        font-size: 1rem;
    }

    .review-definition {
        padding: 1.5rem;
    }

    .step-indicator {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .step-circle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .step-help-button {
        width: 100%;
        justify-content: center;
    }

    .sdt-form-container {
        padding: 1.5rem;
    }

    .sdt-actions {
        flex-direction: column;
    }

    .btn-reset,
    .btn-back,
    .btn-next {
        width: 100%;
        justify-content: center;
    }
}

/* HASIL */
/* Hasil Section */
.hasil-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    min-height: calc(100vh - 400px);
    position: relative;
    overflow: hidden;
}

    /* Decorative Circle Elements */
    .hasil-section::before {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(201, 58, 62, 0.05) 0%, rgba(122, 20, 25, 0.08) 100%);
        top: -150px;
        right: -100px;
        z-index: 0;
    }

    .hasil-section::after {
        content: '';
        position: absolute;
        width: 350px;
        height: 350px;
        border-radius: 50%;
        background: linear-gradient(225deg, rgba(201, 58, 62, 0.03) 0%, rgba(122, 20, 25, 0.06) 100%);
        bottom: -100px;
        left: -80px;
        z-index: 0;
    }

.container {
    position: relative;
    z-index: 1;
}

/* Review Container */
.review-container {
    background: white;
    border: none;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

    .review-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #c93a3e 0%, #7a1419 50%, #c93a3e 100%);
    }

.review-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.review-item {
    padding: 1rem 1.25rem;
    border-right: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    transition: all 0.3s ease;
}

    .review-item:nth-child(2n) {
        border-right: none;
    }

    .review-item:hover {
        background: linear-gradient(135deg, rgba(201, 58, 62, 0.02) 0%, rgba(122, 20, 25, 0.03) 100%);
    }

.review-item-label {
    color: #c93a3e;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .review-item-label i {
        font-size: 1rem;
    }

.review-item-value {
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
}

.review-definition {
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(201, 58, 62, 0.03) 0%, rgba(122, 20, 25, 0.05) 100%);
    border-top: 2px solid #f0f0f0;
    grid-column: 1 / -1;
}

.review-definition-label {
    color: #c93a3e;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .review-definition-label i {
        font-size: 1.2rem;
    }

.review-definition-text {
    color: #495057;
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: justify;
}

/* Step Indicator */
.step-indicator {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.step-info-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00e676 0%, #00c853 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.3);
}

.step-label {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.step-connector {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #00e676 0%, #00c853 100%);
    position: absolute;
    top: 30px;
    left: 60px;
    z-index: -1;
}

.step-help-button {
    background: white;
    color: #c93a3e;
    border: 2px solid #c93a3e;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .step-help-button:hover {
        background: #c93a3e;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(201, 58, 62, 0.3);
    }

    .step-help-button i {
        font-size: 1.1rem;
    }

/* Petunjuk Content Card */
.petunjuk-content-card {
    background: white;
    border: 2px solid #c93a3e;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    display: none;
    animation: slideDown 0.3s ease-out;
}

    .petunjuk-content-card.show {
        display: block;
    }

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.petunjuk-content-card h4 {
    color: #c93a3e;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .petunjuk-content-card h4 i {
        font-size: 1.5rem;
    }

.petunjuk-content-card h5 {
    color: #333;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.petunjuk-content-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.petunjuk-content-card ul {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

    .petunjuk-content-card ul li {
        margin-bottom: 0.5rem;
    }

.petunjuk-content-card .close-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    color: #666;
    border: 1px solid #dee2e6;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

    .petunjuk-content-card .close-button:hover {
        background: #e9ecef;
        border-color: #c93a3e;
        color: #c93a3e;
    }

/* Tabs */
.hasil-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e0e0e0;
}

.hasil-tab {
    background: transparent;
    color: #666;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

    .hasil-tab::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        right: 0;
        height: 2px;
        background: transparent;
        transition: all 0.3s ease;
    }

    .hasil-tab.active {
        color: #c93a3e;
    }

        .hasil-tab.active::after {
            background: #c93a3e;
        }

    .hasil-tab:hover {
        color: #c93a3e;
    }

.tab-content {
    display: none;
}

    .tab-content.active {
        display: block;
    }

/* Results Container */
.hasil-container {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.hasil-title {
    color: #c93a3e;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f0f0f0;
}

.hasil-summary-item {
    display: flex;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

    .hasil-summary-item:last-child {
        border-bottom: none;
    }

.hasil-summary-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 600;
    flex: 0 0 250px;
}

.hasil-summary-value {
    color: #333;
    font-size: 0.9rem;
    flex: 1;
}

.hasil-section-title {
    color: #333;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hasil-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

    .hasil-item:hover {
        border-color: #00c853;
        background: rgba(0, 200, 83, 0.02);
    }

.hasil-item-text {
    color: #495057;
    font-size: 0.9rem;
    flex: 1;
}

.hasil-item-status {
    color: #00c853;
    font-weight: 700;
    font-size: 0.9rem;
}

    .hasil-item-status.not-met {
        color: #dc3545;
    }

.hasil-nested {
    margin-left: 1.5rem;
}

.final-result-label {
    color: #333;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.final-result-box {
    background: linear-gradient(135deg, #00e676 0%, #00c853 100%);
    color: white;
    padding: 2rem 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 200, 83, 0.3);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

    .final-result-box h2 {
        font-size: 2rem;
        font-weight: 700;
        margin: 0;
    }

    .final-result-box i {
        font-size: 2.5rem;
    }

/* Actions */
.hasil-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f0f0f0;
}

.btn-back {
    background: white;
    color: #666;
    border: 2px solid #dee2e6;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .btn-back:hover {
        border-color: #c93a3e;
        color: #c93a3e;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

.btn-reset {
    background: #6c757d;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

    .btn-reset:hover {
        background: #5a6268;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
    }

.btn-download {
    background: linear-gradient(135deg, #c93a3e 0%, #7a1419 100%);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .btn-download:hover {
        background: linear-gradient(135deg, #a82f33 0%, #5d0f13 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(201, 58, 62, 0.4);
    }

/* Responsive */
@media (max-width: 768px) {
    .hasil-section::before {
        width: 250px;
        height: 250px;
        top: -80px;
        right: -80px;
    }

    .hasil-section::after {
        width: 200px;
        height: 200px;
        bottom: -60px;
        left: -60px;
    }

    .review-grid {
        grid-template-columns: 1fr;
    }

    .review-item {
        border-right: none;
    }

    .step-info-container {
        gap: 1rem;
    }

    .step-circle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .step-connector {
        width: 60px;
        left: 50px;
        top: 25px;
    }

    .step-help-button {
        width: 100%;
        justify-content: center;
    }

    .hasil-container {
        padding: 1.5rem;
    }

    .hasil-summary-item {
        flex-direction: column;
        gap: 0.25rem;
    }

    .hasil-summary-label {
        flex: 1;
    }

    .hasil-actions {
        flex-direction: column-reverse;
    }

    .btn-back,
    .btn-reset,
    .btn-download {
        width: 100%;
    }

    .final-result-box h2 {
        font-size: 1.5rem;
    }

    .final-result-box i {
        font-size: 2rem;
    }
}