/* ============================================================
   FLY EAGLE SPORT — Guide & FAQ Page Styles
   ============================================================ */

/* ── Guide Hero ───────────────────────────────────────────── */
.guide-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center 40%;
  padding: 130px 0 56px;
}

.guide-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.80) 0%, rgba(8,8,8,0.50) 50%, rgba(8,8,8,0.18) 100%);
}

.guide-hero .container {
  position: relative;
  z-index: 1;
}

.guide-hero__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sa);
  margin: 0 0 12px;
}

.guide-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  margin: 0 0 14px;
  line-height: 1.05;
  max-width: 680px;
}

.guide-hero__sub {
  font-size: 1.05rem;
  color: var(--white);
  max-width: 560px;
  line-height: 1.65;
  margin: 0 0 28px;
}

.guide-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.guide-hero__tag {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  padding: 5px 14px;
}

/* ── Guide Body Layout ────────────────────────────────────── */
.guide-body {
  padding: 80px 0 48px;
  background: var(--bg-primary);
}

.guide-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
}

@media (max-width: 860px) {
  .guide-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ── Guide Content ────────────────────────────────────────── */
.guide-content h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--white);
  margin: 56px 0 16px;
  line-height: 1.2;
}

.guide-content h2:first-child {
  margin-top: 0;
}

.guide-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin: 28px 0 10px;
}

.guide-content p {
  color: var(--silver);
  line-height: 1.8;
  font-size: 0.97rem;
  margin: 0 0 16px;
}

.guide-content p:last-child {
  margin-bottom: 0;
}

.guide-content strong {
  color: var(--white);
  font-weight: 600;
}

.guide-content a {
  color: var(--ox-hover);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(139,0,0,0.35);
  transition: border-color 0.2s, color 0.2s;
}

.guide-content a:hover {
  color: var(--white);
  border-color: var(--white);
}

/* ── Step Cards ───────────────────────────────────────────── */
.guide-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 32px 0;
  position: relative;
}

.guide-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 24px;
  position: relative;
}

.guide-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: -24px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(139,0,0,0.5), rgba(139,0,0,0.1));
}

.guide-step + .guide-step {
  padding-top: 24px;
}

.guide-step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(139,0,0,0.15);
  border: 2px solid rgba(139,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--ox-hover);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.guide-step__body {
  padding-bottom: 0;
}

.guide-step__body h3 {
  margin: 14px 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

.guide-step__body p {
  margin: 0;
  color: var(--silver);
  line-height: 1.75;
  font-size: 0.95rem;
}

/* ── Certificate Comparison Cards ────────────────────────── */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.cert-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  transition: border-color 0.2s;
}

.cert-card:hover {
  border-color: var(--ox);
}

.cert-card__badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ox-hover);
  background: rgba(139,0,0,0.12);
  border: 1px solid rgba(139,0,0,0.3);
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 10px;
}

.cert-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 8px;
}

.cert-card p {
  font-size: 0.82rem;
  color: var(--silver);
  line-height: 1.6;
  margin: 0 0 12px;
}

.cert-card__detail {
  font-size: 0.75rem;
  color: rgba(192,192,192,0.7);
  font-family: var(--font-heading);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cert-card__detail span::before {
  content: '→ ';
  color: var(--ox-hover);
}

/* ── Info Boxes ───────────────────────────────────────────── */
.guide-callout {
  background: rgba(139,0,0,0.07);
  border: 1px solid rgba(139,0,0,0.25);
  border-left: 4px solid var(--ox);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 24px 0;
}

.guide-callout h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ox-hover);
  font-family: var(--font-heading);
  margin: 0 0 8px;
}

.guide-callout p {
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.7;
  margin: 0;
}

/* ── Guide Sidebar ────────────────────────────────────────── */
.guide-sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.guide-toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.guide-toc__header {
  padding: 14px 18px;
  background: rgba(139,0,0,0.08);
  border-bottom: 1px solid var(--border);
}

.guide-toc__header h3 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ox-hover);
  font-family: var(--font-heading);
  margin: 0;
}

.guide-toc__list {
  list-style: none;
  margin: 0;
  padding: 12px 0;
}

.guide-toc__list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  font-size: 0.82rem;
  color: var(--silver);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  font-family: var(--font-heading);
  font-weight: 600;
}

.guide-toc__list li a:hover {
  color: var(--white);
  border-left-color: var(--ox);
  background: rgba(255,255,255,0.03);
}

.guide-toc__list li a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: rgba(139,0,0,0.15);
  border-radius: 4px;
  font-size: 0.65rem;
  color: var(--ox-hover);
  flex-shrink: 0;
  font-weight: 700;
}

.guide-cta-card {
  background: linear-gradient(135deg, #1a0808 0%, #120404 100%);
  border: 1px solid rgba(139,0,0,0.35);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
}

.guide-cta-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 10px;
  line-height: 1.2;
}

.guide-cta-card p {
  font-size: 0.83rem;
  color: var(--silver);
  line-height: 1.6;
  margin: 0 0 18px;
}

.guide-cta-card .btn {
  width: 100%;
  justify-content: center;
}

/* ── Arizona Advantages ───────────────────────────────────── */
.guide-az {
  padding: 72px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}

.guide-az h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  color: var(--white);
  margin: 10px 0 40px;
  text-align: center;
}

.az-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.az-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
}

.az-card__stat {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--ox-hover);
  line-height: 1;
  margin-bottom: 6px;
}

.az-card h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 6px;
}

.az-card p {
  font-size: 0.8rem;
  color: var(--silver);
  line-height: 1.6;
  margin: 0;
}

/* ── Guide CTA ────────────────────────────────────────────── */
.guide-bottom-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #0e0e0e 0%, #1c1010 100%);
  border-top: 1px solid var(--border);
  text-align: center;
}

.guide-bottom-cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  margin: 10px 0 14px;
}

.guide-bottom-cta p {
  color: var(--silver);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 500px;
  margin: 0 auto 28px;
}

.guide-bottom-cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FAQ Hero ─────────────────────────────────────────────── */
.faq-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center 45%;
  padding: 130px 0 60px;
}

.faq-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.72) 0%, rgba(8,8,8,0.50) 60%, rgba(8,8,8,0.22) 100%);
}

.faq-hero .container {
  position: relative;
  z-index: 1;
}

.faq-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  margin: 12px 0 16px;
  line-height: 1.05;
}

.faq-hero__sub {
  font-size: 1.05rem;
  color: var(--silver);
  max-width: 540px;
  line-height: 1.65;
}

/* ── FAQ Layout ───────────────────────────────────────────── */
.faq-section {
  padding: 72px 0 88px;
  background: var(--bg-primary);
}

.faq-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start;
}

@media (max-width: 780px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ── FAQ Category Nav ─────────────────────────────────────── */
.faq-nav {
  position: sticky;
  top: 88px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-nav__header {
  padding: 12px 16px;
  background: rgba(139,0,0,0.08);
  border-bottom: 1px solid var(--border);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ox-hover);
  font-family: var(--font-heading);
}

.faq-nav__list {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}

.faq-nav__list li a {
  display: block;
  padding: 9px 16px;
  font-size: 0.82rem;
  color: var(--silver);
  text-decoration: none;
  border-left: 3px solid transparent;
  font-family: var(--font-heading);
  font-weight: 600;
  transition: all 0.2s;
}

.faq-nav__list li a:hover {
  color: var(--white);
  border-left-color: var(--ox);
  background: rgba(255,255,255,0.03);
}

/* ── FAQ Content ──────────────────────────────────────────── */
.faq-content {
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.faq-category h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-heading);
  transition: color 0.2s;
  user-select: none;
}

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

.faq-item__q:hover {
  color: var(--ox-hover);
}

.faq-item__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(139,0,0,0.12);
  border: 1px solid rgba(139,0,0,0.3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ox-hover);
  transition: transform 0.25s, background 0.2s;
}

details[open] .faq-item__icon {
  transform: rotate(45deg);
  background: rgba(139,0,0,0.25);
}

.faq-item__a {
  padding: 0 0 18px;
  font-size: 0.92rem;
  color: var(--silver);
  line-height: 1.8;
}

.faq-item__a a {
  color: var(--ox-hover);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(139,0,0,0.35);
  transition: color 0.2s, border-color 0.2s;
}

.faq-item__a a:hover {
  color: var(--white);
  border-color: var(--white);
}

/* ── FAQ CTA ──────────────────────────────────────────────── */
.faq-still-have-q {
  padding: 56px 0 88px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  text-align: center;
}

.faq-still-have-q h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  color: var(--white);
  margin: 10px 0 14px;
}

.faq-still-have-q p {
  color: var(--silver);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto 28px;
}

.faq-still-have-q__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Shared Responsive ────────────────────────────────────── */
@media (max-width: 640px) {
  .cert-grid {
    grid-template-columns: 1fr;
  }
  .az-grid {
    grid-template-columns: 1fr 1fr;
  }
  .guide-bottom-cta__actions,
  .faq-still-have-q__actions {
    flex-direction: column;
    align-items: center;
  }
}
       