/* ============================================================
   FAQ PAGE STYLES — The Glide Inn
   ============================================================ */

/* Category filter tabs */
.faq-filter {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 2.5rem; justify-content: center;
}

.faq-filter__btn {
  padding: 0.45rem 1.1rem;
  border: 1.5px solid var(--border-light, rgba(0,0,0,0.12));
  border-radius: var(--radius-full, 999px);
  background: #fff; color: var(--text-main);
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  cursor: pointer; transition: all var(--transition-fast);
}
.faq-filter__btn:hover,
.faq-filter__btn.active {
  background: var(--midnight); color: #fff; border-color: var(--midnight);
}

/* FAQ Section groups */
.faq-group {
  margin-bottom: 2.5rem;
}

.faq-group__heading {
  display: flex; align-items: center; gap: 0.65rem;
  font-family: var(--font-heading); font-size: 1.25rem;
  color: var(--text-heading); margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--amber, #D98A0A);
}

.faq-group__icon { font-size: 1.5rem; }

/* Accordion items */
.faq-item {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md, 12px);
  background: #fff;
  margin-bottom: 0.5rem;
  overflow: hidden;
  transition: box-shadow var(--transition-fast);
}

.faq-item:hover { box-shadow: var(--shadow-sm); }

.faq-item__trigger {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.375rem;
  background: none; border: none; cursor: pointer;
  text-align: left; font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 600;
  color: var(--text-heading); line-height: 1.45;
  transition: background var(--transition-fast);
}

.faq-item__trigger:hover { background: var(--forest-bg, #F5F8F5); }
.faq-item.open .faq-item__trigger { background: var(--forest-bg, #F5F8F5); color: var(--sky-blue, #3A8EBF); }

.faq-item__chevron {
  width: 20px; height: 20px; flex-shrink: 0;
  border: 2px solid currentColor; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.28s ease;
  font-size: 0.7rem; color: var(--muted);
}
.faq-item.open .faq-item__chevron { transform: rotate(180deg); color: var(--sky-blue); }

.faq-item__body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}
.faq-item.open .faq-item__body { max-height: 400px; }

.faq-item__text {
  padding: 0 1.375rem 1.1rem;
  font-size: 0.9rem; line-height: 1.7; color: var(--text-main);
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 0.85rem;
}

/* Pricing highlight */
.faq-price-highlight {
  display: inline-block;
  background: rgba(217,138,10,0.1); color: #8a5c00;
  border-radius: var(--radius-sm, 6px);
  padding: 0.25rem 0.65rem; font-weight: 700;
  margin-top: 0.3rem; font-size: 0.88rem;
}

/* Quick-contact bar below FAQs */
.faq-contact {
  background: var(--midnight); color: #fff;
  border-radius: var(--radius-lg, 16px);
  padding: 2rem 2.5rem; margin-top: 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.faq-contact__text h3 {
  font-family: var(--font-heading); font-size: 1.2rem; margin: 0 0 0.3rem;
}
.faq-contact__text p { font-size: 0.875rem; opacity: 0.75; margin: 0; }
.faq-contact__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
