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

.page-support a {
  text-decoration: none;
  color: #0A2463;
}

.page-support a:hover {
  text-decoration: underline;
}

/* Hero Section */
.page-support__hero {
  background: linear-gradient(135deg, #0A2463, #3a5c9f);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

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

.page-support__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-support__hero-subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-support__hero-image-wrapper {
  max-width: 500px;
  width: 100%;
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-support__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-support__section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 20px;
}

.page-support__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555;
}

/* Buttons */
.page-support__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-support__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  color: #0A2463;
  text-decoration: none;
}

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

.page-support__btn--secondary:hover {
  background-color: #1a3a7c;
  border-color: #1a3a7c;
  color: #FFD700;
  text-decoration: none;
}

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

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

.page-support__faq-item {
  background-color: #f2f4f7;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #FFD700;
}

.page-support__faq-question {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-support__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

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

.page-support__faq-answer.active {
  max-height: 300px; /* Adjust as needed */
  padding-top: 15px;
}

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

.page-support__faq-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 15px;
}

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

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

.page-support__contact-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-support__contact-card:hover {
  transform: translateY(-5px);
}

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

.page-support__contact-card-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 15px;
}

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

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

.page-support__responsible-gaming .page-support__section-title {
  color: #FFD700;
}

.page-support__responsible-gaming .page-support__section-description {
  color: #c0c0c0;
}

.page-support__responsible-gaming-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Floating CTA Button */
.page-support__floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.page-support__floating-btn {
  background-color: #FFD700;
  color: #0A2463;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: pulse 2s infinite;
}

.page-support__floating-btn:hover {
  background-color: #e6c200;
  transform: translateY(-3px) scale(1.03);
  text-decoration: none;
  color: #0A2463;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-support__hero {
    flex-direction: column;
    padding: 60px 20px;
  }

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

  .page-support__hero-subtitle {
    font-size: 1em;
  }

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

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

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

  .page-support__floating-cta {
    bottom: 20px;
    right: 20px;
  }

  .page-support__floating-btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

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

  .page-support__hero-subtitle {
    font-size: 0.9em;
  }

  .page-support__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

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

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

  .page-support__faq-answer.active {
    max-height: 250px; /* Smaller for mobile */
  }
}