/* support.css - Get Support page */

/* ============================================
   HERO
   ============================================ */
.support-hero {
  padding: 10rem 2rem 5rem;
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.support-hero-content {
  max-width: 680px;
  margin: 0 auto;
}

.support-title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.25px;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #fff;
}

.support-subtitle {
  font-size: 1.1rem;
  color: #999;
  line-height: 1.75;
}

/* ============================================
   SUPPORT CARDS SECTION
   ============================================ */
.support-section {
  padding: 5rem 2rem;
}

.support-container {
  max-width: 1200px;
  margin: 0 auto;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Card — matches legal hub .legal-card pattern exactly */
.support-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 2rem;
  text-decoration: none;
  transition: background 0.3s ease,
              border-color 0.3s ease,
              box-shadow 0.3s ease,
              transform 0.3s ease;
}

.support-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* Icon box */
.support-icon {
  width: 52px;
  height: 52px;
  background: rgba(180, 22, 22, 0.08);
  border: 1px solid rgba(180, 22, 22, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #b41616;
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.support-icon svg {
  width: 22px;
  height: 22px;
}

.support-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.support-card:hover .support-icon {
  background: rgba(180, 22, 22, 0.12);
  border-color: rgba(180, 22, 22, 0.25);
}

.discord-card .support-icon {
  background: rgba(88, 101, 242, 0.08);
  border-color: rgba(88, 101, 242, 0.15);
  color: #5865f2;
}

.discord-card:hover .support-icon {
  background: rgba(88, 101, 242, 0.12);
  border-color: rgba(88, 101, 242, 0.25);
}

/* appeals-card uses the default red — no override needed */

.addbot-card .support-icon {
  background: transparent;
  border-color: transparent;
  width: 44px;
  height: 44px;
}

.addbot-card .support-icon img {
  width: 44px;
  height: 44px;
}

.addbot-card:hover .support-icon {
  background: transparent;
  border-color: transparent;
}

.docs-card .support-icon {
  background: rgba(254, 231, 92, 0.08);
  border-color: rgba(254, 231, 92, 0.15);
  color: #fee75c;
}

.docs-card:hover .support-icon {
  background: rgba(254, 231, 92, 0.12);
  border-color: rgba(254, 231, 92, 0.25);
}

.bug-card .support-icon {
  background: rgba(237, 66, 69, 0.08);
  border-color: rgba(237, 66, 69, 0.15);
  color: #ed4245;
}

.bug-card:hover .support-icon {
  background: rgba(237, 66, 69, 0.12);
  border-color: rgba(237, 66, 69, 0.25);
}

.status-card .support-icon {
  background: rgba(32, 201, 151, 0.08);
  border-color: rgba(32, 201, 151, 0.15);
  color: #20c997;
}

.status-card:hover .support-icon {
  background: rgba(32, 201, 151, 0.12);
  border-color: rgba(32, 201, 151, 0.25);
}

.support-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.support-card-description {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #999;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

/* Link row — matches .legal-card-link */
.support-card-link {
  font-size: 0.82rem;
  color: #b41616;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.2px;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  transition: gap 0.3s ease;
}

.support-card:hover .support-card-link {
  gap: 0.65rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: 5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3rem;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1.75rem;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
}

.faq-question {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.625rem;
  line-height: 1.4;
}

.faq-answer {
  font-size: 0.925rem;
  color: #999;
  line-height: 1.7;
}

/* ============================================
   CONTACT CTA
   Reuses the same pattern as the homepage CTA.
   ============================================ */
.contact-cta {
  padding: 5rem 2rem 6rem;
}

.contact-cta .cta-box {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
}

.contact-cta .cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(180, 22, 22, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.contact-cta .cta-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.contact-cta .cta-description {
  font-size: 1.05rem;
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

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

@media (max-width: 768px) {
  .support-hero {
    padding: 7rem 1.5rem 3.5rem;
  }

  .support-title {
    font-size: 2.1rem;
  }

  .support-subtitle {
    font-size: 1rem;
  }

  .support-section {
    padding: 3.5rem 1.5rem;
  }

  .support-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .faq-section {
    padding: 3.5rem 1.5rem;
  }

  .section-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-cta {
    padding: 3.5rem 1.5rem 4rem;
  }

  .contact-cta .cta-box {
    padding: 2.5rem 1.5rem;
  }

  .contact-cta .cta-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .support-title {
    font-size: 1.85rem;
  }
}
