/***************************************
---استایل های صفحه سئوالات متداول---
 *************************************/
.faq-item {
  transition: all 0.3s ease;
}

.faq-item.active {
  background-color: white;
  box-shadow: 0 15px 30px -10px rgba(45, 62, 94, 0.08);
  border-color: #d4a373;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding-top: 1rem;
  padding-bottom: 1.5rem;
}

.faq-number {
  font-weight: 900;
  opacity: 0.1;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  min-width: 3rem;
}

.faq-item.active .faq-number {
  opacity: 1;
  color: #d4a373;
  transform: scale(1.1);
}

.search-glow:focus-within {
  box-shadow: 0 0 20px rgba(212, 163, 115, 0.2);
}
