/* FAQ — premium accordion (Laserwar) */

.faq-section {
  padding-bottom: 3.5rem;
}

.faq-section__intro {
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--lw-color-muted, #5c5c5c);
  max-width: 42rem;
  margin: 0 auto 2rem;
}

/* Reset Bootstrap accordion inside FAQ */

.faq-section .faq-accordion > .card.faq-item {
  background: #fff;
}

.faq-section .faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-section .faq-item {
  margin: 0;
  border: none;
  border-radius: var(--lw-radius-md, 12px);
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.faq-section .faq-item:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.faq-section .faq-item:has(.collapse.show) {
  box-shadow: 0 8px 28px rgba(255, 0, 0, 0.12), inset 4px 0 0 var(--lw-color-primary, #e10600);
}

.faq-section .faq-item__header {
  padding: 0;
  background: #fff;
  border: none;
}

.faq-section .faq-item__header h2 {
  margin: 0;
}

.faq-section .faq-item__trigger {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  text-align: left;
  font-weight: 900;
  font-size: 1.2rem;
  line-height: 1.35;
  color: #000;
  text-decoration: none;
  padding: 1.25rem 1.5rem;
  white-space: normal;
  border: none;
  background: transparent;
  box-shadow: none;
  transition: color 0.2s ease;
}

.faq-section .faq-item__trigger:hover,
.faq-section .faq-item__trigger:focus {
  color: var(--lw-color-primary, #e10600);
  text-decoration: none;
  box-shadow: none;
  outline: none;
}

.faq-section .faq-item__trigger:not(.collapsed) {
  color: var(--lw-color-primary, #e10600);
}

.faq-section .faq-item__question {
  flex: 1;
  min-width: 0;
}

/* +/- icon in circle */

.faq-section .faq-item__icon {
  flex-shrink: 0;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  margin-top: 0.1rem;
  border-radius: 50%;
  border: 2px solid #e5e5e5;
  background: #fff;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.faq-section .faq-item__icon::before,
.faq-section .faq-item__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: #000;
  border-radius: 1px;
  transition: background 0.2s ease, transform 0.25s ease;
}

.faq-section .faq-item__icon::before {
  width: 14px;
  height: 2px;
  margin: -1px 0 0 -7px;
}

.faq-section .faq-item__icon::after {
  width: 2px;
  height: 14px;
  margin: -7px 0 0 -1px;
}

.faq-section .faq-item__trigger:not(.collapsed) .faq-item__icon {
  border-color: var(--lw-color-primary, #e10600);
  background: var(--lw-color-primary, #e10600);
  transform: rotate(0deg);
}

.faq-section .faq-item__trigger:not(.collapsed) .faq-item__icon::before,
.faq-section .faq-item__trigger:not(.collapsed) .faq-item__icon::after {
  background: #fff;
}

.faq-section .faq-item__trigger:not(.collapsed) .faq-item__icon::after {
  transform: scaleY(0);
}

.faq-section .faq-item__trigger:hover .faq-item__icon,
.faq-section .faq-item__trigger:focus .faq-item__icon {
  border-color: var(--lw-color-primary, #e10600);
}

.faq-section .faq-item__trigger:hover .faq-item__icon::before,
.faq-section .faq-item__trigger:hover .faq-item__icon::after,
.faq-section .faq-item__trigger:focus .faq-item__icon::before,
.faq-section .faq-item__trigger:focus .faq-item__icon::after {
  background: var(--lw-color-primary, #e10600);
}

.faq-section .faq-item__trigger:not(.collapsed):hover .faq-item__icon::before,
.faq-section .faq-item__trigger:not(.collapsed):hover .faq-item__icon::after,
.faq-section .faq-item__trigger:not(.collapsed):focus .faq-item__icon::before,
.faq-section .faq-item__trigger:not(.collapsed):focus .faq-item__icon::after {
  background: #fff;
}

.faq-section .faq-item__panel {
  border: none;
}

.faq-section .faq-item__answer {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--lw-color-muted, #5c5c5c);
  background: #f8f8f8;
  padding: 1.35rem 1.5rem 1.5rem;
  border-top: 1px solid #eee;
}

.faq-section .faq-item__answer p:last-child {
  margin-bottom: 0;
}

.faq-section .faq-item__answer a {
  color: var(--lw-color-primary, #e10600);
  font-weight: 700;
}

.faq-section .faq-item__answer a:hover {
  color: #cc0000;
}

@media (max-width: 575.98px) {
  .faq-section__intro {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .faq-section .faq-accordion {
    gap: 12px;
  }

  .faq-section .faq-item {
    border-radius: 12px;
  }

  .faq-section .faq-item__trigger {
    font-size: 1.1rem;
    padding: 1rem 1.15rem;
  }

  .faq-section .faq-item__icon {
    width: 2.25rem;
    height: 2.25rem;
  }

  .faq-section .faq-item__answer {
    padding: 1.15rem 1.15rem 1.25rem;
    font-size: 1.1rem;
  }
}
