/* ========================================
   FEEDBACK PAGE STYLES
   ======================================== */

/* Hero Section */
.feedback-hero-section {
    position: relative;
    background: linear-gradient(to right, #0d6efd 0%, #0d6efd 100%);
    min-height: 300px;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.feedback-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(13, 110, 253, 0.9) 0%, rgba(13, 110, 253, 0.7) 100%);
    z-index: 1;
}

.feedback-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.feedback-hero-icon {
    font-size: 3rem;
    opacity: 0.9;
}

/* Content Container */
.feedback-content-container {
    padding: 3rem 1rem;
    background-color: #f8f9fa;
    min-height: calc(100vh - 400px);
}

/* Alert Styling */
.feedback-alert {
    border-radius: 0.5rem;
    border-left: 4px solid #0d6efd;
    background-color: rgba(13, 110, 253, 0.1);
}

/* Card Styling */
.feedback-card {
    border: 1px solid #e9ecef;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.feedback-card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1) !important;
}

.feedback-card .card-header {
    background-color: #ffffff;
}

.feedback-card .card-title {
    color: #212529;
    font-size: 1.25rem;
}

.feedback-card .card-text {
    color: #6c757d;
}

/* Form Styling */
.feedback-form {
    /* Base form container */
}

.feedback-input,
.feedback-select,
.feedback-textarea {
    border: 1px solid #dee2e6;
    border-radius: 0.4rem;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.feedback-input:focus,
.feedback-select:focus,
.feedback-textarea:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.feedback-textarea {
    resize: vertical;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Location Input Group */
.feedback-location-group {
    border-radius: 0.4rem;
    overflow: hidden;
}

.feedback-location-icon {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #6c757d;
}

.feedback-location-group .feedback-input {
    border-left: none;
}

/* Upload Zone */
.feedback-upload-zone {
    border: 2px dashed #dee2e6;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.feedback-upload-zone:hover {
    border-color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.05);
}

.feedback-upload-content {
    pointer-events: none;
}

.feedback-upload-icon {
    font-size: 2.5rem;
    color: #6c757d;
    display: block;
    margin-bottom: 0.5rem;
}

.feedback-upload-zone.active {
    border-color: #28a745;
    background-color: rgba(40, 167, 69, 0.05);
}

.feedback-upload-zone.active .feedback-upload-icon {
    color: #28a745;
}

/* Submit Button */
.feedback-submit-btn {
    background-color: #0d6efd;
    border: none;
    border-radius: 0.4rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.feedback-submit-btn:hover {
    background-color: #0b5ed7;
    transform: translateY(-1px);
    box-shadow: 0 0.5rem 1rem rgba(13, 110, 253, 0.3);
}

.feedback-submit-btn:active {
    transform: translateY(0);
}

/* Contact Info Items */
.feedback-contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feedback-contact-item:last-child {
    margin-bottom: 0;
}

.feedback-contact-icon {
    font-size: 1.5rem;
    color: #0d6efd;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feedback-contact-text {
    color: #212529;
    font-weight: 500;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .feedback-hero-section {
        min-height: 250px;
    }

    .feedback-hero-icon {
        font-size: 2rem;
    }

    .feedback-content-container {
        padding: 2rem 0.5rem;
    }

    .feedback-card {
        margin-bottom: 1.5rem;
    }

    .feedback-submit-btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .feedback-hero-section {
        min-height: 200px;
    }

    .feedback-hero-icon {
        font-size: 1.5rem;
    }

    .feedback-upload-zone {
        padding: 1rem;
    }

    .feedback-upload-icon {
        font-size: 2rem;
    }

    .feedback-contact-item {
        gap: 0.75rem;
    }

    .feedback-contact-icon {
        font-size: 1.25rem;
    }
}

/* Print Styles */
@media print {
    .feedback-hero-section,
    .feedback-submit-btn,
    .feedback-upload-zone {
        display: none;
    }
}