/* ══════════════════════════════════════════════════════════════
   PAGE: Fort Lauderdale Location
   Base accordion styles in: components/faq-accordion.css
   ══════════════════════════════════════════════════════════════ */

/* ── Service link (yellow arrow inside cards) ── */
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--yellow);
  margin-top: 12px; transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }
.service-link svg { width: 16px; height: 16px; }

/* ── Coverage: Area Tags ── */
.area-tags {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 24px;
}
.area-tag {
  display: inline-block;
  padding: 8px 16px;
  font-size: 14px; font-weight: 500;
  color: var(--gray-800);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
}

/* ── FAQ overrides ── */
.faq-section { margin-bottom: 0; }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  padding: 24px 0;
  font-family: 'Inter', sans-serif;
  line-height: 1.4;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}
.faq-answer p { max-width: 640px; }

/* ── Responsive ── */
@media (max-width: 640px) {
  .faq-question { font-size: 16px; padding: 20px 0; }
}
