/* ==========================================
HALAMAN SELESAI SURVEY
========================================== */

.survey-complete-page {
    min-height: 100vh;
    padding: 60px 15px;
    background: #f5f7fb;
    display: flex;
    align-items: center;
}

.survey-complete-wrapper {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
}


/* ==========================================
CARD
========================================== */

.survey-complete-card {
    position: relative;
    overflow: hidden;
    padding: 50px 45px;
    background: #ffffff;
    border: 1px solid #e8edf4;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 55px rgba(31, 45, 61, 0.10);
}

.survey-complete-card::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    top: -130px;
    right: -100px;
    border-radius: 50%;
    background: rgba(21, 114, 232, 0.05);
}

.survey-complete-card::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    bottom: -110px;
    left: -80px;
    border-radius: 50%;
    background: rgba(49, 206, 54, 0.05);
}


/* ==========================================
ICON SUKSES
========================================== */

.complete-icon {
    position: relative;
    z-index: 2;
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: #eafbea;
    color: #31ce36;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    box-shadow: 0 10px 30px rgba(49, 206, 54, 0.18);
}

.complete-icon::before {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    border: 2px solid rgba(49, 206, 54, 0.12);
    border-radius: 50%;
}


/* ==========================================
TEXT
========================================== */

.complete-label {
    position: relative;
    z-index: 2;
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 14px;
    border-radius: 50px;
    background: #edf5ff;
    color: #1572e8;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.survey-complete-card h1 {
    position: relative;
    z-index: 2;
    margin: 0 0 15px;
    color: #1f2d3d;
    font-size: 36px;
    font-weight: 700;
}

.complete-message {
    position: relative;
    z-index: 2;
    max-width: 530px;
    margin: 0 auto 30px;
    color: #8492a6;
    font-size: 15px;
    line-height: 1.8;
}


/* ==========================================
INFO SURVEY
========================================== */

.complete-survey-info,
.complete-code {
    position: relative;
    z-index: 2;
    margin-bottom: 15px;
    padding: 16px 20px;
    border-radius: 14px;
    background: #f8f9fc;
    border: 1px solid #edf0f5;
}

.complete-survey-info span,
.complete-code span {
    display: block;
    margin-bottom: 5px;
    color: #9aa4b2;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.complete-survey-info strong {
    display: block;
    color: #1f2d3d;
    font-size: 15px;
    font-weight: 700;
}

.complete-code {
    background: #edf5ff;
    border-color: #dceaff;
}

.complete-code strong {
    display: block;
    color: #1572e8;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}


/* ==========================================
CATATAN KEAMANAN
========================================== */

.complete-note {
    position: relative;
    z-index: 2;
    margin: 25px 0;
    padding: 15px 18px;
    border-radius: 13px;
    background: #f7fafc;
    color: #8492a6;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    font-size: 12px;
    line-height: 1.6;
}

.complete-note i {
    margin-top: 3px;
    color: #1572e8;
    font-size: 16px;
    flex-shrink: 0;
}


/* ==========================================
BUTTON
========================================== */

.btn-back-home {
    position: relative;
    z-index: 2;
    min-height: 50px;
    padding: 13px 24px;
    border-radius: 13px;
    background: #1572e8;
    color: #ffffff !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(21, 114, 232, 0.20);
    transition: all 0.2s ease;
}

.btn-back-home:hover {
    background: #1269db;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(21, 114, 232, 0.25);
}


/* ==========================================
RESPONSIVE
========================================== */

@media (max-width: 767px) {

    .survey-complete-page {
        padding: 30px 12px;
    }

    .survey-complete-card {
        padding: 40px 22px;
        border-radius: 20px;
    }

    .complete-icon {
        width: 75px;
        height: 75px;
        font-size: 31px;
    }

    .complete-icon::before {
        width: 92px;
        height: 92px;
    }

    .survey-complete-card h1 {
        font-size: 29px;
    }

    .complete-message {
        font-size: 14px;
    }

    .btn-back-home {
        width: 100%;
    }
}