/* Feedback Page Styles - Clean & Professional */

.feedback-page {
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Clean Professional Hero Section */
.feedback-hero {
    position: relative;
    padding: 88px 24px 72px;
    text-align: center;
    border-bottom: 1px solid var(--color-slate-grey);
    background-image: linear-gradient(180deg, rgba(29, 29, 29, 0.92), rgba(10, 10, 10, 0.98)), url("/Images/Home-Background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Professional Title */
.feedback-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--color-platinum-grey);
    margin-bottom: 10px;
    letter-spacing: 0.3px;
    text-shadow: none;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.feedback-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 56px;
    height: 2px;
    background: var(--color-solar-yellow);
}

/* Professional Subtitle */
.feedback-subtitle {
    font-size: 17px;
    color: var(--color-cool-slate);
    line-height: 1.7;
    font-weight: 400;
    text-shadow: none;
    max-width: 720px;
    margin: 0 auto;
}

/* Decorative Element */
.feedback-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--color-solar-yellow) 50%, transparent 100%);
}

/* Feedback Form Section */
.feedback-form-section {
    padding: 80px 32px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.feedback-container {
    width: 100%;
    background: var(--color-charcoal-black);
    border: 1px solid var(--color-slate-grey);
    border-radius: 14px;
    padding: 56px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
}

    .feedback-container::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent 0%, var(--color-solar-yellow) 50%, transparent 100%);
    }

/* Form Groups */
.feedback-form .form-group {
    margin-bottom: 36px;
}

.feedback-form .form-label {
    margin-bottom: 10px;
    letter-spacing: 0.6px;
}

.feedback-form .form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    color: var(--color-platinum-grey);
    background: var(--color-deep-black);
    border: 1px solid var(--color-slate-grey);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: inherit;
}

    .feedback-form .form-control:hover {
        border-color: rgba(241, 196, 15, 0.4);
    }

    .feedback-form .form-control:focus {
        outline: none;
        border-color: var(--color-solar-yellow);
        background: var(--color-deep-black);
        box-shadow: 0 0 0 3px rgba(241, 196, 15, 0.1);
    }

    .feedback-form .form-control::placeholder {
        color: var(--color-matte-grey);
        opacity: 0.6;
    }

.feedback-textarea {
    resize: vertical;
    min-height: 160px;
    line-height: 1.6;
}

/* Select Dropdown */
.feedback-form select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23F1C40F' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* Validation Messages */
.validation-message {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #e74c3c;
    font-size: 13px;
    font-weight: 500;
    margin-top: 6px;
    padding: 8px 12px;
    background: rgba(231, 76, 60, 0.1);
    border-left: 3px solid #e74c3c;
    border-radius: 4px;
}

    .validation-message::before {
        content: "?";
        font-size: 14px;
    }

/* Form Actions */
.form-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--color-slate-grey);
}

    .form-actions .btn {
        padding: 14px 32px;
        font-size: 15px;
        font-weight: 600;
        border-radius: 8px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .form-actions .btn-primary {
        background: linear-gradient(135deg, var(--color-solar-yellow) 0%, var(--color-amber-yellow) 100%);
        color: var(--color-deep-black);
        box-shadow: 0 4px 12px rgba(241, 196, 15, 0.3);
    }

        .form-actions .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(241, 196, 15, 0.4);
        }

        .form-actions .btn-primary:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

    .form-actions .btn-secondary {
        background: transparent;
        color: var(--color-platinum-grey);
        border: 1px solid var(--color-slate-grey);
    }

        .form-actions .btn-secondary:hover {
            background: var(--color-gunmetal-grey);
            border-color: var(--color-solar-yellow);
            color: var(--color-solar-yellow);
        }

/* Success Message */
.feedback-success {
    text-align: center;
    padding: 60px 24px;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #ffffff;
    font-weight: bold;
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.3);
}

.success-icon i {
    font-size: 48px;
}

.feedback-success h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--color-solar-yellow);
    margin-bottom: 16px;
}

.feedback-success p {
    font-size: 16px;
    color: var(--color-platinum-grey);
    margin-bottom: 12px;
    line-height: 1.6;
}

.feedback-success .btn-primary {
    margin-top: 24px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--color-solar-yellow) 0%, var(--color-amber-yellow) 100%);
    color: var(--color-deep-black);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .feedback-success .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(241, 196, 15, 0.4);
    }

/* Contact Section (Footer Area) */
.feedback-contact-section {
    padding: 64px 24px 88px;
    width: 100%;
    margin: 0;
    border-top: 1px solid var(--color-slate-grey);
    background: linear-gradient(180deg, rgba(29, 29, 29, 0.4), rgba(10, 10, 10, 0.85));
    margin-top: auto;
}

.feedback-contact-container {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.feedback-contact-container .section-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-platinum-grey);
    margin-bottom: 28px;
    letter-spacing: 0.3px;
}

/* Clean grid */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 24px;
    align-items: stretch;
}

/* Professional cards */
.contact-card {
    background: linear-gradient(135deg, rgba(29, 29, 29, 0.95), rgba(22, 22, 22, 0.9));
    border: 1px solid rgba(113, 124, 126, 0.4);
    border-radius: 14px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-solar-yellow), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover {
    border-color: rgba(241, 196, 15, 0.6);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
    transform: translateY(-4px);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card .contact-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--color-solar-yellow), var(--color-amber-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--color-charcoal-black);
    box-shadow: 0 4px 12px rgba(241, 196, 15, 0.3);
    transition: transform 0.3s ease;
}

.contact-card .contact-icon i {
    font-size: 28px;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-platinum-grey);
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.contact-card p {
    font-size: 14px;
    color: var(--color-cool-slate);
    margin: 0 0 8px 0;
    line-height: 1.6;
}

.contact-card a {
    color: var(--color-solar-yellow);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.contact-card a:hover {
    opacity: 0.85;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-methods {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
}

@media (max-width: 900px) {
    .feedback-hero {
        padding: 72px 20px 56px;
    }

    .feedback-title {
        font-size: 30px;
    }

    .feedback-form-section {
        padding: 56px 20px;
    }

    .feedback-container {
        padding: 32px;
    }

    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .form-actions .btn {
        width: 100%;
    }

    .feedback-contact-section {
        padding: 52px 20px 72px;
    }
}

@media (max-width: 640px) {
    .contact-methods {
        grid-template-columns: 1fr;
    }

    .feedback-hero {
        padding: 64px 16px 48px;
    }

    .feedback-title {
        font-size: 26px;
    }

    .feedback-subtitle {
        font-size: 15px;
    }

    .feedback-form-section {
        padding: 40px 16px;
    }

    .feedback-container {
        padding: 24px;
        border-radius: 12px;
    }

    .feedback-form .form-group {
        margin-bottom: 24px;
    }

    .feedback-textarea {
        min-height: 140px;
    }

    .feedback-success h2 {
        font-size: 24px;
    }
}

/* Error Message Styling */
.feedback-error {
    display: flex;
    align-items: start;
    gap: 16px;
    padding: 20px;
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.5);
    border-radius: 12px;
    margin-bottom: 24px;
}

.error-icon {
    font-size: 32px;
    color: #ef4444;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-icon i {
    font-size: 32px;
}
