/* ===== HELP CENTER PAGE ===== */

/* Page wrapper - remove default padding */
body.page-template-help-center .site-main {
  padding: 0 !important;
  max-width: none !important;
}

/* ===== HERO SECTION ===== */
.help-hero {
  background: var(--gb-navy);
  color: var(--gb-white);
  padding: 4rem 2rem;
  text-align: center;
}

.help-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--gb-white);
}

.help-hero .hero-subheading {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ===== TOPIC NAVIGATION ===== */
.help-topics {
  background: var(--gb-white);
  padding: 2rem;
  border-bottom: 1px solid var(--gb-border);
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1rem;
}

.topic-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  color: var(--gb-navy);
  transition: all 0.2s ease;
}

.topic-item:hover {
  background: var(--gb-navy);
  color: var(--gb-white);
  transform: translateY(-2px);
}

.topic-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.topic-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}

/* ===== MAIN CONTENT AREA ===== */
.help-content {
  background: #f8f9fa;
  padding: 3rem 2rem;
}

.help-content-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

/* ===== FAQ COLUMN ===== */
.faq-column {
  min-width: 0;
}

.faq-section {
  background: var(--gb-white);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  scroll-margin-top: 2rem;
}

.faq-section:last-child {
  margin-bottom: 0;
}

.faq-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gb-navy);
  margin: 0 0 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gb-gold);
}

/* FAQ Content - Details/Summary Accordions */
.faq-content details {
  border-bottom: 1px solid var(--gb-border);
  padding: 0;
  overflow: hidden;
}

.faq-content details.faq-animating {
  overflow: hidden;
}

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

.faq-content summary {
  padding: 1rem 2rem 1rem 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--gb-navy);
  cursor: pointer;
  list-style: none;
  position: relative;
  line-height: 1.5;
}

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

.faq-content summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gb-gold);
  transition: transform 0.2s ease;
}

.faq-content details[open] summary::after {
  content: '−';
}

.faq-content summary:hover {
  color: var(--gb-gold);
}

.faq-content details > *:not(summary) {
  padding: 0 0 1.5rem 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gb-text);
}

.faq-content details p {
  margin: 0 0 1rem;
}

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

/* ===== SIDEBAR ===== */
.help-sidebar {
  position: sticky;
  top: 2rem;
}

.sidebar-block {
  background: var(--gb-white);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.sidebar-block:last-child {
  margin-bottom: 0;
}

.sidebar-block h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gb-navy);
  margin: 0 0 1rem;
}

.sidebar-block p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gb-text);
  margin: 0 0 0.75rem;
}

.sidebar-block p:last-child {
  margin-bottom: 0;
}

/* Contact Block */
.contact-block .contact-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-block .contact-phone a {
  color: var(--gb-navy);
  text-decoration: none;
}

.contact-block .contact-phone a:hover {
  color: var(--gb-gold);
}

.phone-icon {
  font-size: 1.25rem;
}

.contact-support {
  color: var(--gb-text);
}

.contact-hours {
  font-weight: 600;
  color: var(--gb-navy);
}

/* Sidebar CTA Button */
.sidebar-cta {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--gb-gold);
  color: var(--gb-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.sidebar-cta:hover {
  background: var(--gb-navy);
  color: var(--gb-white);
}

/* Social Links */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #f8f9fa;
  color: var(--gb-navy);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.social-link:hover {
  background: var(--gb-navy);
  color: var(--gb-white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .topic-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .help-content-inner {
    grid-template-columns: 1fr 280px;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .help-hero {
    padding: 3rem 1.5rem;
  }

  .help-hero h1 {
    font-size: 1.75rem;
  }

  .help-topics {
    padding: 1.5rem;
  }

  .topic-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .topic-item {
    padding: 1rem 0.5rem;
  }

  .topic-icon {
    font-size: 1.5rem;
  }

  .topic-label {
    font-size: 0.75rem;
  }

  .help-content {
    padding: 2rem 1.5rem;
  }

  .help-content-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .help-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .sidebar-block {
    margin-bottom: 0;
  }

  .faq-section {
    padding: 1.5rem;
  }

  .faq-section-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .topic-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .help-sidebar {
    grid-template-columns: 1fr;
  }

  .faq-content summary {
    font-size: 0.95rem;
    padding-right: 1.5rem;
  }
}
