/* =========================
   FAQ PAGE (MATCH PRICES STYLE)
   ========================= */

/* Navbar: transparent at top, solid on scroll */
.page-faq .navbar {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.page-faq .navbar.solid {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 2px 6px rgba(0,0,0,0.10);
  backdrop-filter: blur(8px);
}

/* On white pages, keep nav text/logo dark */
.page-faq .nav-links a {
  color: #000;
}

.page-faq .logo {
  filter: brightness(0) invert(0);
}

/* Main layout */
.faq-main {
  max-width: 1050px;
  margin: 0 auto;
  padding: 140px 1.5rem 4rem;
}

/* Intro */
.faq-intro {
  max-width: 820px;
  margin: 0 auto 3rem;
  text-align: center;
}

.faq-intro h1 {
  font-family: "Permanent Marker", cursive;
  font-size: 2.8rem;
  margin-bottom: 0.85rem;
}

.faq-intro p {
  line-height: 1.85;
  color: #222;
}

/* List */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #f6f6f6;
  border-radius: 18px;
  padding: 1.1rem 1.2rem;
  overflow: hidden;
}

.faq-inline-btn {
  margin-top: 1rem;
}

/* Dark button */
.faq-btn.faq-btn-dark {
  background: #000;
  color: #fff;
  border: 2px solid #000;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.faq-btn.faq-btn-dark:hover {
  transform: translateY(-2px);
  background: #111;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}

/* Included box */
.included-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.included-box {
  background: #eaeaea;
  border-radius: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.included-link:hover .included-box {
  background: #e0e0e0;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

/* Summary */
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  outline: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.6rem;
  line-height: 1;
  opacity: 0.8;
}

.faq-item[open] summary::after {
  content: "–";
}

/* Answer */
.faq-answer {
  padding-top: 0.85rem;
}

.faq-answer p {
  margin: 0;
  line-height: 1.85;
  color: #222;
}

/* FAQ content links */
.faq-answer a.footer-link {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-answer a.footer-link:hover {
  text-decoration: underline;
}

/* Paragraph spacing */
.faq-answer p + p {
  margin-top: 0.9rem;
}

/* CTA */
.faq-cta {
  margin-top: 3.5rem;
  background: #000;
  color: #fff;
  border-radius: 22px;
  padding: 2.4rem 1.6rem;
  text-align: center;
}

.faq-cta h2 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.faq-cta p {
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 1.35rem;
}

.faq-cta-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.faq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 1.4rem;
  border-radius: 999px;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.faq-btn:hover:not(.faq-btn-dark) {
  transform: translateY(-2px);
  background: #fff;
  color: #000;
}

/* Lists */
.faq-answer ul {
  margin: 0.9rem 0 0 1rem;
  padding-left: 0;
}

.faq-answer li {
  margin-bottom: 0.3rem;
  line-height: 1.7;
  color: #222;
}

/* =========================
   EXPANDING SIDE PHOTO
   ========================= */

.faq-item.has-photo .faq-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.faq-item.has-photo .faq-side-photo {
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #ddd;
  max-width: 0;
  opacity: 0;
  transform: translateX(10px);
  transition: max-width 320ms ease, opacity 240ms ease, transform 320ms ease;
}

.faq-item.has-photo .faq-side-photo img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  display: block;
}

@media (min-width: 860px) {
  .faq-item.has-photo[open] .faq-body {
    grid-template-columns: 1fr 240px;
    align-items: stretch;
  }

  .faq-item.has-photo[open] .faq-side-photo {
    max-width: 240px;
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 859px) {
  .faq-item.has-photo[open] .faq-side-photo {
    max-width: 100%;
    opacity: 1;
    transform: translateX(0);
  }
}

/* =========================
   FOOTER
   ========================= */

.site-footer {
  width: 100%;
  background: #000;
  color: #fff;
  text-align: center;
  padding: 1.5rem 1rem;
  margin-top: 4rem;
}

.footer-legal {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.footer-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.footer-link:hover {
  text-decoration: underline;
}

/* keep FAQ body links black */
.faq-answer a.footer-link {
  color: #000;
  text-decoration: none;
}

.faq-answer a.footer-link:hover {
  text-decoration: underline;
}

/* =========================
   FOOTER PARTNERS
   ========================= */

.footer-partners {
  text-align: center;
  margin-bottom: 1.2rem;
}

.footer-partners-title {
  font-size: 0.85rem;
  letter-spacing: 1px;
  opacity: 0.7;
  margin: 0 0 0.75rem 0;
}

.footer-logos {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  column-gap: 3rem;
}

.footer-logos a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-logos a:nth-child(1) {
  justify-self: end;
}

.footer-logos a:nth-child(2) {
  justify-self: center;
}

.footer-logos a:nth-child(3) {
  justify-self: start;
}

.footer-logos img {
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-logos img[alt="SolarGuard"] {
  height: 72px;
}

.footer-logos img[alt="ION"] {
  height: 155px;
}

.footer-logos img[alt="ROC Bike Customs"] {
  height: 38px;
}

.footer-logos img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

@media (max-width: 700px) {
  .footer-logos {
    gap: 1.4rem;
  }

  .footer-logos img {
    height: 32px;
    max-width: 120px;
  }
}

@media (max-width: 950px) {
  .page-faq .menu-toggle span {
    background: #000 !important;
  }
}

@media (max-width: 600px) {
  .footer-legal {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .footer-legal .footer-break {
    display: block;
    height: 0;
  }

  .footer-legal .footer-sep {
    display: none;
  }
}

@media (min-width: 601px) {
  .footer-legal .footer-break {
    display: none;
  }

  .footer-legal .footer-sep {
    display: inline;
  }
}

.footer-link {
  white-space: nowrap;
}