
/* Feedback Page Styles */
.feedback-page {
    padding-top: 150px;
    background-color: #fff;
  }
  
  .feedback-content {
    margin-bottom: 60px;
  }
  
  /* Feedback Introduction Section */
  .feedback-intro {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    align-items: center;
  }
  
  .feedback-image {
    flex: 1;
  }
  
  .feedback-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
  }
  
  .feedback-text {
    flex: 1;
  }
  
  .feedback-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
  }
  
  .feedback-text p {
    margin-bottom: 20px;
    line-height: 1.8;
  }
  
  .feedback-stats {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
  }
  
  .stat-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: var(--transition);
    flex: 1;
  }
  
  .stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
  }
  
  .stat-item i {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 15px;
  }
  
  .stat-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--dark-color);
  }
  
  /* Feedback Options */
  .feedback-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .option-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
  }
  
  .option-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
  }
  
  .option-card.active {
    border-color: var(--primary-color);
    background-color: rgba(0, 102, 153, 0.05);
  }
  
  .option-card i {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 15px;
  }
  
  .option-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
  }
  
  .option-card p {
    font-size: 0.9rem;
    color: var(--text-color);
  }
  
  /* Feedback Form */
  .feedback-form-wrapper {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--box-shadow);
  }
  
  .feedback-form h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-color);
  }
  
  .feedback-form p {
    margin-bottom: 25px;
    color: var(--text-color);
  }
  
  .rating-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .rating {
    display: flex;
    gap: 5px;
  }
  
  .rating i {
    color: #ffc107;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .rating i:hover {
    transform: scale(1.2);
  }
  
  .rating-text {
    font-size: 0.9rem;
    color: var(--text-color);
  }
  
  .checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  
  .checkbox-wrapper input[type="checkbox"] {
    margin-top: 5px;
    width: 20px;
  }
  
  .checkbox-wrapper label {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .checkbox-wrapper a {
    color: var(--primary-color);
    text-decoration: underline;
  }
  
  /* Testimonials Preview */
  .testimonials-preview {
    margin-bottom: 60px;
  }
  
  .testimonials-preview h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--dark-color);
    text-align: center;
  }
  
  .testimonials-slider {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    overflow-x: auto;
    padding: 10px 5px;
    -ms-overflow-style: none;  /* Hide scrollbar for IE and Edge */
    scrollbar-width: none;  /* Hide scrollbar for Firefox */
  }
  
  .testimonials-slider::-webkit-scrollbar {
    display: none;  /* Hide scrollbar for Chrome, Safari and Opera */
  }
  
  .testimonial {
    flex: 0 0 350px;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    transition: var(--transition);
  }
  
  .testimonial:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
  }
  
  .testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
  }
  
  .testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
  }
  
  .testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .testimonial-meta h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark-color);
  }
  
  .testimonial-rating {
    color: #ffc107;
  }
  
  .testimonial p {
    font-style: italic;
    line-height: 1.7;
  }
  
  /* FAQ Section */
  .feedback-faq {
    margin-bottom: 40px;
  }
  
  .feedback-faq h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--dark-color);
    text-align: center;
  }
  
  .faq-list {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .faq-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
  }
  
  .faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .faq-question:hover {
    background-color: rgba(0, 102, 153, 0.05);
  }
  
  .faq-question h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
  }
  
  .faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
  }
  
  .faq-item.active .faq-question {
    background-color: rgba(0, 102, 153, 0.05);
  }
  
  .faq-item.active .faq-question i {
    transform: rotate(180deg);
  }
  
  .faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
  }
  
  /* Success Modal Customization */
  .modal-body i {
    color: var(--secondary-color);
  }
  
  /* Responsive styles */
  @media (max-width: 992px) {
    .feedback-intro {
      flex-direction: column;
    }
    
    .feedback-options {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .feedback-page {
      padding-top: 120px;
    }
    
    .feedback-stats {
      flex-direction: column;
    }
    
    .feedback-options {
      grid-template-columns: 1fr;
    }
    
    .testimonial {
      flex: 0 0 300px;
    }
  }
  
  @media (max-width: 576px) {
    .feedback-form-wrapper {
      padding: 25px;
    }
    
    .testimonial {
      flex: 0 0 280px;
    }
  }