/* ===== PAGE HERO ===== */
.faq-hero {
  background: url('../images/tour-2.jpg') center/cover no-repeat;
  height: 44vh; min-height: 280px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.62));
}
.page-hero-content {
  position: relative; text-align: center;
  color: white; padding: 0 24px;
}
.page-hero-eyebrow {
  text-transform: uppercase; letter-spacing: 0.15em;
  font-size: 0.78rem; opacity: 0.8; margin-bottom: 10px;
}
.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 12px;
}
.page-hero-content p { font-size: 1rem; opacity: 0.85; }

/* ===== FAQ SECTION ===== */
.faq-section {
  background: #f8f5f0;
  padding: 64px 24px 80px;
}
.faq-wrapper {
  max-width: 800px; margin: 0 auto;
}

/* ===== SEARCH ===== */
.faq-search-wrap { margin-bottom: 48px; }
.faq-search {
  width: 100%;
  font-family: 'Lato', sans-serif;
  font-size: 1rem; color: #222;
  border: 2px solid #ddd; border-radius: 50px;
  padding: 14px 24px;
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-search:focus {
  outline: none;
  border-color: #2C6E49;
  box-shadow: 0 0 0 3px rgba(44,110,73,0.1);
}
.faq-no-results {
  display: none; text-align: center;
  color: #888; font-size: 0.95rem;
  padding: 40px 0;
}
.faq-no-results a { color: #2C6E49; }

/* ===== CATEGORY ===== */
.faq-category { margin-bottom: 52px; }
.faq-category-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; color: #1a1a1a;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid #e2ddd8;
  display: flex; align-items: center; gap: 10px;
}

/* ===== ACCORDION ITEM ===== */
.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s;
}
.faq-item.open {
  box-shadow: 0 3px 16px rgba(0,0,0,0.1);
}

.faq-question {
  width: 100%; background: none; border: none;
  padding: 20px 24px;
  font-family: 'Lato', sans-serif;
  font-size: 0.97rem; font-weight: 700;
  color: #1a1a1a; text-align: left;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: #2C6E49; }
.faq-item.open .faq-question { color: #2C6E49; }

.faq-chevron {
  font-size: 1rem; color: #aaa;
  transition: transform 0.25s; flex-shrink: 0;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: #2C6E49;
}

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 0 24px 22px;
}

.faq-answer p {
  color: #555; font-size: 0.93rem;
  line-height: 1.85; margin-bottom: 12px;
}
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer a { color: #2C6E49; text-decoration: underline; }
.faq-answer a:hover { color: #1e4d33; }

.faq-answer ul {
  margin: 10px 0 14px 4px;
  display: flex; flex-direction: column; gap: 8px;
}
.faq-answer ul li {
  color: #555; font-size: 0.93rem;
  line-height: 1.6; list-style: none;
}

/* ===== BOTTOM CTA ===== */
.faq-cta {
  background: #2C6E49;
  padding: 72px 24px; text-align: center;
}
.faq-cta-inner { max-width: 560px; margin: 0 auto; }
.faq-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; color: white; margin-bottom: 14px;
}
.faq-cta p {
  color: rgba(255,255,255,0.82);
  font-size: 1rem; line-height: 1.7; margin-bottom: 32px;
}
.faq-cta-buttons {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
}
.btn-whatsapp-faq {
  display: inline-block;
  background: #25D366; color: white;
  padding: 14px 30px; border-radius: 6px;
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-whatsapp-faq:hover { background: #1da851; }

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  .faq-question { font-size: 0.92rem; padding: 16px 18px; }
  .faq-answer { padding: 0 18px; }
  .faq-item.open .faq-answer { padding: 0 18px 18px; }
  .faq-cta-buttons { flex-direction: column; align-items: center; }
}
