/* ============================================
   Feedback Form Styling
   ============================================ */

.feedback-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 24px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.feedback-wrap h1 {
    margin: 0 0 12px;
    font-size: 32px;
    color: #fff;
    letter-spacing: 0.5px;
}

.feedback-wrap p.lead {
    margin: 0 0 24px;
    color: #d8d8e5;
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.feedback-grid label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #f0f0f5;
}

.feedback-grid input,
.feedback-grid textarea,
.feedback-grid select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #2f3359;
    border-radius: 10px;
    background: #15173a;
    color: #f9f9ff;
    font-size: 15px;
    box-sizing: border-box;
}

.feedback-grid textarea {
    min-height: 140px;
    resize: vertical;
}

.feedback-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.feedback-actions label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #d8d8e5;
    font-size: 14px;
    line-height: 1.4;
}

.feedback-actions input[type="checkbox"] {
    margin-top: 2px;
}

.feedback-actions button {
    padding: 12px 28px;
    border: none;
    border-radius: 28px;
    background: linear-gradient(135deg, #ff6b35, #ff914d);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.feedback-actions button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(255, 107, 53, 0.45);
}

.feedback-actions button:active {
    transform: translateY(0);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 8px 16px;
    padding: 12px 14px;
    border: 1px solid #2f3359;
    border-radius: 10px;
    background: #15173a;
}

.checkbox-group label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-weight: 500;
    color: #f0f0f5;
}

.checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
}
