/* style/support.css */

/* Base styles for the support page */
.page-support {
  background-color: #08160F; /* Background color from custom palette */
  color: #F2FFF6; /* Main text color for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.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: 2.5em;
  color: #F2C14E; /* Gold color for main titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

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

/* Hero Section */
.page-support__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-support__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height of hero image */
  overflow: hidden;
  position: relative;
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-support__hero-content-wrapper {
  position: relative;
  text-align: center;
  padding: 20px;
  max-width: 900px;
  margin-top: -150px; /* Overlap with image for visual appeal */
  z-index: 1;
}

.page-support__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #F2C14E; /* Gold for H1 */
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15px;
}

.page-support__hero-description {
  font-size: 1.2em;
  color: #F2FFF6; /* Main text color */
  margin-bottom: 30px;
}

.page-support__cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.page-support__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6; /* Light text for button */
  border: none;
  box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-support__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
}

.page-support__btn-secondary {
  background: transparent;
  color: #2AD16F; /* Green for secondary button text */
  border: 2px solid #2AD16F; /* Green border */
}

.page-support__btn-secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  transform: translateY(-2px);
}

/* Channels Section */
.page-support__channels-section {
  background-color: #11271B; /* Card BG color */
}

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

.page-support__channel-item {
  background-color: #08160F; /* Darker background for channel items */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border color */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__channel-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-support__channel-title {
  font-size: 1.5em;
  color: #F2C14E; /* Gold for channel titles */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-support__channel-text {
  color: #A7D9B8; /* Secondary text color */
  margin-bottom: 20px;
}

.page-support__channel-link {
  display: inline-block;
  background: #0A4B2C; /* Deep Green for channel links */
  color: #F2FFF6; /* Light text */
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-support__channel-link:hover {
  background-color: #11A84E; /* Main color on hover */
}

/* FAQ Section */
.page-support__faq-list {
  margin-top: 40px;
}

.page-support__faq-item {
  background-color: #11271B; /* Card BG color */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  font-size: 1.2em;
  font-weight: 600;
  color: #F2FFF6; /* Main text color */
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green for question background */
  transition: background-color 0.3s ease;
}

.page-support__faq-question:hover {
  background-color: #11A84E; /* Main color on hover */
}

.page-support__faq-qtext {
  flex-grow: 1;
}

.page-support__faq-toggle {
  font-size: 1.5em;
  margin-left: 20px;
  color: #F2C14E; /* Gold for toggle icon */
}

/* For details tag, hide default marker */
.page-support__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-support__faq-item summary {
  list-style: none;
}

.page-support__faq-answer {
  padding: 0 30px 20px 30px;
  color: #A7D9B8; /* Secondary text color */
  font-size: 1em;
  line-height: 1.6;
}

.page-support__faq-answer p {
  margin: 0;
  padding: 0;
}

/* Why Choose Us Section */
.page-support__why-choose-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-support__why-choose-us-content {
  text-align: left;
}

.page-support__why-choose-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-support__why-choose-item {
  background-color: #11271B; /* Card BG color */
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid #2E7A4E; /* Border color */
}

.page-support__why-choose-heading {
  font-size: 1.3em;
  color: #F2C14E; /* Gold for headings */
  margin-bottom: 10px;
}

.page-support__why-choose-item p {
  color: #A7D9B8; /* Secondary text color */
}

.page-support__why-choose-image-wrapper {
  text-align: center;
}

.page-support__why-choose-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
  object-fit: cover;
  border: 2px solid #2E7A4E; /* Border color */
}

/* Call to Action Section */
.page-support__cta-section.page-support__dark-section {
  background-color: #0A4B2C; /* Deep Green background for CTA */
  text-align: center;
  padding: 80px 0;
}

.page-support__cta-content {
  max-width: 900px;
}

.page-support__cta-title {
  font-size: 2.8em;
  color: #F2C14E; /* Gold for CTA title */
  margin-bottom: 20px;
  font-weight: 700;
}

.page-support__cta-description {
  font-size: 1.2em;
  color: #F2FFF6; /* Main text color */
  margin-bottom: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-support__hero-content-wrapper {
    margin-top: -100px;
  }
  .page-support__why-choose-us-grid {
    grid-template-columns: 1fr;
  }
  .page-support__why-choose-us-content {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-support__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

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

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

  .page-support__hero-content-wrapper {
    margin-top: -80px;
  }

  .page-support__hero-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

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

  .page-support__cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-support__btn-primary,
  .page-support__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
  }

  .page-support__channel-list {
    grid-template-columns: 1fr;
  }

  .page-support__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

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

  .page-support__why-choose-list {
    margin-top: 20px;
  }

  .page-support__why-choose-item {
    padding: 15px;
  }

  .page-support__why-choose-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .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__channels-section,
  .page-support__faq-section,
  .page-support__why-choose-us-section,
  .page-support__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-support__hero-section {
    padding-top: 10px !important; /* body already handles header offset */
  }

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

  .page-support__cta-description {
    font-size: 1em;
  }
}