/* style/support-contact-channels.css */

/* General Styles for the Page */
.page-support-contact-channels {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000; /* Assuming body background is black */
  padding-top: 100px; /* Spacing for fixed header on desktop */
}

@media (max-width: 768px) {
  .page-support-contact-channels {
    padding-top: 80px; /* Spacing for fixed header on mobile */
    font-size: 16px;
    line-height: 1.6;
  }
}

.page-support-contact-channels__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-support-contact-channels__dark-bg {
  background-color: #0A2463;
  color: #ffffff;
}

.page-support-contact-channels__light-bg {
  background-color: #ffffff;
  color: #333333;
}

/* Sections */
.page-support-contact-channels__intro-section {
  padding: 80px 0;
  text-align: center;
  background-image: linear-gradient(135deg, #0A2463, #06183B);
}

.page-support-contact-channels__main-title {
  font-size: 48px;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-support-contact-channels__description {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #f0f0f0;
}

.page-support-contact-channels__btn-primary {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2463;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid transparent;
}

.page-support-contact-channels__btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-support-contact-channels__section-title {
  font-size: 36px;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

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

.page-support-contact-channels__dark-bg .page-support-contact-channels__section-title::after {
  background-color: #FFD700;
}

.page-support-contact-channels__text-block {
  font-size: 17px;
  margin-bottom: 40px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

/* Reason Section */
.page-support-contact-channels__reason-section {
  padding: 60px 0;
  background-color: #1a1a1a; /* Lighter dark background for contrast */
  color: #ffffff;
}

.page-support-contact-channels__reason-section .page-support-contact-channels__section-title {
  color: #FFD700;
}

.page-support-contact-channels__reason-section .page-support-contact-channels__section-title::after {
  background-color: #0A2463;
}

.page-support-contact-channels__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-support-contact-channels__card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-support-contact-channels__card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-support-contact-channels__card-title {
  font-size: 24px;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-support-contact-channels__card p {
  font-size: 16px;
  color: #f0f0f0;
}

/* Channels Section */
.page-support-contact-channels__channels-section {
  padding: 80px 0;
  background-image: linear-gradient(135deg, #0A2463, #06183B);
}

.page-support-contact-channels__channels-section .page-support-contact-channels__section-title {
  color: #FFD700;
}

.page-support-contact-channels__channels-section .page-support-contact-channels__section-title::after {
  background-color: #FFD700;
}

.page-support-contact-channels__grid--channels {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-support-contact-channels__channel-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: background-color 0.3s ease;
}

.page-support-contact-channels__channel-card:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-support-contact-channels__channel-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.page-support-contact-channels__channel-icon img {
  max-width: 150px;
  height: auto;
  display: block;
  object-fit: contain;
}

.page-support-contact-channels__channel-title {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-support-contact-channels__channel-card p {
  font-size: 16px;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-support-contact-channels__contact-detail {
  font-size: 16px;
  color: #FFD700;
  font-weight: bold;
}

.page-support-contact-channels__btn-secondary {
  display: inline-block;
  background-color: #0A2463;
  color: #FFD700;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #FFD700;
}

.page-support-contact-channels__btn-secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
}

.page-support-contact-channels__social-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-support-contact-channels__social-list li {
  margin-bottom: 10px;
}

.page-support-contact-channels__social-list a {
  color: #FFD700;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.page-support-contact-channels__social-list a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Guide Section */
.page-support-contact-channels__guide-section {
  padding: 60px 0;
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-support-contact-channels__guide-section .page-support-contact-channels__section-title {
  color: #FFD700;
}

.page-support-contact-channels__guide-section .page-support-contact-channels__section-title::after {
  background-color: #0A2463;
}

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

.page-support-contact-channels__guide-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 10px;
  border-left: 5px solid #FFD700;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-support-contact-channels__guide-title {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-support-contact-channels__guide-item p {
  font-size: 16px;
  color: #f0f0f0;
}

/* Commitment Section */
.page-support-contact-channels__commitment-section {
  padding: 80px 0;
  background-image: linear-gradient(135deg, #0A2463, #06183B);
}

.page-support-contact-channels__commitment-section .page-support-contact-channels__section-title {
  color: #FFD700;
}

.page-support-contact-channels__commitment-section .page-support-contact-channels__section-title::after {
  background-color: #FFD700;
}

.page-support-contact-channels__commitment-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 900px;
  font-size: 17px;
  color: #f0f0f0;
}

.page-support-contact-channels__commitment-list li {
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  border-left: 3px solid #FFD700;
  line-height: 1.8;
}

.page-support-contact-channels__commitment-list li strong {
  color: #FFD700;
}

/* FAQ Section */
.page-support-contact-channels__faq-section {
  padding: 60px 0;
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-support-contact-channels__faq-section .page-support-contact-channels__section-title {
  color: #FFD700;
}

.page-support-contact-channels__faq-section .page-support-contact-channels__section-title::after {
  background-color: #0A2463;
}

.page-support-contact-channels__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

/* FAQ container style */
.page-support-contact-channels__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
}

/* FAQ default state - answer hidden */
.page-support-contact-channels__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: #f0f0f0;
}

/* FAQ expanded state - 🚨 Use!important and sufficiently large max-height */
.page-support-contact-channels__faq-item.active .page-support-contact-channels__faq-answer {
  max-height: 2000px !important; /* 🚨 Use!important to ensure priority, value large enough to accommodate any content */
  padding: 20px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0 0 8px 8px;
}

/* Question style */
.page-support-contact-channels__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #0A2463;
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-support-contact-channels__faq-question:hover {
  background: #06183B;
  border-color: #FFD700;
}

.page-support-contact-channels__faq-question:active {
  background: #041026;
}

/* Question title style */
.page-support-contact-channels__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #FFD700;
  pointer-events: none; /* Prevent h3 tag from blocking click event */
}

/* Toggle icon */
.page-support-contact-channels__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none; /* Prevent icon from blocking click event */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-support-contact-channels__faq-item.active .page-support-contact-channels__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support-contact-channels__main-title {
    font-size: 40px;
  }
  .page-support-contact-channels__section-title {
    font-size: 32px;
  }
  .page-support-contact-channels__card-title, .page-support-contact-channels__channel-title, .page-support-contact-channels__guide-title {
    font-size: 20px;
  }
  .page-support-contact-channels__description, .page-support-contact-channels__text-block, .page-support-contact-channels__card p, .page-support-contact-channels__channel-card p, .page-support-contact-channels__guide-item p, .page-support-contact-channels__commitment-list li {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .page-support-contact-channels__intro-section {
    padding: 60px 0;
  }
  .page-support-contact-channels__main-title {
    font-size: 32px;
  }
  .page-support-contact-channels__description {
    font-size: 16px;
  }
  .page-support-contact-channels__btn-primary {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-support-contact-channels__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-support-contact-channels__text-block {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .page-support-contact-channels__reason-section, .page-support-contact-channels__channels-section, .page-support-contact-channels__guide-section, .page-support-contact-channels__commitment-section, .page-support-contact-channels__faq-section {
    padding: 40px 0;
  }
  .page-support-contact-channels__grid, .page-support-contact-channels__guide-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-support-contact-channels__card, .page-support-contact-channels__channel-card, .page-support-contact-channels__guide-item {
    padding: 20px;
  }
  .page-support-contact-channels__channel-icon img {
    max-width: 120px;
  }
  .page-support-contact-channels__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  .page-support-contact-channels__faq-question h3 {
    font-size: 16px;
    width: calc(100% - 40px);
  }
  .page-support-contact-channels__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 24px;
  }
  .page-support-contact-channels__faq-answer {
    padding: 0 15px;
  }
  .page-support-contact-channels__faq-item.active .page-support-contact-channels__faq-answer {
    padding: 15px !important;
  }
  /* Mobile image specific styles */
  .page-support-contact-channels img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-support-contact-channels__section, .page-support-contact-channels__card, .page-support-contact-channels__container, .page-support-contact-channels__channel-card, .page-support-contact-channels__guide-item, .page-support-contact-channels__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}