/* style/support.css */
.page-support {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #f0f0f0;
  background-color: #0A1931;
}

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

.page-support__hero-section {
  background: linear-gradient(135deg, #0A1931 0%, #1a2a47 100%);
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-support__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract,geometric,subtle_pattern]');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-support__hero-section > .page-support__container {
  position: relative;
  z-index: 1;
}

.page-support__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-support__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #e0e0e0;
}

.page-support__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-support__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  text-align: center;
  cursor: pointer;
}

.page-support__btn--primary {
  background-color: #FFD700;
  color: #0A1931;
  border: 2px solid #FFD700;
}

.page-support__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-support__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-support__btn--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

.page-support__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.page-support__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-support__faq-section {
  padding: 80px 0;
  background-color: #0A1931;
}

.page-support__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-support__faq-item {
  background-color: #1a2a47;
  border-radius: 10px;
  padding: 25px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-support__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-support__faq-question::after {
  content: '+';
  font-size: 1.2em;
  margin-left: 10px;
  transition: transform 0.3s ease;
  color: #FFD700;
}

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

.page-support__faq-answer {
  font-size: 1em;
  color: #cccccc;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding-top 0.5s ease-out;
}

.page-support__faq-answer.active {
  max-height: 500px; /* Adjust based on expected content length */
  padding-top: 15px;
}

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

.page-support__faq-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-support__faq-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-support__contact-section {
  padding: 80px 0;
  background-color: #0A1931;
  text-align: center;
}

.page-support__contact-intro {
  font-size: 1.1em;
  color: #cccccc;
  max-width: 800px;
  margin: 0 auto 50px;
}

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

.page-support__contact-card {
  background-color: #1a2a47;
  border-radius: 10px;
  padding: 30px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-support__contact-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

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

.page-support__card-description {
  color: #cccccc;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-support__btn--contact {
  background-color: #FFD700;
  color: #0A1931;
  border: none;
  padding: 12px 25px;
  font-size: 1em;
  border-radius: 5px;
  width: 100%;
  max-width: 200px;
}

.page-support__btn--contact:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-support__cta-banner {
  background: linear-gradient(90deg, #0A1931 0%, #304f7b 100%);
  padding: 60px 0;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-support__cta-banner > .page-support__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-support__cta-content {
  max-width: 800px;
}

.page-support__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-support__cta-description {
  font-size: 1.2em;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.page-support__btn--lg {
  padding: 18px 40px;
  font-size: 1.3em;
  background-color: #FFD700;
  color: #0A1931;
  border: 2px solid #FFD700;
}

.page-support__btn--lg:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-support__cta-image {
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .page-support__cta-banner > .page-support__container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .page-support__cta-content {
    text-align: left;
    flex: 1;
    padding-right: 40px;
  }

  .page-support__cta-image {
    flex-shrink: 0;
  }

  .page-support__faq-question::after {
    transform: rotate(0deg);
  }

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

@media (max-width: 767px) {
  .page-support__hero-title {
    font-size: 2.5em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__cta-buttons {
    flex-direction: column;
  }
  .page-support__btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-support__contact-options {
    grid-template-columns: 1fr;
  }
  .page-support__cta-title {
    font-size: 2em;
  }
  .page-support__cta-description {
    font-size: 1em;
  }
  .page-support__cta-image {
    max-width: 80%;
  }
}