/* Urban Solar — FAQs page styles */

.faq-page {
  background: var(--us-bg-light);
  color: var(--us-text);
}

/* ---- 1. TOP HEADER BLOCK ---- */
.faq-header {
  background: var(--us-bg-light);
  text-align: center;
  padding: 80px 24px 40px;
}
.faq-header .eyebrow {
  margin-bottom: 16px;
}
.faq-header h1 {
  font-size: 40px;
  font-weight: 600;
  color: var(--us-navy);
  line-height: 1.2;
  margin: 0;
  max-width: 720px;
  margin-inline: auto;
}

/* ---- 2. FAQ GROUPS ---- */
.faq-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 40px;
}
.faq-group {
  margin-bottom: 36px;
}
.faq-group-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--us-navy);
  margin: 0 0 16px;
  text-align: left;
}

/* Accordion items (<details>) */
.faq-item {
  background: var(--us-white);
  border: 1px solid var(--us-divider);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow .15s ease, border-color .15s ease;
}
.faq-item[open] {
  border-color: var(--us-divider);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--us-navy);
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--us-text-muted);
  flex-shrink: 0;
  line-height: 1;
  transition: transform .2s ease, color .2s ease;
  width: 22px;
  text-align: center;
}
.faq-item[open] summary::after {
  content: "−";
  color: var(--us-orange);
}

.faq-answer {
  padding: 0 20px 18px;
  color: var(--us-text);
  font-size: 15px;
  line-height: 1.6;
}
.faq-answer p { margin: 0; }
.faq-answer p + p { margin-top: 10px; }

/* ---- 3. BOTTOM "STILL HAVE QUESTIONS" BLOCK ---- */
.faq-cta {
  background: var(--us-bg-light);
  text-align: center;
  padding: 32px 24px 80px;
}
.faq-cta .phone-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--us-orange);
  color: var(--us-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.faq-cta .phone-circle svg { width: 26px; height: 26px; fill: currentColor; }
.faq-cta .still {
  color: var(--us-orange);
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 12px;
}
.faq-cta p.copy {
  max-width: 480px;
  margin: 0 auto;
  color: var(--us-text);
  font-size: 15px;
  line-height: 1.6;
}
.faq-cta p.copy a { color: var(--us-orange); font-weight: 500; }
.faq-cta p.copy a:hover { text-decoration: underline; }

/* ---- Responsive ---- */
@media (max-width: 640px) {
  .faq-header { padding: 56px 20px 28px; }
  .faq-header h1 { font-size: 28px; }
  .faq-wrap { padding: 0 20px 28px; }
  .faq-group-title { font-size: 20px; }
  .faq-item summary { font-size: 15px; padding: 14px 16px; }
  .faq-answer { padding: 0 16px 16px; font-size: 14px; }
  .faq-cta { padding: 24px 20px 56px; }
}
