/* FAQ Section — CTL Tractor */

.aw-faq {
  background-color: #ffffff;
  padding: 5rem 5%;
  width: 100%;
}

.aw-faq__inner {
  max-width: 1400px;
  margin: 0 auto;
}

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

.aw-faq__label {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b8860b;
  margin: 0 0 0.5rem 0;
}

.aw-faq__heading {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1a1a1a;
  margin: 0 0 1rem 0;
}

.aw-faq__subhead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
  margin: 0 auto;
  max-width: 800px;
}

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

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

.aw-faq__item {
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.aw-faq__item.open {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-color: #ffc107;
}

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

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

.aw-faq__q-text {
  font-size: 1.1rem;
  font-weight: bold;
  color: #1a1a1a;
  line-height: 1.4;
}

.aw-faq__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.15);
  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: #ffc107;
  transform: rotate(45deg);
}

.aw-faq__icon svg {
  width: 16px;
  height: 16px;
  stroke: #b8860b;
  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: #1a1a1a;
}

.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-size: 1rem;
  line-height: 1.8;
  color: #666;
  padding: 0 1.5rem 1.5rem;
  margin: 0;
}

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

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