/* ===================== FAQ STYLE 1 CSS ===================== */

/* Breadcrumb */
/* (breadcrumb styles moved to the global style.css 2026-07-14) */

/* Hero */
.faq1-hero {
  background: linear-gradient(135deg, #1a0a0e 0%, #2d1017 100%);
  padding: 70px 0;
  text-align: center;
}
.faq1-hero-inner {
  max-width: 680px;
  margin: 0 auto;
}
.faq1-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(176,23,51,0.2);
  color: #f5a0b0;
  border: 1.5px solid rgba(176,23,51,0.4);
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
}
.faq1-hero-title {
  font-family: 'Manrope', sans-serif;
  font-size: 46px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.15;
}
.faq1-hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin: 0 0 32px;
}
.faq1-search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 50px;
  padding: 12px 20px;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.faq1-search .fas { color: #999; font-size: 16px; }
.faq1-search input {
  border: none;
  outline: none;
  font-size: 15px;
  color: #333;
  flex: 1;
  background: transparent;
}
.faq1-search input::placeholder { color: #aaa; }

/* Content Layout */
.faq1-content {
  padding: 60px 0;
  background: #fafafa;
}
.faq1-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}

/* Sidebar */
.faq1-sidebar {
  position: sticky;
  top: 20px;
}
.faq1-sidebar-title {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.faq1-cat-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  border: 1.5px solid #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.faq1-cat-list li a {
  display: block;
  padding: 12px 16px;
  font-size: 14px;
  color: #555;
  text-decoration: none;
  border-bottom: 1px solid #f5f5f5;
  transition: all 0.2s;
}
.faq1-cat-list li:last-child a { border-bottom: none; }
.faq1-cat-list li a:hover { background: #fdf0f2; color: #b01733; }
.faq1-cat-list li.active a {
  background: #b01733;
  color: #fff;
  font-weight: 600;
}

/* Sidebar CTA */
.faq1-sidebar-cta {
  background: #fff;
  border: 1.5px solid #f0f0f0;
  border-radius: 12px;
  padding: 20px;
}
.faq1-cta-title {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}
.faq1-sidebar-cta p {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
  margin: 0 0 16px;
}
.faq1-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 8px;
  background: #b01733;
  color: #fff;
  transition: background 0.2s;
}
.faq1-cta-btn:hover { background: #8f1228; }
.faq1-cta-btn-outline {
  background: transparent;
  color: #b01733;
  border: 1.5px solid #b01733;
}
.faq1-cta-btn-outline:hover { background: #fdf0f2; }

/* Accordion */
.faq1-accordion-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.faq1-section-title {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #111;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #b01733;
}
.faq1-item {
  background: #fff;
  border: 1.5px solid #f0f0f0;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq1-item:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.07); }
.faq1-item.open { border-color: #b01733; }
.faq1-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #111;
  transition: background 0.2s;
}
.faq1-question:hover { background: #fafafa; }
.faq1-item.open .faq1-question { background: #fdf0f2; color: #b01733; }
.faq1-icon {
  font-size: 13px;
  color: #b01733;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq1-answer {
  display: none;
  padding: 0 20px 20px;
  font-size: 14px;
  color: #555;
  line-height: 1.75;
}
.faq1-answer p { margin: 0 0 12px; }
.faq1-answer p:last-child { margin-bottom: 0; }
.faq1-answer ol, .faq1-answer ul {
  padding-left: 20px;
  margin: 8px 0;
}
.faq1-answer li { margin-bottom: 6px; }
.faq1-item.open .faq1-answer { display: block; }

/* Related Resources */
.faq1-related {
  padding: 60px 0;
  background: #fff;
  border-top: 1px solid #f0f0f0;
}
.faq1-related-title {
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #111;
  margin: 0 0 32px;
}
.faq1-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.faq1-related-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: #fafafa;
  border: 1.5px solid #f0f0f0;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s;
}
.faq1-related-card:hover {
  border-color: #b01733;
  box-shadow: 0 4px 16px rgba(176,23,51,0.1);
  transform: translateY(-2px);
}
.faq1-related-icon {
  width: 44px;
  height: 44px;
  background: #fdf0f2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.faq1-related-icon .fas { font-size: 18px; color: #b01733; }
.faq1-related-body h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  margin: 0 0 6px;
}
.faq1-related-body p {
  font-size: 13px;
  color: #777;
  line-height: 1.5;
  margin: 0 0 10px;
}
.faq1-related-link {
  font-size: 13px;
  font-weight: 600;
  color: #b01733;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===================== MOBILE ===================== */
@media (max-width: 768px) {
  .faq1-hero { padding: 44px 0; }
  .faq1-hero-title { font-size: 30px; }
  .faq1-hero-desc { font-size: 14px; }

  .faq1-content { padding: 32px 0; }
  .faq1-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  /* Sidebar: unstick and show above accordion */
  .faq1-sidebar { position: static; }
  /* Hide sidebar CTA on mobile to keep it clean */
  .faq1-sidebar-cta { display: none; }

  .faq1-related-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .faq1-related-title { font-size: 22px; }
}
