
/* Report Issue Page Styles */
.report-issue-page {
    padding-top: 150px;
    background-color: var(--light-color);
    background-image: linear-gradient(to bottom, #f9f9f9, #ffffff);
  }
  
  .report-content {
    margin-bottom: 60px;
  }
  
  /* Report Introduction Section */
  .report-intro {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    align-items: center;
  }
  
  .report-image {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    position: relative;
  }
  
  .report-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,153,0,0.1) 0%, rgba(0,102,153,0.1) 100%);
    pointer-events: none;
  }
  
  .report-image img {
    width: 100%;
    border-radius: 12px;
    transition: transform 0.5s ease;
  }
  
  .report-image:hover img {
    transform: scale(1.03);
  }
  
  .report-text {
    flex: 1;
  }
  
  .report-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
  }
  
  .report-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
  }
  
  .report-text p {
    margin-bottom: 20px;
    line-height: 1.8;
  }
  
  .report-stats {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
  }
  
  .stat-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: var(--transition);
    flex: 1;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-top: 3px solid transparent;
  }
  
  .stat-item:nth-child(1) {
    border-top-color: #4CAF50;
  }
  
  .stat-item:nth-child(2) {
    border-top-color: #2196F3;
  }
  
  .stat-item:nth-child(3) {
    border-top-color: #FFC107;
  }
  
  .stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
  }
  
  .stat-item i {
    font-size: 30px;
    color: var(--accent-color);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
  }
  
  .stat-item:hover i {
    transform: scale(1.2);
  }
  
  .stat-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary-color);
  }
  
  /* Issue Categories */
  .issue-categories {
    margin-bottom: 50px;
  }
  
  .issue-categories h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    text-align: center;
    position: relative;
    padding-bottom: 15px;
  }
  
  .issue-categories h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
  }
  
  .category-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .category-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
  }
  
  .category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,153,0,0.05) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .category-card:hover::before {
    opacity: 1;
  }
  
  .category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
  }
  
  .category-card.active {
    border-color: var(--accent-color);
    background-color: rgba(255, 153, 0, 0.05);
  }
  
  .category-card i {
    font-size: 30px;
    color: var(--accent-color);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
  }
  
  .category-card:hover i {
    transform: scale(1.2);
  }
  
  .category-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
  }
  
  .category-card p {
    font-size: 0.9rem;
    color: var(--text-color);
  }
  
  /* Report Form */
  .report-form-wrapper {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--box-shadow);
    margin-bottom: 50px;
    border-top: 4px solid var(--accent-color);
  }
  
  .report-form h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
  }
  
  .report-form p {
    margin-bottom: 25px;
    color: var(--text-color);
  }
  
  .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .form-row .form-group {
    flex: 1;
  }
  
  .priority-selector {
    display: flex;
    gap: 10px;
    margin-top: 5px;
  }
  
  .priority-option {
    flex: 1;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    background-color: #f5f5f5;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
  }
  
  .priority-option::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .priority-option:hover::after {
    transform: scaleX(1);
  }
  
  .priority-option:hover {
    background-color: #eeeeee;
  }
  
  .priority-option.active {
    background-color: var(--primary-color);
    color: #fff;
  }
  
  .priority-option.active::after {
    display: none;
  }
  
  .priority-option[data-priority="low"] {
    color: #28a745;
  }
  
  .priority-option[data-priority="medium"] {
    color: #ffc107;
  }
  
  .priority-option[data-priority="high"] {
    color: #fd7e14;
  }
  
  .priority-option[data-priority="critical"] {
    color: #dc3545;
  }
  
  .priority-option.active {
    color: #fff;
  }
  
  .file-upload {
    margin-top: 10px;
  }
  
  .file-upload input[type="file"] {
    display: none;
  }
  
  .file-upload-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f5f5f5;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .file-upload-btn:hover {
    background-color: #eeeeee;
  }
  
  .file-names {
    margin-top: 10px;
    font-size: 0.9rem;
  }
  
  .file-name {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #f5f5f5;
    padding: 8px 15px;
    border-radius: 5px;
    margin-bottom: 5px;
  }
  
  .file-name i {
    color: var(--accent-color);
  }
  
  .remove-file {
    margin-left: auto;
    color: #dc3545;
    cursor: pointer;
  }
  
  .checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  
  .checkbox-wrapper input[type="checkbox"] {
    margin-top: 5px;
  }
  
  .checkbox-wrapper label {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .checkbox-wrapper a {
    color: var(--accent-color);
    text-decoration: underline;
  }
  
  /* FAQ Section */
  .faq-section {
    margin-bottom: 50px;
  }
  
  .faq-section h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #333333;
    text-align: center;
  }
  
  .faq-list {
    max-width: 85%;
    margin: 0 auto;
  }
  
  .faq-item {
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  }
  
  .faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .faq-question:hover {
    background-color: rgba(97, 102, 107, 0.153);
  }
  
  .faq-question h4 {
    font-size: 1.1rem;
    color: #333333;
  }
  
  .faq-question i {
    color: #333333;
    transition: var(--transition);
  }
  
  .faq-item.active .faq-question {
    background-color: rgba(97, 102, 107, 0.153);
  }
  
  .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;
  }
  
  /* Support Channels */
  .support-channels {
    margin-bottom: 60px;
  }
  
  .support-channels h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
  }
  
  .channel-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
  }
  
  .channel-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    flex: 1;
    max-width: 300px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  }
  
  .channel-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
  }
  
  .channel-card i {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 20px;
  }
  
  .channel-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
  }
  
  .channel-card p {
    margin-bottom: 10px;
    color: var(--text-color);
  }
  
  .channel-card a {
    display: block;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 15px;
  }
  
  .channel-card .availability {
    font-size: 0.9rem;
    color: #777;
    margin-top: 15px;
  }
  
  .start-chat {
    margin: 10px 0;
  }
  
  /* Success Modal Customization */
  #reference-number {
    font-weight: 600;
    color: var(--accent-color);
  }
  
  /* Responsive styles */
  @media (max-width: 992px) {
    .report-intro {
      flex-direction: column;
    }
    
    .category-cards {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .channel-cards {
      flex-wrap: wrap;
    }
    
    .channel-card {
      flex: 0 0 calc(50% - 15px);
      max-width: none;
    }
  }
  
  @media (max-width: 768px) {
    .report-issue-page {
      padding-top: 120px;
    }
    
    .report-stats {
      flex-direction: column;
    }
    
    .category-cards {
      grid-template-columns: 1fr;
    }
    
    .form-row {
      flex-direction: column;
      gap: 0;
    }
    
    .channel-card {
      flex: 0 0 100%;
    }
  }
  
  @media (max-width: 576px) {
    .report-form-wrapper {
      padding: 25px;
    }
    
    .priority-selector {
      flex-wrap: wrap;
    }
    
    .priority-option {
      flex: 0 0 calc(50% - 5px);
    }
    .faq-section h3{
      font-size: 2rem;
    }
  }
  