/* Custom FAQ Accordion Styles */
.custom-accordion-item {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
  }
  
  .custom-accordion-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ED2939 0%, #ff4757 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  
  .custom-accordion-item:hover::before {
    transform: scaleX(1);
  }
  
  .custom-accordion-item:hover {
    box-shadow: 0 8px 25px rgba(237, 41, 57, 0.15);
    border-color: #ED2939;
    transform: translateY(-2px);
  }
  
  .custom-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .custom-accordion-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(237, 41, 57, 0.05) 50%, transparent 100%);
    transition: left 0.5s ease;
  }
  
  .custom-accordion-header:hover::before {
    left: 100%;
  }
  
  .custom-accordion-header.collapsed {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  }
  
  .custom-accordion-header:not(.collapsed) {
    background: linear-gradient(135deg, #ED2939 0%, #ff4757 100%);
    color: white;
  }
  
  .custom-accordion-header h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #151515;
    transition: color 0.3s ease;
    flex: 1;
    padding-right: 1rem;
    line-height: 1.4;
  }
  
  .custom-accordion-header:not(.collapsed) h3 {
    color: #ED2939 !important;
  }
  
  .custom-accordion-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(237, 41, 57, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .custom-accordion-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ED2939, #ff4757);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
  }
  
  .custom-accordion-header:not(.collapsed) .custom-accordion-arrow::before {
    opacity: 1;
  }
  
  .custom-accordion-arrow svg {
    font-size: 14px;
    color: #ED2939;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
  }
  
  .custom-accordion-header:not(.collapsed) .custom-accordion-arrow svg {
    color: #fff;
    transform: rotate(180deg);
  }
  
  .custom-accordion-arrow:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(237, 41, 57, 0.3);
  }
  
  .custom-accordion-collapse {
    transition: all 0.3s ease;
  }
  
  .custom-accordion-body {
    padding: 1.5rem;
    background: linear-gradient(145deg, #fff 0%, #f8f9fa 100%);
    color: #5D5D5D;
    font-size: 14px;
    line-height: 1.6;
    border-top: 1px solid #e9ecef;
    position: relative;
  }
  
  .custom-accordion-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #ED2939 50%, transparent 100%);
    opacity: 0.3;
  }
  
  /* Pattern overlay for visual interest */
  .custom-accordion-item:nth-child(odd) .custom-accordion-header {
    background-image: radial-gradient(circle at 100% 50%, transparent 20%, rgba(237, 41, 57, 0.02) 21%, rgba(237, 41, 57, 0.02) 34%, transparent 35%, transparent);
  }
  
  .custom-accordion-item:nth-child(even) .custom-accordion-header {
    background-image: radial-gradient(circle at 0% 50%, transparent 20%, rgba(237, 41, 57, 0.02) 21%, rgba(237, 41, 57, 0.02) 34%, transparent 35%, transparent);
  }
  
  /* Mobile Responsive */
  @media (max-width: 768px) {
    .custom-accordion-header {
      padding: 1rem;
    }
    
    .custom-accordion-header h3 {
      font-size: 14px;
      padding-right: 0.5rem;
    }
    
    .custom-accordion-arrow {
      width: 35px;
      height: 35px;
    }
    
    .custom-accordion-arrow i {
      font-size: 12px;
    }
    
    .custom-accordion-body {
      padding: 1rem;
      font-size: 13px;
    }
    
    .custom-accordion-body::before {
      left: 1rem;
      right: 1rem;
    }
  }
  