.faq-wrap { padding: 4rem 0 5rem; background: var(--body-bg); }

/* ─── CATEGORY LABEL ─── */
.faq-group { margin-bottom: 2.5rem; }

.faq-group-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.faq-group-label::after {
  content: '';
  display: block;
  height: 1px;
  width: 40px;
  background: var(--red);
  opacity: 0.35;
}

/* ─── ACCORDION ITEM ─── */
.faq-item {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  margin-bottom: 0.6rem;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item.is-open {
  border-color: var(--red);
  box-shadow: 0 4px 24px rgba(230,53,40,0.08);
}

/* ─── QUESTION BUTTON ─── */
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-num {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--body-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--muted);
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}

.faq-item.is-open .faq-num {
  background: var(--red);
  color: #fff;
}

.faq-question {
  flex: 1;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark-navy);
  line-height: 1.35;
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--body-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.25s;
  color: var(--muted);
}

.faq-item.is-open .faq-icon {
  background: var(--red);
  color: #fff;
  transform: rotate(45deg);
}

/* ─── ANSWER PANEL ─── */
.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-panel-inner {
  padding: 0 1.4rem 1.25rem 3.9rem;
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.75;
}

/* ─── SIDEBAR ─── */
.faq-sidebar-sticky { position: sticky; top: 80px; }

.faq-nav-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.faq-nav-head {
  padding: 0.65rem 1.2rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--body-bg);
}

.faq-nav-list { padding: 0.5rem 0; }

.faq-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.55rem 1.2rem;
  font-size: 0.82rem;
  color: var(--dark-navy);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.faq-nav-item:hover { background: var(--body-bg); color: var(--red); }

.faq-nav-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
  transition: background 0.15s;
}

.faq-nav-item:hover .faq-nav-dot { background: var(--red); }

.cta-card {
  background: var(--dark-navy);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
}

.cta-card h5 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.4rem;
}

.cta-card p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.1rem;
  line-height: 1.55;
}

.cta-card .btn-red { width: 100%; justify-content: center; margin-bottom: 0.6rem; }

.cta-card .cta-tel {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.15s;
}

.cta-card .cta-tel:hover { color: #fff; }

@media (max-width: 991px) {
  .faq-sidebar-sticky { position: static; margin-bottom: 2rem; }
  .faq-panel-inner { padding-left: 1.4rem; }
}
