/* ==================== REPAIR REQUEST FORM STYLES ==================== */

.repair-form-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    margin: 40px 0;
}

.repair-form-section h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.repair-form-section>p {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.repair-form {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-alert {
    background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.form-alert i {
    font-size: 1.5rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.form-section {
    margin-bottom: 35px;
    padding: 25px;
    background: #f8f9ff;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.form-section-title {
    color: #2d3748;
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.form-section-title i {
    color: #667eea;
    font-size: 1.4rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2d3748;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.required {
    color: #e53e3e;
    font-weight: bold;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    color: #2d3748;
}

.checkbox-label:hover {
    border-color: #667eea;
    background: #f7fafc;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin: 0;
}

.checkbox-label i {
    color: #667eea;
    font-size: 1.1rem;
}

.checkbox-label input[type="checkbox"]:checked+i {
    color: #48bb78;
}

.terms-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    margin-bottom: 20px;
}

.terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.9rem;
}

.terms-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
    font-size: 1.2rem;
}

.checkbox-agreement {
    margin-bottom: 0 !important;
}

.checkbox-agreement .checkbox-label {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    font-weight: 500;
}

.checkbox-agreement .checkbox-label:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

.btn-large {
    padding: 16px 48px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.btn-large i {
    font-size: 1.2rem;
}

.form-note {
    margin-top: 20px;
    color: #718096;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-note i {
    color: #667eea;
}

/* Success Message */
.success-message {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin: 30px 0;
    display: none;
}

.success-message.show {
    display: block;
    animation: slideDown 0.5s ease;
}

.success-message i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.success-message h3 {
    color: #fff;
    margin-bottom: 10px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .repair-form {
        padding: 25px 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .repair-form-section h2 {
        font-size: 1.8rem;
    }

    .form-section {
        padding: 20px 15px;
    }
}