/* style/support.css */

/* Base styles for the support page */
.page-support {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000; /* Assuming body background is black as per instructions */
}

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

.page-support__section-spacing {
  padding: 60px 0;
}

.page-support__section-title {
  font-size: 38px;
  font-weight: 700;
  color: #FFD700; /* Primary brand color */
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.page-support__section-description {
  font-size: 18px;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-support__text-block {
  font-size: 16px;
  line-height: 1.7;
  color: #e0e0e0;
  margin-bottom: 20px;
}

/* Hero Section */
.page-support__hero-section {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Account for fixed header */
}

.page-support__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-support__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
  z-index: 2;
}

.page-support__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.page-support__main-title {
  font-size: 52px;
  font-weight: 800;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.page-support__hero-description {
  font-size: 20px;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-support__hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-support__btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-support__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

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

.page-support__btn--secondary:hover {
  background-color: #FFD700;
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-support__btn--small {
  padding: 10px 20px;
  font-size: 16px;
}

.page-support__btn--large {
  padding: 16px 35px;
  font-size: 20px;
}

/* About Section */
.page-support__about-section {
  background-color: #0d0d0d;
}

/* Channels Section */
.page-support__channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-support__channel-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-support__channel-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.15);
}

.page-support__channel-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 3px solid #FFD700;
  padding: 10px;
}

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

.page-support__channel-text {
  font-size: 15px;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Common Issues Section */
.page-support__common-issues {
  background-color: #1a1a1a;
}

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

.page-support__issue-card {
  background-color: rgba(30, 144, 255, 0.1);
  border-radius: 12px;
  padding: 25px;
  border: 1px solid #1E90FF;
  transition: background-color 0.3s ease;
}

.page-support__issue-card:hover {
  background-color: rgba(30, 144, 255, 0.2);
}

.page-support__issue-title {
  font-size: 22px;
  font-weight: 600;
  color: #1E90FF;
  margin-bottom: 15px;
}

.page-support__issue-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-support__issue-list li {
  font-size: 15px;
  color: #e0e0e0;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.page-support__issue-list li::before {
  content: '•';
  color: #FFD700;
  position: absolute;
  left: 0;
  top: 0;
}

.page-support__btn--text {
  color: #FFD700;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s ease;
}

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

/* Video Section */
.page-support__video-section {
  background-color: #0d0d0d;
}

.page-support__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 12px;
  margin-top: 30px;
}

.page-support__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.page-support__video-cta-text {
  text-align: center;
  font-size: 18px;
  color: #f0f0f0;
  margin-top: 20px;
}

.page-support__video-cta-text a {
  color: #FFD700;
  text-decoration: none;
  font-weight: 600;
}

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

/* FAQ Section */
.page-support__faq-section {
  background-color: #1a1a1a;
}

.page-support__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-support__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: 600;
  color: #FFD700;
  cursor: pointer;
  background-color: rgba(255, 215, 0, 0.1);
  transition: background-color 0.3s ease;
}

.page-support__faq-question:hover {
  background-color: rgba(255, 215, 0, 0.2);
}

.page-support__faq-toggle {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-support__faq-item.active .page-support__faq-toggle {
  transform: rotate(45deg); /* For '-' icon */
}

.page-support__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-support__faq-item.active .page-support__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 15px 25px;
  color: #e0e0e0;
  font-size: 16px;
  line-height: 1.7;
}

.page-support__faq-answer p {
  margin-bottom: 10px;
  color: #e0e0e0;
}

.page-support__faq-answer a {
  color: #1E90FF;
  text-decoration: none;
}

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

/* Commitment Section */
.page-support__commitment-section {
  background-color: #0d0d0d;
}

.page-support__commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-support__commitment-item {
  text-align: center;
  padding: 25px;
  background-color: rgba(30, 144, 255, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(30, 144, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__commitment-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(30, 144, 255, 0.15);
}

.page-support__commitment-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 3px solid #1E90FF;
  padding: 8px;
}

.page-support__commitment-title {
  font-size: 22px;
  font-weight: 700;
  color: #1E90FF;
  margin-bottom: 10px;
}

.page-support__commitment-text {
  font-size: 15px;
  color: #cccccc;
  line-height: 1.6;
}

/* Tips Section */
.page-support__tips-section {
  background-color: #1a1a1a;
}

.page-support__tips-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-support__tips-list li {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-size: 16px;
  color: #f0f0f0;
  line-height: 1.6;
  border-left: 5px solid #FFD700;
}

.page-support__tips-list li strong {
  color: #FFD700;
}

/* Final CTA Section */
.page-support__cta-final-section {
  background-color: #000;
  text-align: center;
}

.page-support__cta-final-section .page-support__section-title {
  font-size: 42px;
}

.page-support__cta-final-section .page-support__section-description {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__main-title {
    font-size: 44px;
  }
  .page-support__hero-description {
    font-size: 18px;
  }
  .page-support__section-title {
    font-size: 32px;
  }
  .page-support__channels-grid,
  .page-support__issues-grid,
  .page-support__commitment-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-support {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-support__hero-section {
    height: auto;
    min-height: 400px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
  }
  .page-support__main-title {
    font-size: 36px;
    margin-bottom: 15px;
  }
  .page-support__hero-description {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .page-support__hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__btn {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-support__btn--large {
    font-size: 18px;
  }
  .page-support__section-spacing {
    padding: 40px 0;
  }
  .page-support__section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .page-support__section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-support__container {
    padding: 0 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Image responsive rules */
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-support__channel-icon,
  .page-support__commitment-icon {
    width: 80px;
    height: 80px;
    padding: 5px;
  }
  
  /* Video responsive rules */
  .page-support video,
  .page-support__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-support__video-section,
  .page-support__video-container,
  .page-support__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }
  .page-support__video-wrapper {
    padding-bottom: 56.25% !important; /* Maintain aspect ratio */
    margin-left: 15px;
    margin-right: 15px;
  }

  /* FAQ responsive rules */
  .page-support__faq-question {
    font-size: 16px;
    padding: 15px 20px;
  }
  .page-support__faq-answer {
    padding: 0 20px;
  }
  .page-support__faq-item.active .page-support__faq-answer {
    padding: 15px 20px;
    font-size: 15px;
  }

  /* CTA buttons responsive */
  .page-support__cta-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .page-support__main-title {
    font-size: 30px;
  }
  .page-support__section-title {
    font-size: 24px;
  }
  .page-support__hero-section {
    min-height: 350px;
  }
  .page-support__channel-card,
  .page-support__issue-card,
  .page-support__commitment-item {
    padding: 20px;
  }
  .page-support__channel-title,
  .page-support__commitment-title {
    font-size: 20px;
  }
  .page-support__faq-question {
    font-size: 15px;
  }
}