/* Feedback Modal Styles */
.feedback-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feedback-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.feedback-modal {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.feedback-modal-overlay.active .feedback-modal {
    transform: translateY(0);
}

.feedback-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.2s;
}

.feedback-modal-close:hover {
    color: var(--brand-ruby);
}

.feedback-modal h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--text-color);
}

.feedback-modal p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.feedback-form-group {
    margin-bottom: 20px;
}

.feedback-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-color);
}

.feedback-input,
.feedback-select,
.feedback-textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: white;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.feedback-input:focus,
.feedback-select:focus,
.feedback-textarea:focus {
    outline: none;
    border-color: var(--brand-sapphire);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.feedback-textarea {
    resize: vertical;
    min-height: 100px;
}

.feedback-submit {
    width: 100%;
    padding: 14px;
    background: var(--brand-sapphire);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.feedback-submit:hover {
    background: #2563eb;
}

.feedback-submit:active {
    transform: scale(0.98);
}

.feedback-submit:disabled {
    background: #94a3b8;
    cursor: not-allowed;
}

.feedback-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 20px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s;
}

.feedback-trigger:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-color);
}

/* Success State */
.feedback-success {
    text-align: center;
    display: none;
}

.feedback-success i {
    font-size: 3rem;
    color: var(--brand-emerald);
    margin-bottom: 20px;
}

.feedback-success h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

/* Honeypot */
.feedback-hp {
    display: none;
}