/* 장애인 표준사업장 적합도 평가 페이지 스타일 */

/* 페이지 헤더 */
.page-header {
    background: var(--primary-blue);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.page-header-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* 평가 폼 섹션 */
.evaluation-form-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.evaluation-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.evaluation-header {
    text-align: center;
    margin-bottom: 40px;
}

.evaluation-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.evaluation-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.evaluation-header p {
    color: #666;
    font-size: 1.1rem;
}

/* 폼 스타일 */
.evaluation-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.form-group input,
.form-group select {
    padding: 15px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-help {
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* 라디오 버튼 그룹 */
.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 15px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    transition: all 0.3s ease;
    background-color: white;
    flex: 1;
}

.radio-option:hover {
    border-color: #667eea;
    background-color: #f8f9ff;
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    border-color: #667eea;
    background-color: #667eea;
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
}

.radio-label {
    font-weight: 500;
    color: #333;
}

/* 계산 버튼 */
.btn-calculate {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-calculate:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* 에러 메시지 */
.error-message {
    background-color: #fee;
    border: 1px solid #fcc;
    color: #c33;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.error-icon {
    font-size: 1.2rem;
}

/* 결과 섹션 */
.result-section {
    padding: 80px 0;
    background-color: white;
}

.result-card {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.result-header {
    text-align: center;
    margin-bottom: 40px;
}

.result-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.result-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

/* 결과 요약 */
.result-summary {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    font-weight: 600;
    color: #666;
}

.summary-value {
    font-weight: 700;
    color: #333;
    font-size: 1.1rem;
}

/* 적합도 결과 */
.fitness-result {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.fitness-score {
    margin-bottom: 20px;
}

.score-label {
    font-weight: 600;
    color: #666;
    font-size: 1.1rem;
}

.score-value {
    font-weight: 700;
    font-size: 2rem;
    margin-left: 10px;
}

.score-value.positive {
    color: #28a745;
}

.score-value.negative {
    color: #dc3545;
}

.fitness-status {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.status-label {
    font-weight: 600;
    color: #666;
}

.status-value {
    font-weight: 700;
    font-size: 1.2rem;
    padding: 8px 20px;
    border-radius: 25px;
}

.status-value.eligible {
    background-color: #d4edda;
    color: #155724;
}

.status-value.ineligible {
    background-color: #f8d7da;
    color: #721c24;
}

/* 결과 설명 */
.result-explanation {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.result-explanation h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.result-explanation p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.result-note {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 15px;
    border-radius: 8px;
    font-weight: 500;
}

/* 안내 섹션 */
.info-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.info-card p {
    color: #666;
    line-height: 1.6;
}

/* CTA 섹션 */
.cta-section {
    padding: 80px 0;
    
    color: white;
}

.cta-card {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 48px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: white;
    color: #667eea;
}

.btn-primary:hover {
    background-color: #f8f9ff;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #667eea;
    transform: translateY(-2px);
}

.cta-illustration {
    flex-shrink: 0;
}

.illustration-icon {
    font-size: 4rem;
    opacity: 0.8;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .evaluation-card,
    .result-card {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-card {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .summary-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .fitness-status {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 60px 0 40px;
    }
    
    .evaluation-form-section,
    .result-section,
    .info-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .evaluation-header h2,
    .result-header h2 {
        font-size: 1.5rem;
    }
    
    .score-value {
        font-size: 1.5rem;
    }
}
