/* ========================================= */
/* ZARİF VE PREMIUM SSS (FAQ) STİLLERİ       */
/* ========================================= */

.faq-section {
  background-color: #f8fafc;
  position: relative;
}

.accordion {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  background: #ffffff !important;
  border: 1px solid #eef2f6 !important;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border-radius: 12px !important;
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.accordion-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  border-color: #eab308 !important;
}

.accordion-button {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  background: #ffffff;
  padding: 22px 30px;
  box-shadow: none !important;
  border-radius: 12px !important;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-left: 4px solid transparent;
}

.accordion-button:hover {
  background: #fafafa;
  color: #1a1a1a;
}

.accordion-button:not(.collapsed) {
  color: #1a1a1a;
  background: #fffdf5; /* Açık ve göz yormayan soft sarı zemin */
  border-left: 4px solid #eab308;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  box-shadow: none !important;
  border-bottom: 1px solid #fef08a;
}

.accordion-button::after {
  background-image: none !important;
  content: '\f067'; /* FontAwesome Artı İkonu */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 16px;
  color: #eab308;
  transition: transform 0.4s ease, background-color 0.4s ease, color 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #fffaf0;
  border-radius: 50%;
}

.accordion-button:hover::after {
  background-color: #fef08a;
  color: #ca8a04;
}

.accordion-button:not(.collapsed)::after {
  content: '\f068'; /* FontAwesome Eksi İkonu */
  background-color: #eab308;
  color: #ffffff;
  transform: rotate(180deg);
}

.accordion-body {
  padding: 24px 30px 30px;
  font-family: 'Manrope', sans-serif;
  font-size: 15.5px;
  color: #555;
  line-height: 1.8;
  background: #ffffff;
  border: none;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

/* Mobilde hafif küçültme */
@media (max-width: 768px) {
  .accordion-button {
    font-size: 15px;
    padding: 18px 20px;
  }
  .accordion-body {
    padding: 20px;
    font-size: 14.5px;
  }
  .accordion-button::after {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
}