/* ══════════════════════════════════════════════════
   FAQ Section — Two-column: form card + accordion
   ══════════════════════════════════════════════════ */

.bh-faq-section {
  background: #000;
  padding: clamp(60px, 8vw, 100px) 0;
}

.bh-faq-container {
  max-width: clamp(320px, 83.33vw, 1600px);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

/* ── Title ── */
.bh-faq-title {
  font-family: var(--font-family-primary, "Plus Jakarta Sans", sans-serif);
  font-size: clamp(1.5rem, 1.5rem + 1.5vw, 3rem);
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin: 0 0 clamp(40px, 5vw, 64px);
  line-height: 1.2;
}

/* ── Layout ── */
.bh-faq-layout {
  display: flex;
  justify-content: center;
  gap: 48px;
}

/* ══════════════════════════════════════════════════
   Accordion
   ══════════════════════════════════════════════════ */

.bh-faq-right {
  width: 100%;
  max-width: 900px;
}

.bh-faq-accordion-wrap {
  background: #f8f7f4;
  border-radius: 24px;
  overflow: hidden;
}

.bh-faq-accordion {
  max-height: 672px;
  overflow-y: auto;
  overflow-x: hidden;
  margin-right: 4px;
}

/* Custom scrollbar */
.bh-faq-accordion::-webkit-scrollbar {
  width: 4px;
}

.bh-faq-accordion::-webkit-scrollbar-thumb {
  background-color: #9f9f9f;
  border-radius: 8px;
}

.bh-faq-accordion::-webkit-scrollbar-track {
  background: transparent;
}

/* ── Accordion item ── */
.bh-faq-item {
  border-bottom: 1px solid #dfdedc;
  padding: 26px 18px 24px 48px;
}

.bh-faq-item:first-child {
  padding-top: 32px;
}

.bh-faq-item:last-child {
  border-bottom: none;
  padding-bottom: 32px;
}

.bh-faq-item-inner {
  display: flex;
  gap: 24px;
}

/* ── FAQ number ── */
.bh-faq-num {
  width: 50px;
  flex-shrink: 0;
  padding: 6px 0;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  white-space: nowrap;
}

.bh-faq-content-right {
  width: calc(100% - 74px);
}

/* ── Question header ── */
.bh-faq-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  cursor: pointer;
  gap: 24px;
}

.bh-faq-question {
  font-size: clamp(16px, 1.1vw, 20px);
  font-weight: 600;
  color: #111;
  line-height: 1.4;
  margin: 0;
}

/* ── Toggle icon ── */
.bh-faq-toggle {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #111;
  transition: transform 0.3s ease;
}

.bh-faq-item.is-open .bh-faq-toggle {
  transform: rotate(180deg);
}

/* ── Answer ── */
.bh-faq-answer {
  display: none;
  margin: 16px 80px 0 0;
}

.bh-faq-answer p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: #555;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */

@media (max-width: 1440px) {
  .bh-faq-item {
    padding: 22px 18px 20px 42px;
  }
}

@media (max-width: 1200px) {
  .bh-faq-item-inner {
    gap: 16px;
  }

  .bh-faq-answer {
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .bh-faq-item {
    padding: 18px 12px 18px 16px;
  }

  .bh-faq-num {
    width: 36px;
    font-size: 12px;
  }

  .bh-faq-item-inner {
    gap: 8px;
  }

  .bh-faq-header {
    gap: 8px;
  }

  .bh-faq-toggle {
    max-width: 22px;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .bh-faq-toggle {
    transition: none;
  }
}
