body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: #334155;
}

.page-banner {
    padding: 80px 0;
    background: var(--theme-gradient);
}

.survei-container {
    padding: 60px 0 100px;
}

/* Satisfaction Dashboard */
.ikm-dashboard-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    padding: 30px;
    margin-bottom: 40px;
}

.ikm-grid {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 30px;
    align-items: center;
}

@media (max-width: 991px) {
    .ikm-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.ikm-score-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(11, 92, 59, 0.04), rgba(11, 92, 59, 0.08));
    border: 1px solid rgba(11, 92, 59, 0.15);
    border-radius: 20px;
    padding: 30px 20px;
}

.ikm-score-num {
    font-size: 58px;
    font-weight: 900;
    color: var(--theme-primary);
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Raleway', sans-serif;
}

.ikm-score-label {
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.ikm-badge {
    background-color: var(--theme-primary);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    padding: 6px 18px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--theme-shadow);
}

.ikm-info-wrapper h3 {
    font-size: 24px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 10px;
    font-family: 'Raleway', sans-serif;
}

.ikm-info-wrapper p {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 25px;
}

.ikm-stats-list {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .ikm-stats-list {
        justify-content: center;
    }
}

.ikm-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.ikm-stat-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: rgba(108, 197, 155, 0.12);
    color: var(--theme-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.ikm-stat-val {
    font-size: 18px;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
    line-height: 1.2;
}

.ikm-stat-lbl {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Premium Form Styles */
.survey-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    padding: 40px;
}

@media (max-width: 576px) {
    .survey-card {
        padding: 25px 20px;
    }
}

.survey-section-title {
    font-size: 18px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 25px;
    border-bottom: 1px dashed #e2e8f0;
    padding-bottom: 12px;
    font-family: 'Raleway', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

.survey-section-title i {
    color: var(--theme-primary);
}

/* Star Rating Components */
.rating-item {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    transition: all 0.3s ease;
}

.rating-item:hover {
    border-color: var(--theme-secondary);
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(11, 92, 59, 0.04);
}

.rating-label {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.rating-stars {
    display: flex;
    flex-direction: row-reverse;
    gap: 6px;
}

.rating-stars input {
    display: none;
}

.rating-stars label {
    font-size: 28px;
    color: #cbd5e1;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0;
}

.rating-stars label:hover,
.rating-stars label:hover ~ label,
.rating-stars input:checked ~ label {
    color: #fbbf24;
}

/* Success Card */
.survey-success-card {
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    padding: 50px 30px;
    text-align: center;
    animation: scaleUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-width: 600px;
    margin: 0 auto;
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #f0fdf4;
    color: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 25px;
    border: 2px solid #bbf7d0;
}

.survey-success-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 12px;
    font-family: 'Raleway', sans-serif;
}

.survey-success-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-survey-back {
    background: var(--theme-gradient);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 30px;
    border-radius: 8px;
    border: none;
    box-shadow: var(--theme-shadow);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-survey-back:hover {
    transform: translateY(-2px);
    box-shadow: var(--theme-shadow-hover);
}

@keyframes scaleUp {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
