/* ── FAQ Page — Margarita Moto Rent ── */

/* Hero */
.faq-hero {
  background: linear-gradient(135deg, #14213d 0%, #0a9396 100%);
  color: #fff;
  padding: 72px 28px 56px;
  text-align: center;
}
.faq-hero-inner { max-width: 680px; margin: 0 auto; }
.faq-hero-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 12px;
}
.faq-hero-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.15;
}
.faq-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
  margin-bottom: 32px;
}

/* Search */
.faq-search-wrap {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}
.faq-search-icon {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  color: #9ca3af;
  pointer-events: none;
}
.faq-search-input {
  width: 100%;
  padding: 14px 18px 14px 44px;
  border-radius: 12px;
  border: none;
  font-size: .95rem;
  font-family: 'Inter', sans-serif;
  color: #111827;
  outline: none;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  transition: box-shadow .2s;
}
.faq-search-input:focus { box-shadow: 0 4px 24px rgba(0,0,0,.3); }

/* Body */
.faq-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 24px 64px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Section */
.faq-section {}
.faq-section-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f3f4f6;
}
.faq-section-icon { font-size: 1.3rem; }
.faq-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

/* Accordion */
.faq-accordion { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow .18s;
}
.faq-item:hover { box-shadow: 0 2px 12px rgba(0,0,0,.07); }
.faq-item.faq-hidden { display: none; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: .94rem;
  font-weight: 600;
  color: #111827;
  transition: color .15s;
}
.faq-question:hover { color: #0a9396; }
.faq-question[aria-expanded="true"] { color: #0a9396; }

.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: #9ca3af;
  transition: transform .25s ease;
}
.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  color: #0a9396;
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease;
}
.faq-answer:not([hidden]) { max-height: 600px; }

.faq-answer-inner {
  padding: 0 20px 18px;
  font-size: .9rem;
  color: #374151;
  line-height: 1.7;
  border-top: 1px solid #f3f4f6;
  padding-top: 14px;
}
.faq-answer-inner p { margin: 0 0 8px; }
.faq-answer-inner p:last-child { margin-bottom: 0; }

/* Empty */
.faq-empty {
  background: #f9fafb;
  border-radius: 10px;
  padding: 40px 24px;
  text-align: center;
  color: #6b7280;
}
.faq-empty-link {
  display: inline-block;
  margin-top: 12px;
  color: #0a9396;
  font-weight: 600;
  text-decoration: none;
}
.faq-empty-link:hover { text-decoration: underline; }

/* CTA */
.faq-cta {
  background: linear-gradient(135deg, #f0fdfc 0%, #e0f7fa 100%);
  border: 1px solid #b2dfdb;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
}
.faq-cta h3 { font-size: 1.2rem; font-weight: 800; color: #111827; margin: 0 0 8px; }
.faq-cta p  { color: #6b7280; margin: 0 0 22px; }
.faq-cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

.faq-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .9rem;
  transition: background .15s;
}
.faq-cta-wa:hover { background: #1ebe5c; }

.faq-cta-contact {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #0a9396;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .9rem;
  border: 1.5px solid #0a9396;
  transition: background .15s;
}
.faq-cta-contact:hover { background: #f0fdfc; }

/* Responsive */
@media (max-width: 600px) {
  .faq-hero { padding: 52px 20px 40px; }
  .faq-body { padding: 32px 16px 48px; gap: 28px; }
  .faq-question { padding: 14px 16px; font-size: .88rem; }
  .faq-answer-inner { padding: 0 16px 14px; padding-top: 12px; }
}
