/* Feedback Form Page Specific Styles - Premium Redesign */

:root {
    --feed-primary: #8b5cf6; /* Violet */
    --feed-secondary: #f43f5e; /* Rose */
    --feed-bg: #fdf2f8;
}

.section-padding {
    padding: 50px 0;
}

/* Inner Banner */
.inner-banner {
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    position: relative;
    overflow: hidden;

    background-size: cover;
    background-position: center 12%;
    background-repeat: no-repeat;}

.inner-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.35), rgba(244, 63, 94, 0.8)), url('../images/contact_banner.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.banner-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

/* Feedback Layout */
.feedback-container-box {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

/* Form Styling */
.feedback-form-card {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.1);
    border: 1px solid #f3e8ff;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    font-size: 15px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    background: #f8fafc;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s;
    color: #334155;
}

.form-control:focus {
    border-color: var(--feed-primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
    outline: none;
}

textarea.form-control {
    height: 150px;
    resize: none;
}

.rating-box {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.rating-btn {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #f1f5f9;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.rating-btn:hover, .rating-btn.active {
    background: var(--feed-primary);
    color: #fff;
    transform: scale(1.1);
}

.submit-btn {
    background: linear-gradient(to right, var(--feed-primary), var(--feed-secondary));
    color: #fff;
    border: none;
    padding: 18px 40px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.2);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.3);
}

/* Sidebar Styling */
.feedback-sidebar {
    padding-top: 20px;
}

.feature-info {
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #f5f3ff;
    color: var(--feed-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

.support-banner {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: #fff;
    padding: 30px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.support-banner::after {
    content: '\f1d8';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-size: 80px;
    opacity: 0.1;
    transform: rotate(-15deg);
}

.support-banner h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.support-banner p {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .feedback-container-box { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .banner-title { font-size: 42px; }
    .feedback-form-card { padding: 30px; }
}
