/* Public Survey Styles */
.seker-survey-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    direction: rtl;
    text-align: right;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.seker-survey-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.seker-survey-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 15px 0;
}

.seker-survey-description {
    font-size: 16px;
    color: #7f8c8d;
    margin: 0;
    line-height: 1.6;
}

/* Progress Bar */
.seker-progress-bar {
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 10px;
    margin-bottom: 30px;
    overflow: hidden;
}

.seker-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 10px;
    transition: width 0.5s ease;
    box-shadow: 0 2px 4px rgba(52, 152, 219, 0.3);
}

/* Step Container */
.seker-step-container {
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.seker-step-header {
    margin-bottom: 25px;
}

.seker-step-header h3 {
    font-size: 20px;
    color: #34495e;
    margin: 0;
    font-weight: 600;
}

/* Questions */
.seker-questions-wrapper {
    margin-bottom: 30px;
}

.seker-question-wrapper {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-right: 4px solid #3498db;
    transition: all 0.3s ease;
}

.seker-question-wrapper:hover {
    background: #f0f4f8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.seker-question-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.5;
}

.seker-required {
    color: #e74c3c;
    margin-right: 5px;
}

/* Input Fields */
.seker-input,
.seker-textarea,
.seker-select {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #fff;
}

.seker-input:focus,
.seker-textarea:focus,
.seker-select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.seker-textarea {
    resize: vertical;
    min-height: 100px;
}

/* Options Groups */
.seker-options-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.seker-radio-label,
.seker-checkbox-label {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
}

.seker-radio-label:hover,
.seker-checkbox-label:hover {
    background: #f8f9fa;
    border-color: #3498db;
}

.seker-radio-label input[type="radio"],
.seker-checkbox-label input[type="checkbox"] {
    margin-left: 12px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #3498db;
}

.seker-radio-label input[type="radio"]:checked + span,
.seker-checkbox-label input[type="checkbox"]:checked + span {
    font-weight: 600;
    color: #3498db;
}

.seker-radio-label:has(input[type="radio"]:checked),
.seker-checkbox-label:has(input[type="checkbox"]:checked) {
    background: #e8f4f8;
    border-color: #3498db;
}

/* Buttons */
.seker-step-actions {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
}

.seker-btn {
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: inherit;
}

.seker-btn-primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: #fff;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.seker-btn-primary:hover {
    background: linear-gradient(135deg, #2980b9, #1f6391);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    transform: translateY(-2px);
}

.seker-btn-secondary {
    background: #95a5a6;
    color: #fff;
}

.seker-btn-secondary:hover {
    background: #7f8c8d;
    transform: translateY(-2px);
}

.seker-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Success Message */
.seker-survey-success {
    text-align: center;
    padding: 40px 20px;
    animation: fadeInUp 0.5s ease;
}

.seker-success-message {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(46, 204, 113, 0.3);
}

.seker-success-message h3 {
    font-size: 28px;
    margin: 0 0 15px 0;
}

.seker-success-message p {
    font-size: 18px;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .seker-survey-container {
        margin: 20px;
        padding: 20px;
    }
    
    .seker-survey-title {
        font-size: 24px;
    }
    
    .seker-step-actions {
        flex-direction: column;
    }
    
    .seker-btn {
        width: 100%;
    }
}

/* Loading State */
.seker-loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Error Messages */
.seker-error {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

.seker-input.error,
.seker-textarea.error,
.seker-select.error {
    border-color: #e74c3c;
}

