/* style/support.css */

/* General page styles */
.page-support {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #e0e0e0; /* Light grey for general text on dark background */
  background-color: #1A2E44; /* Deep space blue primary background */
}

.page-support__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-support__section-title {
  color: #FFD700; /* Gold for main titles */
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 20px;
  padding-top: 40px;
}

.page-support__section-subtitle {
  color: #cccccc; /* Lighter grey for subtitles */
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 40px;
}

.page-support__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.page-support__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A2E44; /* Deep blue text on gold */
  border: 2px solid #FFD700;
}

.page-support__btn--primary:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  color: #1A2E44;
}

.page-support__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text on dark background */
  border: 2px solid #FFD700;
}

.page-support__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2E44;
}

.page-support__btn--large {
  padding: 15px 35px;
  font-size: 1.2em;
}

/* Hero Section */
.page-support__hero {
  background: linear-gradient(135deg, #1A2E44 0%, #3a506b 100%); /* Gradient with primary color */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for hero title */
  margin-bottom: 15px;
}

.page-support__hero-description {
  font-size: 1.3em;
  color: #ffffff;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__hero-actions .page-support__btn {
  margin: 0 10px;
}

/* FAQ Section */
.page-support__faq-section {
  padding: 60px 0;
  background-color: #152538; /* Slightly lighter dark blue for contrast */
}

.page-support__faq-list {
  display: grid;
  gap: 20px;
}

.page-support__faq-item {
  background-color: #1A2E44; /* Primary dark blue for FAQ items */
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2a415a;
}

.page-support__faq-question {
  color: #FFD700; /* Gold for FAQ questions */
  font-size: 1.3em;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-support__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-support__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-support__faq-answer {
  color: #e0e0e0;
  font-size: 1em;
  display: none; /* Hidden by default, toggled by JS */
  padding-top: 10px;
  border-top: 1px solid #2a415a;
  margin-top: 10px;
}

.page-support__faq-answer p {
  margin-bottom: 15px;
}

.page-support__link-inline {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-support__link-inline:hover {
  text-decoration: underline;
}

/* Contact Section */
.page-support__contact-section {
  padding: 60px 0;
  background-color: #1A2E44;
}

.page-support__contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-support__contact-card {
  background-color: #152538;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2a415a;
}

.page-support__contact-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold glow effect */
}

.page-support__card-title {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-support__card-description {
  color: #cccccc;
  margin-bottom: 20px;
}

/* CTA Section at bottom */
.page-support__cta-section--bottom {
  padding: 80px 0;
  background-color: #152538;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-support__hero-title {
    font-size: 2.5em;
  }

  .page-support__hero-description {
    font-size: 1.1em;
  }

  .page-support__hero-actions {
    flex-direction: column;
  }

  .page-support__hero-actions .page-support__btn {
    margin: 10px 0;
  }

  .page-support__section-title {
    font-size: 2em;
  }

  .page-support__contact-methods {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 2em;
  }

  .page-support__section-title {
    font-size: 1.8em;
  }

  .page-support__faq-question {
    font-size: 1.1em;
  }

  .page-support__card-title {
    font-size: 1.3em;
  }
}