/* style/support.css */
.page-support {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

.page-support__hero {
  background: linear-gradient(135deg, #004AAD 0%, #0028ff 100%); /* Adjusted gradient for better contrast */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-support__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  position: relative;
  z-index: 1;
  color: #FFD700; /* Gold for highlight */
}

.page-support__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-support__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

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

.page-support__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #004AAD; /* Deep Blue */
  border: 2px solid #FFD700;
}

.page-support__btn--primary:hover {
  background-color: #e6c200; /* Darker Gold */
  color: #0028ff;
  transform: translateY(-3px);
}

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

.page-support__btn--secondary:hover {
  background-color: #FFD700;
  color: #004AAD; /* Deep Blue */
  transform: translateY(-3px);
}

.page-support__section-title {
  font-size: 2.8em;
  color: #004AAD; /* Deep Blue */
  text-align: center;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-support__section-subtitle {
  font-size: 1.2em;
  color: #555;
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__brand-highlight {
  color: #FFD700;
}

/* FAQ Section */
.page-support__faq-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.page-support__faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.page-support__faq-item {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 30px;
  border-left: 5px solid #FFD700; /* Gold accent */
  transition: transform 0.3s ease;
}

.page-support__faq-item:hover {
  transform: translateY(-5px);
}

.page-support__faq-question {
  font-size: 1.5em;
  color: #004AAD; /* Deep Blue */
  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;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

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

.page-support__faq-item.active .page-support__faq-answer {
  display: block;
}

.page-support__text-link {
  color: #004AAD;
  text-decoration: underline;
  font-weight: bold;
}

.page-support__text-link:hover {
  color: #FFD700;
}

.page-support__faq-image-container {
  text-align: center;
  margin-top: 60px;
}

.page-support__faq-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.page-support__contact-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.page-support__contact-card {
  background-color: #f0f8ff; /* Lighter blue background */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-support__contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.page-support__contact-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-support__contact-card-title {
  font-size: 1.8em;
  color: #004AAD; /* Deep Blue */
  margin-bottom: 15px;
}

.page-support__contact-card p {
  color: #555;
  margin-bottom: 25px;
}

.page-support__btn--outline {
  background-color: transparent;
  color: #004AAD; /* Deep Blue */
  border: 2px solid #004AAD;
  padding: 12px 25px;
  font-size: 1em;
}

.page-support__btn--outline:hover {
  background-color: #004AAD;
  color: #FFD700; /* Gold */
  border-color: #004AAD;
}

.page-support__contact-image-container {
  text-align: center;
  margin-top: 60px;
}

.page-support__contact-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Responsible Gaming Section */
.page-support__responsible-gaming {
  padding: 80px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.page-support__responsible-gaming p {
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #444;
  font-size: 1.1em;
}

.page-support__responsible-gaming-image-container {
  text-align: center;
  margin-top: 60px;
}

.page-support__responsible-gaming-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-support__faq-list {
    grid-template-columns: 1fr;
  }

  .page-support__hero-title {
    font-size: 2.8em;
  }
}

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

  .page-support__hero-description,
  .page-support__section-subtitle,
  .page-support__responsible-gaming p {
    font-size: 1em;
  }

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

  .page-support__btn {
    padding: 12px 25px;
    font-size: 1em;
    width: 80%;
    margin: 0 auto;
  }

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

  .page-support__faq-item {
    padding: 25px;
  }

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

  .page-support__contact-card {
    padding: 25px;
  }

  .page-support__contact-card-title {
    font-size: 1.5em;
  }
}

@media (max-width: 480px) {
  .page-support__hero {
    padding: 60px 0;
  }

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

  .page-support__container {
    padding: 0 15px;
  }

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

  .page-support__faq-item,
  .page-support__contact-card {
    padding: 20px;
  }

  .page-support__btn {
    width: 90%;
  }
}