/* SUPPORT PAGE STYLES */

/* HERO SECTION */
.support-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  background: linear-gradient(180deg, rgba(180, 22, 22, 0.08) 0%, rgba(0, 0, 0, 0) 100%);
}

.support-hero-content {
  max-width: 800px;
}

.support-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.support-subtitle {
  font-size: 1.3rem;
  color: #aaa;
  line-height: 1.6;
}

/* SUPPORT SECTION */
.support-section {
  padding: 4rem 2rem;
}

.support-container {
  max-width: 1200px;
  margin: 0 auto;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.support-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.support-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: all 0.3s ease;
}

.support-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(180, 22, 22, 0.3);
  transform: translateY(-5px);
}

.support-card:hover::before {
  background: #b41616;
}

.support-icon {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.discord-card .support-icon {
  background: rgba(88, 101, 242, 0.1);
  color: #5865f2;
}

.appeals-card .support-icon {
  background: rgba(180, 22, 22, 0.1);
  color: #b41616;
}

.addbot-card .support-icon {
  background: rgba(87, 242, 135, 0.1);
  color: #57f287;
}

.docs-card .support-icon {
  background: rgba(254, 231, 92, 0.1);
  color: #fee75c;
}

.bug-card .support-icon {
  background: rgba(237, 66, 69, 0.1);
  color: #ed4245;
}

.status-card .support-icon {
  background: rgba(32, 201, 151, 0.1);
  color: #20c997;
}

.support-card:hover .support-icon {
  transform: scale(1.1) rotate(-5deg);
}

.support-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.support-card-description {
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.support-card-link {
  color: #b41616;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.support-card:hover .support-card-link {
  transform: translateX(5px);
  display: inline-block;
}

/* FAQ SECTION */
.faq-section {
  padding: 5rem 2rem;
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(180, 22, 22, 0.2);
}

.faq-question {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #fff;
}

.faq-answer {
  color: #aaa;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* CONTACT CTA */
.contact-cta {
  padding: 5rem 2rem;
}

.contact-cta .cta-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: rgba(180, 22, 22, 0.05);
  border: 1px solid rgba(180, 22, 22, 0.2);
  border-radius: 20px;
  padding: 3rem 2rem;
}

.contact-cta .cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.contact-cta .cta-description {
  font-size: 1.1rem;
  color: #aaa;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .support-hero {
    padding: 6rem 1.5rem 3rem;
    min-height: 40vh;
  }

  .support-title {
    font-size: 2.5rem;
  }

  .support-subtitle {
    font-size: 1.1rem;
  }

  .support-section {
    padding: 3rem 1.5rem;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .faq-section {
    padding: 3rem 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-cta {
    padding: 3rem 1.5rem;
  }

  .contact-cta .cta-box {
    padding: 2.5rem 1.5rem;
  }

  .contact-cta .cta-title {
    font-size: 2rem;
  }
}

/* WARNING MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}

.modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid rgba(180, 22, 22, 0.3);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 450px;
  width: 90%;
  text-align: center;
  animation: slideUp 0.3s ease;
  box-shadow: 0 20px 60px rgba(180, 22, 22, 0.3);
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-icon {
  width: 80px;
  height: 80px;
  background: rgba(180, 22, 22, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #ff6b6b;
}

.modal-content h3 {
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 1rem;
}

.modal-content p {
  color: #aaa;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.modal-buttons {
  display: flex;
  gap: 1rem;
}

.modal-btn {
  flex: 1;
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cancel-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.cancel-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.continue-btn {
  background: linear-gradient(135deg, #b41616 0%, #d11a1a 100%);
  color: #fff;
}

.continue-btn:hover {
  box-shadow: 0 8px 24px rgba(180, 22, 22, 0.4);
  transform: translateY(-2px);
}