

.section-header-modern {
    margin-bottom: 28px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: #eef4ff;
    color: #2563eb;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    margin-bottom: 16px;
}

.section-main-title {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.section-main-description {
    color: #64748b;
    line-height: 1.8;
    max-width: 720px;
    margin: 0;
}

.hunian-guide-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.hunian-guide-card {
    position: relative;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 24px;
    padding: 24px;
    display: flex;
    gap: 18px;
    transition: .3s ease;
}

.hunian-guide-card.active-card {
    border-color: #2563eb;
    background: linear-gradient(135deg,
            #f8fbff,
            #eef5ff);
    transform: translateY(-2px);
    box-shadow:
        0 12px 25px rgba(37, 99, 235, 0.08);
}

.guide-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.guide-icon.success {
    background: #dcfce7;
    color: #16a34a;
}

.guide-icon.warning {
    background: #fef3c7;
    color: #d97706;
}

.guide-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.guide-description {
    color: #64748b;
    line-height: 1.7;
    font-size: 14px;
}

.guide-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.guide-tags span {
    padding: 7px 12px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #334155;
    font-size: 12px;
    font-weight: 600;
}

.custom-label {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.input-modern-wrapper {
    position: relative;
}

.input-modern-icon {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    z-index: 2;
    color: #94a3b8;
    font-size: 20px;
}

.modern-select {
    height: 62px;
    border-radius: 18px;
    border: 1.5px solid #dbe3f0;
    padding-left: 54px;
    font-size: 15px;
    font-weight: 600;
    transition: .25s ease;
    box-shadow: none !important;
}

.modern-select:focus {
    border-color: #2563eb;
    box-shadow:
        0 0 0 5px rgba(37, 99, 235, 0.08) !important;
}

.status-preview-box {
    height: 62px;
    border-radius: 18px;
    border: 1.5px dashed #cbd5e1;
    background: #f8fafc;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 18px;
}

.status-preview-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #e0f2fe;
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.status-preview-label {
    font-size: 12px;
    color: #64748b;
}

.status-preview-value {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
}

.hunian-alert-box {
    margin-top: 28px;
    border-radius: 22px;
    background: linear-gradient(135deg,
            #f8fafc,
            #f1f5f9);
    border: 1px solid #e2e8f0;
    padding: 22px;
    display: flex;
    gap: 18px;
    transition: .3s ease;
}

.hunian-alert-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: #e0f2fe;
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.hunian-alert-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.hunian-alert-description {
    color: #64748b;
    line-height: 1.8;
}

@media (max-width: 768px) {

    .card-section {
        padding: 22px;
    }

    .section-main-title {
        font-size: 22px;
    }

    .hunian-guide-wrapper {
        grid-template-columns: 1fr;
    }

    .hunian-guide-card {
        padding: 20px;
    }

}

.page-header-card {
    border: 0;
    border-radius: 22px;
    background: linear-gradient(135deg, #696cff 0%, #5a5de6 100%);
    color: white;
    overflow: hidden;
    position: relative;
}

.page-header-card::after {
    content: '';
    position: absolute;
    right: -40px;
    top: -40px;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.page-header-card .badge {
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 30px;
}

.page-header-card h4 {
    font-weight: 700;
    margin-bottom: 8px;
}

.page-header-card p {
    opacity: .9;
    margin-bottom: 0;
}

.info-alert {
    border: 0;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .04);
}

.card-section {
    background: #fff;
    border: 0;
    border-radius: 22px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .05);
    transition: .2s ease;
}

.card-section:hover {
    transform: translateY(-2px);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #2f3349;
    margin-bottom: 6px;
}

.section-number {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(105, 108, 255, .12);
    color: #696cff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.helper-text {
    font-size: 13px;
    color: #7a7f9a;
    margin-bottom: 20px;
    line-height: 1.6;
}

label {
    font-weight: 600;
    font-size: 13px;
    color: #4b4f68;
    margin-bottom: 8px;
}

.form-control,
.form-select,
.select2-container--default .select2-selection--single {
    border-radius: 14px !important;
    min-height: 48px;
    border: 1px solid #e3e6ef;
    font-size: 14px;
    transition: .2s ease;
}

textarea.form-control {
    min-height: 100px;
}

.form-control:focus,
.form-select:focus {
    border-color: #696cff;
    box-shadow: 0 0 0 .2rem rgba(105, 108, 255, .12);
}

.select2-container--default .select2-selection--single {
    display: flex;
    align-items: center;
    padding-left: 6px;
}

.invalid-feedback {
    display: block;
    font-size: 12px;
    margin-top: 6px;
}

.form-check-modern {
    background: #f8f9fd;
    border-radius: 16px;
    padding: 16px 18px;
    border: 1px solid #eceef5;
}

.radio-group label {
    display: block;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid #e8eaf2;
    margin-bottom: 12px;
    cursor: pointer;
    transition: .2s ease;
    background: #fff;
}

.radio-group label:hover {
    border-color: #696cff;
    background: #f7f8ff;
}

.radio-group input[type=radio] {
    margin-right: 10px;
}

.btn {
    border-radius: 14px;
    padding: 11px 22px;
    font-weight: 600;
}

.btn-primary {
    box-shadow: 0 6px 18px rgba(105, 108, 255, .25);
}

.section-divider {
    height: 1px;
    background: #eef1f6;
    margin: 22px 0;
}

@media(max-width:768px) {
    .card-section {
        padding: 22px;
    }

    .page-header-card .d-flex {
        flex-direction: column;
        align-items: flex-start !important;
    }
}

.location-info-box {
    display: flex;
    gap: 18px;
    padding: 22px;

    background: linear-gradient(135deg,
            #f8fbff,
            #eef5ff);
    border: 1px solid #dbeafe;
}

.location-info-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #2563eb;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.location-info-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.location-info-description {
    color: #64748b;
    line-height: 1.8;
}

.maps-location-card {
    margin-top: 20px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    background: #fff;
}

.maps-card-header {
    padding: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eef2f7;
}

.maps-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}

.maps-subtitle {
    color: #64748b;
    margin: 0;
}

.btn-location-detect {
    height: 52px;
    padding: 0 24px;
    border-radius: 16px;
    border: none;
    background: #2563eb;
    color: #fff;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: .3s ease;
}

.btn-location-detect:hover {
    background: #1d4ed8;
    color: #fff;
    transform: translateY(-2px);
}

.maps-preview-box {
    height: 380px;
    background:
        linear-gradient(135deg,
            #eff6ff,
            #dbeafe);
    position: relative;
    overflow: hidden;
}

.maps-preview-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    z-index: 2;
}

.maps-preview-icon {
    width: 90px;
    height: 90px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .8);
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    margin-bottom: 20px;
}

.maps-preview-overlay h5 {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.maps-preview-overlay p {
    color: #64748b;
    max-width: 400px;
    line-height: 1.7;
}

#maps_canvas {
    width: 100%;
    height: 100%;
}

.modern-input,
.modern-textarea,
.modern-select {
    border-radius: 18px;
    border: 1.5px solid #dbe3f0;
    min-height: 58px;
    padding: 14px 18px;
    box-shadow: none !important;
    transition: .3s ease;
}

.modern-textarea {
    min-height: 120px;
}

.modern-input:focus,
.modern-textarea:focus,
.modern-select:focus {
    border-color: #2563eb;
    box-shadow:
        0 0 0 5px rgba(37, 99, 235, .08) !important;
}

.custom-label {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

@media (max-width: 768px) {

    .maps-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .maps-preview-box {
        height: 300px;
    }

}

.show-section {
    animation: fadeSection .35s ease;
}

@keyframes fadeSection {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.wizard-wrapper {
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    border: 1px solid #edf2f7;
}

.wizard-progress {
    width: 100%;
    height: 8px;
    background: #edf2f7;
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 28px;
}

.wizard-progress-bar {
    width: 0%;
    height: 100%;
    transition: .3s ease;
    background: linear-gradient(90deg,
            #2563eb,
            #60a5fa);
}

.wizard-steps {
    display: flex;
    gap: 14px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.wizard-step {
    flex: 1;
    min-width: 220px;
    display: flex;
    align-items: center;
    gap: 14px;
    opacity: .45;
    transition: .3s;
}

.wizard-step.active,
.wizard-step.completed {
    opacity: 1;
}

.wizard-step-circle {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    transition: .3s;
}

.wizard-step.active .wizard-step-circle {
    background: #2563eb;
    color: #fff;
    box-shadow: 0 10px 25px rgba(37, 99, 235, .2);
}

.wizard-step.completed .wizard-step-circle {
    background: #10b981;
    color: #fff;
}

.wizard-step-title {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}

.wizard-step-subtitle {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.4;
}

.wizard-page {
    display: none;
    animation: wizardFade .25s ease;
}

.wizard-page.active {
    display: block;
}

@keyframes wizardFade {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.wizard-navigation {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.wizard-btn-prev,
.wizard-btn-next {
    min-width: 180px;
    height: 52px;
    border-radius: 14px;
    font-weight: 600;
}

@media(max-width:768px) {

    .wizard-steps {
        flex-direction: column;
    }

    .wizard-step {
        min-width: 100%;
    }

    .wizard-navigation {
        flex-direction: column-reverse;
    }

    .wizard-btn-prev,
    .wizard-btn-next {
        width: 75%;
        align-self: center;
        
    }

}
