/* style/support.css */

/* Global styles for page-support scope */
.page-support {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: #ffffff; /* Default light background */
  font-size: 16px;
}

.page-support h1, .page-support h2, .page-support h3 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Ensure body padding-top for fixed header */
.page-support__hero-section {
  padding-top: var(--header-offset, 120px); /* Desktop and mobile handled by shared --header-offset */
}

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

.page-support__section-title {
  font-size: 36px;
  color: #26A9E0; /* Brand color for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-support__section-description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

/* Hero Section */
.page-support__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 60px; 
  background: linear-gradient(135deg, #e0f2f7, #ffffff); /* Light gradient background */
}

.page-support__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-support__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-support__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-support__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-support__hero-content h1 {
  font-size: 48px;
  color: #26A9E0; /* Brand color for H1 */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-support__intro-text {
  font-size: 20px;
  color: #333333;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #26A9E0; /* Primary brand color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none; /* No border for primary button */
  max-width: 100%; /* Button responsive */
  box-sizing: border-box; /* Button responsive */
  white-space: normal; /* Button responsive */
  word-wrap: break-word; /* Button responsive */
}

.page-support__cta-button:hover {
  background: #1e87b7; /* Darker shade of primary */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-support__cta-button--secondary {
  background: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
  margin-left: 20px;
}

.page-support__cta-button--secondary:hover {
  background: #f0f8ff;
  color: #1e87b7;
  border-color: #1e87b7;
}

/* How Can We Help Section */
.page-support__how-can-we-help-section {
  padding: 80px 0;
  background-color: #f8fcfd; /* Light background */
}

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

.page-support__service-item {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-support__service-title {
  font-size: 24px;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-support__service-item p {
  color: #555555;
  font-size: 16px;
}

/* Contact Channels Section */
.page-support__contact-channels-section {
  padding: 80px 0;
  background-color: #26A9E0; /* Dark brand color background */
  color: #ffffff; /* White text for dark background */
}

.page-support__contact-channels-section .page-support__section-title {
  color: #ffffff; /* White title for dark background */
}

.page-support__contact-channels-section .page-support__section-description {
  color: #e0f2f7; /* Lighter white for description on dark background */
}

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

.page-support__channel-item {
  background: rgba(255, 255, 255, 0.15); /* Semi-transparent white background */
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-support__channel-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.25);
}

.page-support__channel-item img {
  
  
  margin-bottom: 20px;
  object-fit: contain;
  border-radius: 0; /* No border-radius on icons from images */
  max-width: 100%; /* Responsive image */
  display: block; /* Responsive image */
  margin-left: auto;
  margin-right: auto;
}

.page-support__channel-title {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-support__channel-item p {
  color: #e0f2f7;
  font-size: 16px;
  margin-bottom: 25px;
}

.page-support__btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: #ffffff;
  color: #26A9E0;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  max-width: 100%; /* Button responsive */
  box-sizing: border-box; /* Button responsive */
  white-space: normal; /* Button responsive */
  word-wrap: break-word; /* Button responsive */
}

.page-support__btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-support__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  color: #ffffff;
  text-decoration: none;
  border: 2px solid #ffffff;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  max-width: 100%; /* Button responsive */
  box-sizing: border-box; /* Button responsive */
  white-space: normal; /* Button responsive */
  word-wrap: break-word; /* Button responsive */
}

.page-support__btn-secondary:hover {
  background: #ffffff;
  color: #26A9E0;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

.page-support__faq-grid {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-top: 40px;
}

.page-support__faq-image {
  flex: 0 0 40%;
  max-width: 40%;
  border-radius: 8px;
  object-fit: cover;
  max-height: 500px;
  align-self: stretch;
}

.page-support__faq-list {
  flex: 1;
  max-width: 60%;
}

.page-support__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-support__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 20px;
  opacity: 0;
  color: #555555;
  font-size: 15px;
}

.page-support__faq-item.active .page-support__faq-answer {
  max-height: 2000px !important; /* Ensure content expands */
  padding: 20px !important;
  opacity: 1;
  background: #fefefe;
  border-radius: 0 0 5px 5px;
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #26A9E0; /* Brand color for question background */
  color: #ffffff;
  border: 1px solid #26A9E0;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-support__faq-item.active .page-support__faq-question {
  border-radius: 5px 5px 0 0; /* Rounded top corners when active */
}

.page-support__faq-question:hover {
  background: #1e87b7; /* Darker shade on hover */
  border-color: #1e87b7;
}

.page-support__faq-question:active {
  background: #1a6f94;
}

.page-support__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #ffffff;
}

.page-support__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #ffffff;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-support__faq-item.active .page-support__faq-toggle {
  color: #ffffff;
  transform: rotate(0deg); /* No rotation for minus sign */
}

/* Responsible Gambling Section */
.page-support__responsible-gambling-section {
  padding: 80px 0;
  background-color: #26A9E0; /* Dark brand color background */
  color: #ffffff;
}

.page-support__responsible-gambling-section .page-support__section-title {
  color: #ffffff;
}

.page-support__responsible-gambling-section .page-support__section-description {
  color: #e0f2f7;
}

.page-support__responsible-content {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-support__responsible-content img {
  flex: 0 0 50%;
  max-width: 50%;
  border-radius: 8px;
  object-fit: cover;
  height: auto; /* Ensure height auto for responsive */
}

.page-support__responsible-text {
  flex: 1;
}

.page-support__responsible-text h3 {
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 20px;
}

.page-support__responsible-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-support__responsible-text ul li {
  font-size: 18px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
  color: #e0f2f7;
}

.page-support__responsible-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ffffff;
  font-weight: bold;
}

/* Final CTA Section */
.page-support__final-cta-section {
  padding: 80px 0;
  background-color: #ffffff;
  text-align: center;
}

.page-support__final-cta-container {
  max-width: 900px;
}

.page-support__final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  width: 100%; /* Ensure container takes full width for responsive */
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__hero-content h1 {
    font-size: 40px;
  }

  .page-support__section-title {
    font-size: 32px;
  }

  .page-support__intro-text,
  .page-support__section-description {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  /* Ensure padding-top for fixed header on mobile */
  .page-support__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-support__hero-content h1 {
    font-size: 32px;
  }

  .page-support__intro-text {
    font-size: 16px;
  }

  .page-support__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    margin-top: 15px;
    width: 100% !important; /* Button responsive */
    max-width: 100% !important; /* Button responsive */
    box-sizing: border-box !important; /* Button responsive */
    white-space: normal !important; /* Button responsive */
    word-wrap: break-word !important; /* Button responsive */
    margin-left: 0 !important; /* Remove margin-left for secondary button */
  }

  .page-support__cta-button--secondary {
    margin-top: 10px; /* Adjust spacing for stacked buttons */
  }

  .page-support__final-cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px;
    padding: 0 15px;
  }

  .page-support__section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .page-support__section-description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .page-support__service-grid,
  .page-support__channel-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-support__service-item,
  .page-support__channel-item {
    padding: 25px;
  }

  .page-support__service-title,
  .page-support__channel-title {
    font-size: 20px;
  }

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

  .page-support__faq-image {
    flex: 0 0 100%;
    max-width: 100%;
    order: -1; /* Image above text on mobile */
  }

  .page-support__faq-list {
    flex: 1;
    max-width: 100%;
  }

  .page-support__faq-question {
    padding: 15px;
  }

  .page-support__faq-question h3 {
    font-size: 16px;
  }

  .page-support__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }

  .page-support__faq-answer {
    padding: 0 15px;
  }

  .page-support__faq-item.active .page-support__faq-answer {
    padding: 15px !important;
  }

  .page-support__responsible-content {
    flex-direction: column;
    gap: 30px;
  }

  .page-support__responsible-content img {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .page-support__responsible-text h3 {
    font-size: 24px;
  }

  .page-support__responsible-text ul li {
    font-size: 16px;
  }

  /* Mobile image responsiveness */
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-support__section,
  .page-support__card,
  .page-support__container,
  .page-support__hero-section,
  .page-support__how-can-we-help-section,
  .page-support__contact-channels-section,
  .page-support__faq-section,
  .page-support__responsible-gambling-section,
  .page-support__final-cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-support__final-cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .page-support__hero-content h1 {
    font-size: 28px;
  }
  .page-support__section-title {
    font-size: 24px;
  }
  .page-support__cta-button {
    font-size: 15px;
    padding: 10px 25px;
  }
  .page-support__faq-question h3 {
    font-size: 15px;
  }
}