/* ==========================================
   CONTACT.CSS - Contact Page Styles
   Pure Teal Theme - No Blue/Indigo
   Fully Responsive Design
   ========================================== */

/* CSS Variables */
:root {
    --primary-teal: #0d9488;
    --dark-teal: #0f766e;
    --light-teal: #ccfbf1;
    --lighter-teal: #f0fdfa;
    --primary-gradient: linear-gradient(135deg, #0f766e 0%, #0d9488 50%, #14b8a6 100%);
    --green-color: #059669;
    --dark-green: #065f46;
    --light-green: #d1fae5;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

/* ==========================================
   PAGE BANNER
   ========================================== */
.page-banner {
    background: var(--primary-gradient);
    padding: 45px 0;
    text-align: center;
    position: relative;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(20, 184, 166, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(45, 212, 191, 0.2) 0%, transparent 40%);
    pointer-events: none;
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.page-banner h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.page-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.breadcrumb-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    font-size: 0.92em;
}

.breadcrumb-banner a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-banner a:hover {
    color: white;
}

.breadcrumb-banner span {
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================
   PAGE CONTENT
   ========================================== */
.page-content {
    padding: 50px 0;
    background: #f5f7f5;
}

/* ==========================================
   CONTACT GRID - TWO COLUMN LAYOUT
   ========================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ==========================================
   FORMS COLUMN
   ========================================== */
.forms-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ==========================================
   SEND US A MESSAGE - WHITE WITH TEAL ACCENTS
   ========================================== */
.form-section {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 35px;
    border: 2px solid #e2e8e0;
}

.section-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--light-teal);
}

.section-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.section-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-teal);
    margin-bottom: 5px;
}

.section-header p {
    color: #5f6b5f;
    font-size: 0.95rem;
    margin: 0;
}

/* ==========================================
   FORM STYLES
   ========================================== */
.contact-form,
.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #374137;
}

.form-group label .required {
    color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #d1d9d1;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: #1f291f;
    transition: var(--transition);
    background: #fafcfa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #8a9a8a;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%235f6b5f'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    padding-right: 45px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.input-hint {
    font-size: 0.82rem;
    color: #6b7b6b;
    font-style: italic;
}

/* ==========================================
   SUBMIT BUTTONS
   ========================================== */
.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 35px;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    align-self: flex-start;
}

.submit-btn .btn-icon {
    font-size: 1.2rem;
}

.submit-btn.primary-btn {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.submit-btn.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(13, 148, 136, 0.4);
}

.submit-btn.secondary-btn {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.submit-btn.secondary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(5, 150, 105, 0.4);
}

/* ==========================================
   SUCCESS & ERROR MESSAGES
   ========================================== */
.success-message,
.error-message {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 22px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.success-message {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 2px solid #34d399;
}

.success-message span {
    font-size: 1.5rem;
}

.success-message p {
    color: #065f46;
    font-weight: 600;
    margin: 0;
}

.error-message {
    background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
    border: 2px solid #f87171;
}

.error-message span {
    font-size: 1.5rem;
}

.error-message p {
    color: #991b1b;
    font-weight: 600;
    margin: 0;
}

/* ==========================================
   FEEDBACK SECTION - LIGHT TEAL/CYAN BACKGROUND
   ========================================== */
.feedback-section {
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
    border: 2px solid #5eead4;
}

.feedback-section .section-header {
    border-bottom: 3px solid #5eead4;
}

.feedback-section .section-header h3 {
    color: var(--dark-teal);
}

.feedback-section .section-header p {
    color: #0f766e;
}

.feedback-section .form-group label {
    color: #134e4a;
}

.feedback-section .form-group input,
.feedback-section .form-group textarea {
    background: #ffffff;
    border-color: #99f6e4;
}

.feedback-section .form-group input:focus,
.feedback-section .form-group textarea:focus {
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.15);
}

.feedback-section .form-group input::placeholder,
.feedback-section .form-group textarea::placeholder {
    color: #5eead4;
}

/* ==========================================
   INFO COLUMN
   ========================================== */
.info-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-section,
.quick-links-section,
.social-section {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 28px;
}

.faq-section h3,
.quick-links-section h3,
.social-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--light-teal);
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    padding: 18px;
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary-teal);
    transition: var(--transition);
}

.faq-item:hover {
    background: linear-gradient(135deg, #ccfbf1 0%, #99f6e4 100%);
    transform: translateX(5px);
}

.faq-item h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #134e4a;
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 0.9rem;
    color: #3d5a57;
    margin: 0;
    line-height: 1.6;
}

/* ==========================================
   QUICK LINKS
   ========================================== */
.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.quick-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 12px;
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
    border-radius: var(--radius-md);
    border: 2px solid #99f6e4;
    text-decoration: none;
    transition: var(--transition);
}

.quick-link-item:hover {
    background: linear-gradient(135deg, #ccfbf1 0%, #5eead4 100%);
    border-color: var(--primary-teal);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.quick-link-item .link-icon {
    font-size: 1.8rem;
}

.quick-link-item span:last-child {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #134e4a;
    text-align: center;
}

/* ==========================================
   SOCIAL SECTION
   ========================================== */
.social-section p {
    color: #5f6b5f;
    font-size: 0.95rem;
    margin-bottom: 18px;
}

.social-links-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: var(--transition);
}

.social-link-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.social-link-item.telegram {
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
    border: 2px solid #0088cc;
}

.social-link-item.whatsapp {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: 2px solid #25D366;
}

.social-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.social-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.social-info strong {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #1f2937;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.social-info small {
    color: #5f6b5f;
    font-size: 0.78rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.social-link-item .social-btn {
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.8rem;
    color: white;
    transition: var(--transition);
    flex-shrink: 0;
    white-space: nowrap;
}

.social-link-item.telegram .social-btn {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
}

.social-link-item.whatsapp .social-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.social-link-item:hover .social-btn {
    transform: scale(1.05);
}

/* ==========================================
   RESPONSIVE - TABLET (1024px)
   ========================================== */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    .form-section {
        padding: 30px;
    }
    
    .page-banner h2 {
        font-size: 1.9rem;
    }
    
    .section-header h3 {
        font-size: 1.25rem;
    }
    
    .section-icon {
        font-size: 2.2rem;
    }
    
    .faq-section,
    .quick-links-section,
    .social-section {
        padding: 24px;
    }
}

/* ==========================================
   RESPONSIVE - SMALL TABLET (850px)
   ========================================== */
@media (max-width: 850px) {
    .page-content {
        padding: 35px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 0 15px;
    }
    
    .page-banner {
        padding: 35px 0;
    }
    
    .page-banner h2 {
        font-size: 1.7rem;
    }
    
    .form-section {
        padding: 28px;
    }
    
    .section-header {
        margin-bottom: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .quick-links-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .quick-link-item {
        padding: 15px 10px;
    }
    
    .quick-link-item .link-icon {
        font-size: 1.5rem;
    }
    
    .quick-link-item span:last-child {
        font-size: 0.8rem;
    }
    
    /* Social Links */
    .social-link-item {
        padding: 14px 16px;
        gap: 12px;
    }
    
    .social-icon {
        font-size: 1.4rem;
    }
    
    .social-info strong {
        font-size: 0.88rem;
    }
    
    .social-info small {
        font-size: 0.72rem;
    }
    
    .social-link-item .social-btn {
        padding: 7px 14px;
        font-size: 0.75rem;
    }
}

/* ==========================================
   RESPONSIVE - MOBILE (680px)
   ========================================== */
@media (max-width: 680px) {
    .page-content {
        padding: 25px 0;
    }
    
    .contact-grid {
        margin: 0 12px;
        gap: 20px;
    }
    
    .page-banner {
        padding: 30px 0;
    }
    
    .page-banner h2 {
        font-size: 1.5rem;
    }
    
    .page-banner p {
        font-size: 0.92rem;
    }
    
    .breadcrumb-banner {
        font-size: 0.85em;
        gap: 8px;
    }
    
    .form-section {
        padding: 22px 18px;
        border-radius: var(--radius-md);
    }
    
    .section-header {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 22px;
        padding-bottom: 15px;
    }
    
    .section-icon {
        font-size: 2rem;
    }
    
    .section-header h3 {
        font-size: 1.15rem;
    }
    
    .section-header p {
        font-size: 0.88rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .feedback-section .form-group input,
    .feedback-section .form-group textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 14px 28px;
        font-size: 0.92rem;
        width: 100%;
        justify-content: center;
    }
    
    .faq-section,
    .quick-links-section,
    .social-section {
        padding: 20px 18px;
        border-radius: var(--radius-md);
    }
    
    .faq-section h3,
    .quick-links-section h3,
    .social-section h3 {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }
    
    .faq-item {
        padding: 15px;
    }
    
    .faq-item h5 {
        font-size: 0.9rem;
    }
    
    .faq-item p {
        font-size: 0.85rem;
    }
    
    .quick-links-grid {
        gap: 8px;
    }
    
    .quick-link-item {
        padding: 14px 8px;
    }
    
    .quick-link-item .link-icon {
        font-size: 1.4rem;
    }
    
    .quick-link-item span:last-child {
        font-size: 0.75rem;
    }
    
    /* Social Links - KEEP ROW */
    .social-link-item {
        padding: 12px 14px;
        gap: 10px;
    }
    
    .social-icon {
        font-size: 1.3rem;
    }
    
    .social-info strong {
        font-size: 0.82rem;
    }
    
    .social-info small {
        font-size: 0.68rem;
    }
    
    .social-link-item .social-btn {
        padding: 6px 12px;
        font-size: 0.7rem;
    }
}

/* ==========================================
   RESPONSIVE - SMALL MOBILE (500px)
   ========================================== */
@media (max-width: 500px) {
    .contact-grid {
        margin: 0 10px;
    }
    
    .page-banner {
        padding: 25px 0;
    }
    
    .page-banner h2 {
        font-size: 1.35rem;
    }
    
    .page-banner p {
        font-size: 0.88rem;
    }
    
    .form-section {
        padding: 20px 15px;
    }
    
    .section-icon {
        font-size: 1.8rem;
    }
    
    .section-header h3 {
        font-size: 1.08rem;
    }
    
    .section-header p {
        font-size: 0.82rem;
    }
    
    .form-group label {
        font-size: 0.88rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 11px 14px;
        font-size: 0.92rem;
    }
    
    .feedback-section .form-group input,
    .feedback-section .form-group textarea {
        padding: 11px 14px;
        font-size: 0.92rem;
    }
    
    .submit-btn {
        padding: 13px 25px;
        font-size: 0.88rem;
    }
    
    .faq-section,
    .quick-links-section,
    .social-section {
        padding: 18px 15px;
    }
    
    .faq-section h3,
    .quick-links-section h3,
    .social-section h3 {
        font-size: 1.02rem;
    }
    
    /* Social Links - KEEP ROW */
    .social-link-item {
        padding: 10px 12px;
        gap: 8px;
    }
    
    .social-icon {
        font-size: 1.15rem;
    }
    
    .social-info strong {
        font-size: 0.75rem;
    }
    
    .social-info small {
        font-size: 0.62rem;
    }
    
    .social-link-item .social-btn {
        padding: 5px 10px;
        font-size: 0.65rem;
    }
}

/* ==========================================
   RESPONSIVE - VERY SMALL (400px)
   ========================================== */
@media (max-width: 400px) {
    .contact-grid {
        margin: 0 8px;
    }
    
    .page-banner h2 {
        font-size: 1.25rem;
    }
    
    .page-banner p {
        font-size: 0.85rem;
    }
    
    .form-section {
        padding: 18px 14px;
    }
    
    .section-icon {
        font-size: 1.6rem;
    }
    
    .section-header h3 {
        font-size: 1rem;
    }
    
    .section-header p {
        font-size: 0.78rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.88rem;
    }
    
    .feedback-section .form-group input,
    .feedback-section .form-group textarea {
        padding: 10px 12px;
        font-size: 0.88rem;
    }
    
    .faq-section,
    .quick-links-section,
    .social-section {
        padding: 15px 12px;
    }
    
    .faq-section h3,
    .quick-links-section h3,
    .social-section h3 {
        font-size: 0.95rem;
    }
    
    .faq-item {
        padding: 14px 12px;
    }
    
    .faq-item h5 {
        font-size: 0.85rem;
    }
    
    .faq-item p {
        font-size: 0.8rem;
    }
    
    .quick-links-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    
    .quick-link-item {
        padding: 12px 6px;
    }
    
    .quick-link-item .link-icon {
        font-size: 1.2rem;
    }
    
    .quick-link-item span:last-child {
        font-size: 0.68rem;
    }
    
    /* Social Links - KEEP ROW */
    .social-link-item {
        padding: 8px 10px;
        gap: 6px;
    }
    
    .social-icon {
        font-size: 1rem;
    }
    
    .social-info strong {
        font-size: 0.68rem;
    }
    
    .social-info small {
        font-size: 0.55rem;
    }
    
    .social-link-item .social-btn {
        padding: 4px 8px;
        font-size: 0.6rem;
    }
}

/* ==========================================
   RESPONSIVE - ULTRA SMALL (360px)
   ========================================== */
@media (max-width: 360px) {
    .form-section {
        padding: 15px 12px;
    }
    
    .page-banner h2 {
        font-size: 1.15rem;
    }
    
    .section-header h3 {
        font-size: 0.95rem;
    }
    
    .section-header p {
        font-size: 0.75rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 9px 11px;
        font-size: 0.85rem;
    }
    
    .feedback-section .form-group input,
    .feedback-section .form-group textarea {
        padding: 9px 11px;
        font-size: 0.85rem;
    }
    
    .submit-btn {
        padding: 11px 20px;
        font-size: 0.82rem;
    }
    
    .faq-section,
    .quick-links-section,
    .social-section {
        padding: 14px 10px;
    }
    
    .faq-section h3,
    .quick-links-section h3,
    .social-section h3 {
        font-size: 0.9rem;
    }
    
    .faq-item {
        padding: 12px 10px;
    }
    
    .faq-item h5 {
        font-size: 0.82rem;
    }
    
    .faq-item p {
        font-size: 0.78rem;
    }
    
    .quick-link-item {
        padding: 10px 5px;
    }
    
    .quick-link-item .link-icon {
        font-size: 1.1rem;
    }
    
    .quick-link-item span:last-child {
        font-size: 0.62rem;
    }
    
    /* Social Links - KEEP ROW */
    .social-link-item {
        padding: 7px 8px;
        gap: 5px;
    }
    
    .social-icon {
        font-size: 0.95rem;
    }
    
    .social-info strong {
        font-size: 0.62rem;
    }
    
    .social-info small {
        font-size: 0.52rem;
    }
    
    .social-link-item .social-btn {
        padding: 3px 6px;
        font-size: 0.55rem;
    }
}
/* ==========================================
   SECTION HEADERS - WHITE TEXT
   ========================================== */

/* 📝 Send Us a Message - WHITE Text */
.section-header h3 {
    color: #ffffff !important;
}

.section-header p {
    color: #ffffff !important;
}

/* 💬 Leave a Comment / Feedback - WHITE Text */
.feedback-section .section-header h3 {
    color: #ffffff !important;
}

.feedback-section .section-header p {
    color: #ffffff !important;
}
/* ==========================================
   FEEDBACK SECTION - GRAY BACKGROUND (Same as Send Us Message)
   ========================================== */

.feedback-section {
    background: #ffffff !important;
    border: 2px solid #e5e7eb !important;
}

.feedback-section .section-header {
    border-bottom: 2px solid #f1f5f9 !important;
}

.feedback-section .form-group input,
.feedback-section .form-group textarea {
    background: #f9fafb !important;
    border: 2px solid #e5e7eb !important;
}

.feedback-section .form-group input:focus,
.feedback-section .form-group textarea:focus {
    border-color: #0d9488 !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.1) !important;
}

.feedback-section .form-group input::placeholder,
.feedback-section .form-group textarea::placeholder {
    color: #9ca3af !important;
}

.feedback-section .form-group label {
    color: #374151 !important;
}