/* ============================================
   ALMAS Su Arıtma - Sıkça Sorulan Sorular (SSS)
   ============================================ */

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #F9FBFD;
  border: 1px solid #E3EEF4;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: #00B4D8;
  box-shadow: 0 10px 26px rgba(2, 62, 138, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 18px 20px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: #023E8A;
}

.faq-question:hover { color: #0077B6; }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #00B4D8;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform 0.25s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
}

.faq-answer p {
  margin: 0 0 18px;
  color: #5C7A93;
  font-size: 0.94rem;
  line-height: 1.65;
}

.faq-answer a { color: #0077B6; font-weight: 600; }

@media (max-width: 600px) {
  .faq-question { padding: 14px 16px; font-size: 0.93rem; }
  .faq-answer { padding: 0 16px; }
}
