/* Feedback Page Specific Styles */

/* Feedback Hero */
.feedback-hero {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 20px;
}

.feedback-hero h1 {
    font-size: 2.4rem;
    font-weight: 400;
    font-style: italic;
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.2;
}

.feedback-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Form Wrapper */
.feedback-form-section {
    margin-bottom: 60px;
}

.form-wrapper {
    max-width: 650px;
    margin: 0 auto;
    background: var(--bg-light);
    border-radius: 8px;
    padding: 50px;
}

/* Score Groups */
.score-group {
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(30, 58, 95, 0.1);
}

.score-group:last-of-type {
    border-bottom: none;
}

.score-group label {
    display: block;
    margin-bottom: 12px;
}

.score-label {
    display: block;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 4px;
}

.score-description {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
}

.score-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 8px;
}

.score-slider {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: #ddd;
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}

.score-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    background: var(--gold);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(184, 134, 11, 0.4);
    transition: transform 0.15s ease;
}

.score-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.score-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    background: var(--gold);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(184, 134, 11, 0.4);
}

.score-value {
    min-width: 55px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--navy);
}

.score-value-large {
    font-size: 1.8rem;
    color: var(--gold);
}

.score-labels {
    display: flex;
    justify-content: space-between;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Highlighted Score Group */
.score-group-highlight {
    background: var(--white);
    padding: 24px;
    border-radius: 6px;
    margin: 32px 0;
    border: 2px solid var(--gold);
}

/* Price Options */
.price-group {
    background: var(--white);
    padding: 24px;
    border-radius: 6px;
    margin: 32px 0;
    border: 1px solid #ddd;
}

.price-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.price-option {
    flex: 1;
    min-width: 90px;
    cursor: pointer;
}

.price-option input[type="radio"] {
    display: none;
}

.price-option .price-label {
    display: block;
    padding: 12px 16px;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 4px;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--navy);
    transition: all 0.2s ease;
}

.price-option:hover .price-label {
    border-color: var(--gold);
    background: var(--white);
}

.price-option input[type="radio"]:checked + .price-label {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

/* Text Groups */
.text-group {
    margin-bottom: 28px;
}

.text-group label {
    display: block;
    margin-bottom: 10px;
}

.text-label {
    display: block;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 4px;
}

.text-description {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
}

.text-group textarea {
    width: 100%;
    min-height: 100px;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1rem;
    resize: vertical;
    transition: border-color 0.2s ease;
    background: var(--white);
}

.text-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.text-group textarea::placeholder {
    color: #aaa;
}

.char-count {
    text-align: right;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.75rem;
    color: #999;
    margin-top: 6px;
}

/* Form Submit */
.form-submit {
    text-align: center;
    margin-top: 40px;
}

.btn-submit-feedback {
    display: inline-block;
    padding: 16px 40px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.btn-submit-feedback:hover {
    background: #2a4a72;
}

.btn-submit-feedback:active {
    transform: scale(0.98);
}

.btn-submit-feedback:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-privacy {
    margin-top: 16px;
    font-size: 0.85rem;
    color: #999;
}

.form-message {
    margin-top: 20px;
    font-size: 0.95rem;
}

.form-message.success {
    color: #2e7d32;
}

.form-message.error {
    color: #c62828;
}

/* Success State */
.feedback-success {
    text-align: center;
    padding: 60px 40px;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 24px;
}

.feedback-success h2 {
    font-size: 2rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 12px;
}

.feedback-success p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.btn-back {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--white);
    background: var(--navy);
    padding: 14px 28px;
    border-radius: 3px;
    transition: background 0.2s ease;
}

.btn-back:hover {
    background: #2a4a72;
}

/* Responsive */
@media (max-width: 700px) {
    .form-wrapper {
        padding: 32px 24px;
        margin: 0 -24px;
        border-radius: 0;
    }

    .feedback-hero h1 {
        font-size: 1.9rem;
    }

    .score-slider-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .score-value {
        text-align: left;
    }

    .price-options {
        flex-direction: column;
    }

    .price-option {
        min-width: 100%;
    }
}
