/* ============================================
   FAQ PAGE - Pro Design System
   ============================================ */

.faq-section {
  padding-bottom: 80px;
}

.faq-accordion .accordion-item {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 16px !important;
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border-color: rgba(var(--primary-rgb, 99, 102, 241), 0.2);
}

.faq-accordion .accordion-button {
  background: #fff;
  padding: 24px 30px;
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  box-shadow: none !important;
  border: none;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: rgba(var(--primary-rgb, 99, 102, 241), 0.04);
}

.faq-accordion .accordion-button::after {
  background-size: 16px;
  transition: transform 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(0) saturate(100%) invert(43%) sepia(82%) saturate(4529%) hue-rotate(227deg) brightness(98%) contrast(93%); /* A generic primary color tint approximation, but relying on the default icon is fine or we can customize it */
}

.faq-accordion .accordion-body {
  padding: 0 30px 24px 30px;
  font-size: 15px;
  color: #64748b;
  line-height: 1.7;
  background: rgba(var(--primary-rgb, 99, 102, 241), 0.04);
  border-top: 1px solid transparent;
}

/* Ensure no inner borders from bootstrap */
.faq-accordion .accordion-collapse {
  border: none;
}
