/* ============================================================
    Car Cure - FAQ Page Styles
    ============================================================ */

/* ── Page Hero Banner ── */
.page-hero {
  position: relative;
  padding: 7rem 2rem 4rem;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(circle 700px at 50% -450px, rgba(201,168,76,.55) 0%, transparent 100%),
    var(--black);
}

.page-hero__label {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
}
.page-hero__label::before,
.page-hero__label::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  opacity: .5;
}

.page-hero__title {
  font-family: 'Technor', system-ui, sans-serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--text);
  position: relative;
  z-index: 1;
}
.page-hero__title em {
  font-style: italic;
  color: var(--gold);
}

.page-hero__subtitle {
  font-family: 'Supreme', system-ui, sans-serif;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 1rem auto 0;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* ── Page Container ── */
.page-container {
  width: 92%;
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 0 6rem;
}

/* Legacy support */
.sitemap-page {
  background: var(--black);
  min-height: 60vh;
}

/* ── Typography ── */
.page-container h1 {
  font-family: 'Technor', system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 1.5rem;
}

.page-container h2 {
  font-family: 'Technor', system-ui, sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 2.5rem 0 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
}

.page-container p {
  font-family: 'Supreme', system-ui, sans-serif;
  color: var(--text-muted);
  font-size: .97rem;
  line-height: 1.9;
  margin-bottom: 1rem;
}

.page-container a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .25s;
}
.page-container a:hover { border-color: var(--gold); }

/* ── Intro Lead ── */
.page-lead {
  font-family: 'Supreme', system-ui, sans-serif;
  font-size: 1.12rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

/* ── FAQ Accordion ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  margin: 2rem 0;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .3s;
}
.faq-item:hover { border-color: var(--border-gold); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.4rem;
  cursor: pointer;
  font-family: 'Supreme', system-ui, sans-serif;
  font-size: .95rem;
  font-weight: 500;
  color: var(--text);
  user-select: none;
  transition: color .25s;
  gap: 1rem;
}
.faq-question:hover { color: var(--gold); }

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .3s var(--ease-out);
  font-weight: 300;
  line-height: 1;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease-out), padding .3s;
  padding: 0 1.4rem;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 1.4rem 1.2rem;
}
.faq-answer p {
  font-family: 'Supreme', system-ui, sans-serif;
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.8;
  margin: 0;
}

/* ── CTA Strip ── */
.page-cta {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 3rem;
}
.page-cta h3 {
  font-family: 'Technor', system-ui, sans-serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--text);
  margin-bottom: .6rem;
}
.page-cta p {
  font-family: 'Supreme', system-ui, sans-serif;
  color: var(--text-muted);
  font-size: .95rem;
  margin-bottom: 1.5rem;
}
.page-cta__btns {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.page-cta .btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1.1rem 2.6rem;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold) 0%, #d4b366 100%);
  color: var(--black);
  border: none;
  text-decoration: none;
  transition: all .3s var(--ease-out);
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(201,168,76,0.25);
}
.page-cta .btn-gold:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 48px rgba(201,168,76,0.4);
  background: linear-gradient(135deg, #d4b366 0%, var(--gold-light) 100%);
  color: var(--black);
  text-decoration: none;
}

.page-cta .btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1rem 2.4rem;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 500;
  background: rgba(6,6,8,0.8);
  backdrop-filter: blur(10px);
  color: var(--gold);
  border: 2px solid var(--border-gold);
  text-decoration: none;
  transition: all .3s var(--ease-out);
  cursor: pointer;
}
.page-cta .btn-outline-gold:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(201,168,76,0.2);
  color: var(--gold);
  text-decoration: none;
}

/* ── FAQ CTA Strip ── */
.faq-cta-strip {
  width: 100%;
  padding: 3rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.faq-cta-container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.faq-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.faq-cta-text {
  flex: 0;
}

.faq-cta-text h2 {
  font-family: 'Technor', system-ui, sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.faq-cta-text p {
  font-family: 'Supreme', system-ui, sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
}

.faq-cta-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-faq-primary {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.05rem 2.4rem;
  font-family: 'Supreme', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold) 0%, #d4b366 100%);
  color: var(--black);
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.38s cubic-bezier(0.34,1.3,0.64,1),
              box-shadow 0.38s ease;
  max-width: 100% !important;
  white-space: normal !important;
  box-shadow: 0 6px 24px rgba(201,168,76,0.25);
}

.btn-faq-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 48px rgba(201,168,76,0.4);
  color: var(--black);
  text-decoration: none;
}

.btn-faq-outline {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.05rem 2.4rem;
  font-family: 'Supreme', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 12px;
  background: rgba(6,6,8,0.8);
  backdrop-filter: blur(10px);
  color: var(--gold);
  border: 2px solid var(--border-gold);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.38s cubic-bezier(0.34,1.3,0.64,1),
              box-shadow 0.38s ease,
              background 0.35s ease,
              border-color 0.3s ease;
  max-width: 100% !important;
  white-space: normal !important;
}

.btn-faq-outline:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(201,168,76,0.2);
  color: var(--gold);
  text-decoration: none;
}

/* ── Responsive ── */
@media (max-width: 760px) {
  .page-cards   { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .faq-cta-strip {
    padding: 3rem 0;
  }

  .faq-cta-container {
    padding: 0 1.25rem;
  }

  .faq-cta-inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .faq-cta-text {
    width: 100%;
  }

  .faq-cta-text h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .faq-cta-text p {
    font-size: 0.9rem;
  }

  .faq-cta-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0.75rem;
    padding: 0 1rem;
    box-sizing: border-box;
  }

  .faq-cta-actions a {
    width: 100%;
    max-width: 280px !important;
    justify-content: center;
    padding: 0.9rem 1rem;
    font-size: 0.9rem;
  }
}