.faq-section {
  padding: 100px 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.faq-sidebar {
  position: sticky;
  top: 110px;
}

.faq-sidebar h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  margin: 12px 0 20px;
  color: var(--accent);
}

.faq-sidebar p {
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 32px;
}

.faq-categories {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
}

.faq-cat {
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
}

.faq-cat.active,
.faq-cat:hover {
  background: var(--accent);
  color: white;
  border-color: white;
}

/* FAQ Items */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item.open {
  border-color: white;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  cursor: pointer;
  background: #fff;
  gap: 20px;
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--cream);
}
.faq-item.open .faq-question {
  background: var(--accent);
}

.faq-question__num {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.faq-item.open .faq-question__num {
  color: white;
}

.faq-question__text {
  font-weight: 600;
  font-size: 0.95rem;
  flex: 1;
  transition: color 0.2s;
}

.faq-item.open .faq-question__text {
  color: #fff;
}

.faq-question__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  color: var(--text-mid);
}

.faq-item.open .faq-question__icon {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer__inner {
  padding: 0 28px 24px;
  background: #fff;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* Contact CTA inside */
.faq-cta-card {
  background: var(--accent-dark);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  margin-top: 24px;
}

.faq-cta-card h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.faq-cta-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  margin-bottom: 24px;
}

@media (max-width: 1024px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-sidebar {
    position: static;
  }
}
