/* Service Area Page Shortcode Styles
   Matches the site's dark/cream aesthetic: #232323 bg, #eaece6 text, Oswald font.
   All classes prefixed with .sa- to avoid collisions. */

.sa-heading {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  color: #eaece6;
  margin-bottom: 20px;
  line-height: 1.2;
}

.sa-intro {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  color: #eaece6;
  font-size: 18px;
  line-height: 1.6;
  max-width: 800px;
  margin-bottom: 30px;
}

.sa-cta {
  background: #2a2a2c;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  margin: 40px 0;
}

.sa-cta-text {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  color: #eaece6;
  font-size: 20px;
  margin-bottom: 15px;
}

.sa-cta-phone {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 28px;
  color: #eaece6;
  background: #232323;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.sa-cta-phone:hover {
  background: #3a3a3c;
  color: #eaece6;
}

@media only screen and (max-width: 767px) {
  .sa-cta {
    padding: 20px 15px;
  }
  .sa-cta-phone {
    font-size: 22px;
    padding: 10px 20px;
  }
}

/* FAQ accordion (PR #8 — expert Q&A system) */
.sa-faq {
  margin: 50px 0;
  max-width: 900px;
}

.sa-faq-heading {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  color: #eaece6;
  font-size: 28px;
  margin-bottom: 25px;
}

.sa-faq-item {
  background: #2a2a2c;
  border-radius: 4px;
  margin-bottom: 8px;
  overflow: hidden;
}

.sa-faq-question {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #eaece6;
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 40px;
}

.sa-faq-question::-webkit-details-marker {
  display: none;
}

.sa-faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: #eaece6;
  transition: transform 0.2s ease;
}

.sa-faq-item[open] .sa-faq-question::after {
  content: "−";
}

.sa-faq-answer {
  padding: 0 20px 16px 20px;
}

.sa-faq-answer p {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #eaece6;
  line-height: 1.6;
  margin: 0;
  opacity: 0.85;
}

@media only screen and (max-width: 767px) {
  .sa-faq-question {
    font-size: 16px;
    padding: 14px 16px;
    padding-right: 36px;
  }
  .sa-faq-answer {
    padding: 0 16px 14px 16px;
  }
}
