/* Feedback Form Styles */
.feedback-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    padding-top: 120px;
}

.feedback-header .section-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(33, 62, 123, 0.1);
    border-radius: 50px;
    color: #213e7b;
    font-weight: 600;
    font-size: 0.9rem;
}

.feedback-header .section-title {
    color: #213e7b;
    font-weight: bold;
    font-size: 2.5rem;
}

.feedback-header .section-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
}

.feedback-header .title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #213e7b 0%, #00afdd 100%);
    border-radius: 2px;
    margin-top: 1rem;
}

/* Feedback Form Card */
.feedback-form-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feedback-form-card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

/* Form Groups */
.feedback-form .form-group {
    margin-bottom: 1.5rem;
}

.feedback-form .form-label {
    font-weight: 600;
    color: #213e7b;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.feedback-form .form-label i {
    color: #00afdd;
}

.feedback-form .form-control,
.feedback-form .form-select {
    padding: 12px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.feedback-form .form-control:focus,
.feedback-form .form-select:focus {
    border-color: #00afdd;
    box-shadow: 0 0 0 0.2rem rgba(0, 175, 221, 0.15);
    background: white;
}

.feedback-form textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

/* Submit Button */
.feedback-form .btn-submit {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(135deg, #213e7b 0%, #00afdd 100%);
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(33, 62, 123, 0.2);
}

.feedback-form .btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(33, 62, 123, 0.3);
}

.feedback-form .btn-submit:active {
    transform: translateY(-1px);
}

/* Validation Errors */
.feedback-form .text-danger {
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.feedback-form .form-control.input-validation-error,
.feedback-form .form-select.input-validation-error {
    border-color: #dc3545;
}

/* Contact Info Box */
.contact-info-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-info-item {
    padding: 1.5rem;
    transition: all 0.3s ease;
}

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

.contact-info-item i {
    font-size: 2.5rem;
    color: #00afdd;
    margin-bottom: 1rem;
}

.contact-info-item h5 {
    color: #213e7b;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-info-item a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: #00afdd;
}

/* Alert Messages */
.alert {
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    border: none;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
}

.alert-success {
    background: #d4edda;
    color: #155724;
}

/* Responsive Design */
@media (max-width: 768px) {
    .feedback-section {
        padding-top: 100px;
    }

    .feedback-header .section-title {
        font-size: 2rem;
    }

    .feedback-form-card {
        padding: 2rem 1.5rem;
    }

    .feedback-form .btn-submit {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .contact-info-item {
        margin-bottom: 1rem;
    }
}

/* RTL Support */
[dir="rtl"] .feedback-form .form-label i {
    margin-left: 0.5rem;
    margin-right: 0;
}

[dir="rtl"] .feedback-form .btn-submit i {
    margin-left: 0.5rem;
    margin-right: 0;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feedback-form-card {
    animation: fadeInUp 0.6s ease-out;
}
