/* =============================================
   HERYERPARKOUR — FAQ Section
   Beyaz kartlı accordion, turuncu ikon
   ============================================= */

.faq-section {
  background: var(--bg-primary);
  padding: 80px 0 200px;
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  margin-top: -1px;
}

/* Transition from schedule (bej-alt to bej) */
.faq-section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Bej-to-dark bottom transition */
.faq-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 15, 15, 0.15) 30%, rgba(15, 15, 15, 0.5) 60%, var(--bg-dark) 100%);
  pointer-events: none;
}

.faq-section > .container { position: relative; z-index: 1; }
.faq-section .sec-label { color: var(--accent); }

.faq-header { margin-bottom: 48px; }

/* Title overrides */
.faq-title .letter {
  color: var(--text-primary) !important;
  -webkit-text-fill-color: var(--text-primary) !important;
}

.faq-title .letter.accent-letter {
  color: var(--accent) !important;
  -webkit-text-fill-color: var(--accent) !important;
}

.faq-title .letter.accent-letter.landed:hover {
  color: var(--bg-dark) !important;
  -webkit-text-fill-color: var(--bg-dark) !important;
}

.faq-title .letter.stroke-letter {
  -webkit-text-stroke: 2px var(--text-primary) !important;
  -webkit-text-fill-color: transparent !important;
}

/* FAQ List */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  margin-bottom: 8px;
  border: 2px solid transparent;
  transition: all var(--duration-normal);
  opacity: 0;
  transform: translateY(20px);
}

.faq-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-item:hover { border-color: var(--accent); }

/* Question */
.faq-q {
  padding: 22px 28px;
  font-family: var(--ff-heading);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-primary);
  user-select: none;
}

/* Icon */
.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: var(--accent);
  transition: all var(--duration-normal);
  flex-shrink: 0;
}

/* Answer */
.faq-a {
  padding: 0 28px 22px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  display: none;
}

/* Open state */
.faq-item.open .faq-a { display: block; }

.faq-item.open .faq-icon {
  background: var(--accent);
  color: white;
  transform: rotate(45deg);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .faq-section { padding: 80px 0 100px; }
  .faq-q { font-size: 16px; }
}
