/* FAQ Section — Acreways Living */

.aw-faq {
  background-color: #ffffff;
  box-sizing: border-box;
  width: 100%;
}

.aw-faq__inner {
  max-width: 1500px;
  margin-inline: auto;
  padding-inline: 1rem;
  box-sizing: border-box;
}

.aw-faq__header {
  text-align: center;
  margin-bottom: 3rem;
}

.aw-faq__label {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #daa520;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 0.75rem 0;
}

.aw-faq__heading {
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: #0f2b4c;
  margin: 0 0 1rem 0;
}

.aw-faq__subhead {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
  margin: 0 auto;
  max-width: 560px;
}

.aw-faq__columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  align-items: start;
}

.aw-faq__col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.aw-faq__item {
  border: 1px solid rgba(209, 213, 219, 0.6);
  border-radius: 0.75rem;
  overflow: hidden;
  background: #ffffff;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.aw-faq__item.open {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.aw-faq__question {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  flex: 1;
}

.aw-faq__question:hover {
  background: #f8f9fb;
}

.aw-faq__q-text {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0f2b4c;
  line-height: 1.4;
}

.aw-faq__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(201, 147, 58, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.3s;
}

.aw-faq__item.open .aw-faq__icon {
  background: #daa520;
  transform: rotate(45deg);
}

.aw-faq__icon svg {
  width: 14px;
  height: 14px;
  stroke: #daa520;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s;
}

.aw-faq__item.open .aw-faq__icon svg {
  stroke: #ffffff;
}

.aw-faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.aw-faq__item.open .aw-faq__answer {
  grid-template-rows: 1fr;
}

.aw-faq__answer-inner {
  overflow: hidden;
}

.aw-faq__answer p {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
  padding: 0 1.5rem 1.25rem;
  margin: 0;
}

@media (min-width: 768px) {
  .aw-faq__heading {
    font-size: 34px;
  }

  .aw-faq__columns {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}