/* ATC Feedback Form - Custom Styles */

/* Page Header */
.page-header-section {
    position: relative;
    padding: 180px 0 100px 0;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(125deg, rgba(200,16,46,0.2) 0%, rgba(247,250,255,0.05) 35%, rgba(27,94,60,0.2) 70%, rgba(7,11,18,0.95) 100%);
}

.page-header-section .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?q=80&w=2000') center/cover;
    z-index: 1;
}

.page-header-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(7, 11, 18, 0.88) 0%, rgba(14, 22, 36, 0.88) 50%, rgba(27, 94, 60, 0.32) 100%);
    z-index: 2;
}

.page-header-section .container {
    position: relative;
    z-index: 3;
}

.page-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-header-content .page-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.page-header-content .page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

/* Feedback Section */
.feedback-page-section {
    background-color: var(--bg-primary);
    padding: 60px 20px;
    min-height: calc(100vh - 300px);
}

.feedback-container {
    max-width: 800px;
    margin: 0 auto;
}

.feedback-card {
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(200,16,46,0.25);
    padding: 50px;
    margin: 0;
    border: 1px solid var(--border-color);
}

.feedback-header-text {
    background: var(--hover-bg);
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid #C8102E;
    margin-bottom: 40px;
}

.feedback-header-text p {
    margin: 0 0 15px 0;
    line-height: 1.8;
    color: var(--text-primary);
}

.feedback-header-text p:last-child {
    margin-bottom: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.feedback-field {
    margin-bottom: 25px;
}

.feedback-field label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 1rem;
}

.feedback-field input[type="text"],
.feedback-field input[type="email"],
.feedback-field textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: var(--card-bg);
    color: var(--text-primary);
}

.feedback-field input:focus,
.feedback-field textarea:focus {
    outline: none;
    border-color: #C8102E;
    box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.15);
}

.feedback-field small {
    display: block;
    margin-top: 5px;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.feedback-field textarea {
    resize: vertical;
    min-height: 150px;
}

.rating-stars {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: flex-start;
    width: calc(5 * 1.8rem + 4 * 8px);
}

.rating-stars input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.rating-stars label {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

.rating-stars label:hover,
.rating-stars label:hover ~ label {
    color: #ffd166;
}

.rating-stars input:checked ~ label {
    color: #ffd166;
}

.rating-stars label:hover {
    transform: translateY(-1px);
}

.rating-scale {
    display: grid;
    grid-template-columns: repeat(5, 1.8rem);
    gap: 8px;
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    justify-content: flex-start;
}

.rating-scale span {
    text-align: center;
}

.rating-scale-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    width: calc(5 * 1.8rem + 4 * 8px);
}

.feedback-submit-area {
    margin-top: 35px;
    text-align: center;
}

.feedback-submit-btn {
    background: linear-gradient(135deg, #C8102E 0%, #E63946 100%);
    color: white;
    border: none;
    padding: 15px 60px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 12px rgba(200,16,46,0.35);
}

.feedback-submit-btn:hover {
    background: linear-gradient(135deg, #E63946 0%, #FF4D57 100%);
    transform: translateY(-2px);
    box-shadow: 0 0 18px rgba(200,16,46,0.45);
}

.feedback-message-box {
    margin-top: 25px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    display: none;
}

@media (max-width: 768px) {
    .page-header-section {
        padding: 140px 20px 80px 20px;
    }
    
    .page-header-content .page-title {
        font-size: 2rem;
    }
    
    .page-header-content .page-subtitle {
        font-size: 1rem;
    }
    
    .feedback-card {
        padding: 30px 20px;
    }
    
    .feedback-header-text {
        padding: 20px;
    }
    
    .feedback-submit-btn {
        width: 100%;
        padding: 15px 20px;
    }
}
