/* FAQ Section */

/* Hero Section (Replicated from get-quote.css) */
.hero-faq {
  min-height: 27vh;
  background: linear-gradient(135deg, var(--leopard-tan), var(--bg));
  position: relative;
  display: flex;
  align-items: center;
  color: var(--earth-brown);
  overflow: hidden;
  padding: 1rem 0;
  text-align: center;
}

.hero-faq-content {
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0.5rem;
  animation: fadeInUp 1s ease-out forwards;
}

.hero-faq-content h1 {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 0.4rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.hero-faq-content p {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  color: var(--muted);
}


.faq-section {

  padding: 3rem 0;
  background: linear-gradient(135deg, var(--bg), var(--leopard-tan));
  position: relative;
  overflow: hidden;
}
.faq-list {
  margin-top: 2rem;
}
.faq-item {
  margin-bottom: 1.5rem;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.faq-item:hover {
  transform: translateY(-5px);
}
.faq-question {
  padding: 1.5rem;
  font-size: 1.25rem;
  color: var(--light-earth-brown);
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease, background 0.3s ease;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  transition: transform 0.3s ease;
}
.faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}
.faq-question:hover {
  color: var(--yellow-ochre);
  background: rgba(232, 196, 64, 0.1);
}
.faq-answer {
  padding: 0 1.5rem 1.5rem;
  display: none;
  color: var(--muted);
  font-size: 0.975rem;
  line-height: 1.6;
}
.faq-answer a.btn-link {
  color: var(--light-yellow-ochre);
  text-decoration: underline;
  transition: color 0.3s ease;
}
.faq-answer a.btn-link:hover {
  color: var(--light-giraffe-gold);
}