/* ========================================
   SECTION RÉCLAMATION - STYLES PREMIUM
   ======================================== */

.reclamation-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* Info Card */
.reclamation-info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left: 5px solid #2196F3;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 35px;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.15);
    animation: slideInDown 0.5s ease-out;
}

.reclamation-info-icon {
    font-size: 32px;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

.reclamation-info-content {
    flex: 1;
    color: #0d47a1;
    font-size: 15px;
    line-height: 1.6;
}

.reclamation-info-content strong {
    color: #1565c0;
    font-size: 16px;
}

/* Section Styling */
.reclamation-section {
    background: white;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.reclamation-section:hover {
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.reclamation-section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #f5f5f5;
}

.reclamation-section-icon {
    font-size: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    flex-shrink: 0;
}

.reclamation-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    letter-spacing: -0.3px;
}

/* Form Group */
.reclamation-form-group {
    margin-bottom: 25px;
    animation: fadeIn 0.5s ease-out;
}

.reclamation-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 12px;
    letter-spacing: 0.2px;
}

.required {
    color: #e74c3c;
    font-weight: 700;
    font-size: 18px;
}

/* Radio Buttons - Design Premium */
.reclamation-radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.reclamation-radio-option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 15px 25px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 150px;
}

.reclamation-radio-option:hover {
    background: #e3f2fd;
    border-color: #2196F3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.2);
}

.reclamation-radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.reclamation-radio-custom {
    width: 24px;
    height: 24px;
    border: 2.5px solid #ced4da;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: white;
}

.reclamation-radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: transform 0.2s ease;
}

.reclamation-radio-option input[type="radio"]:checked + .reclamation-radio-custom {
    border-color: #667eea;
    background: white;
}

.reclamation-radio-option input[type="radio"]:checked + .reclamation-radio-custom::after {
    transform: translate(-50%, -50%) scale(1);
}

.reclamation-radio-option input[type="radio"]:checked ~ .reclamation-radio-text {
    color: #667eea;
    font-weight: 700;
}

.reclamation-radio-option:has(input[type="radio"]:checked) {
    background: linear-gradient(135deg, #e8eaf6 0%, #f3e5f5 100%);
    border-color: #667eea;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.25);
}

.reclamation-radio-text {
    font-size: 15px;
    font-weight: 600;
    color: #495057;
    transition: all 0.3s ease;
}

/* Input et Textarea */
.reclamation-input,
.reclamation-textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #fafafa;
}

.reclamation-input:focus,
.reclamation-textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

.reclamation-textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.reclamation-textarea::placeholder {
    color: #adb5bd;
    font-style: italic;
}

/* Dependent Field Animation */
.reclamation-dependent-field {
    overflow: hidden;
    transition: all 0.4s ease;
    max-height: 0;
    opacity: 0;
}

.reclamation-dependent-field.show {
    max-height: 200px;
    opacity: 1;
    margin-top: 15px;
}

/* Action Buttons */
.reclamation-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

.reclamation-btn {
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.reclamation-btn:active {
    transform: scale(0.97);
}

.reclamation-btn-reset {
    background: linear-gradient(135deg, #e0e0e0 0%, #bdbdbd 100%);
    color: #424242;
}

.reclamation-btn-reset:hover {
    background: linear-gradient(135deg, #bdbdbd 0%, #9e9e9e 100%);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.reclamation-btn-save {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    color: white;
}

.reclamation-btn-save:hover {
    background: linear-gradient(135deg, #388E3C 0%, #2E7D32 100%);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    transform: translateY(-2px);
}

/* Success Message */
.reclamation-success-message {
    display: none;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #28a745;
    border-radius: 10px;
    padding: 18px 24px;
    margin-top: 25px;
    color: #155724;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    animation: slideInUp 0.5s ease-out;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
}

.reclamation-success-message.show {
    display: block;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .reclamation-container {
        padding: 15px;
    }
    
    .reclamation-section {
        padding: 20px;
    }
    
    .reclamation-info-card {
        flex-direction: column;
        gap: 15px;
    }
    
    .reclamation-radio-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .reclamation-radio-option {
        min-width: auto;
    }
    
    .reclamation-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .reclamation-btn {
        width: 100%;
        justify-content: center;
    }
    
    .reclamation-section-header {
        flex-direction: column;
        text-align: center;
    }
}