/* style/support.css */

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

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

.page-support__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

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

.page-support__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3; /* Slightly transparent to allow text to stand out */
}

.page-support__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  background: rgba(8, 22, 15, 0.7); /* Deep Green with transparency for readability */
  border-radius: 10px;
}

.page-support__main-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.1;
}

.page-support__hero-description {
  font-size: 20px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-support__btn-primary,
.page-support__btn-secondary,
.page-support__btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  box-sizing: border-box;
}

.page-support__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

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

.page-support__btn-secondary {
  background: transparent;
  color: #11A84E; /* Main color */
  border: 2px solid #11A84E; /* Main color */
}

.page-support__btn-secondary:hover {
  background: #11A84E; /* Main color */
  color: #F2FFF6; /* Text Main */
}

.page-support__btn-link {
  background: transparent;
  color: #57E38D; /* Glow */
  border: 1px solid #57E38D;
  padding: 10px 20px;
  font-size: 16px;
}

.page-support__btn-link:hover {
  background: #57E38D;
  color: #08160F;
}

/* Dark sections */
.page-support__dark-section {
  background-color: #08160F; /* Background */
  padding: 80px 0;
}

/* Light sections */
.page-support__light-bg {
  background-color: #11271B; /* Card BG */
  padding: 80px 0;
}

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

.page-support__channel-card {
  background: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-support__channel-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-support__card-title {
  font-size: 24px;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-support__card-text {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-support__faq-item {
  background: #08160F; /* Background */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  background-color: #11271B; /* Card BG */
  transition: background-color 0.3s ease;
}

.page-support__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-support__faq-toggle {
  font-size: 24px;
  font-weight: 700;
  color: #57E38D; /* Glow */
  width: 30px;
  text-align: center;
  line-height: 1;
}

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

.page-support__faq-item.active .page-support__faq-answer {
  max-height: 500px !important; /* Sufficiently large to show content */
  padding: 20px 25px;
}

.page-support__faq-item.active .page-support__faq-question {
  background-color: #0A4B2C; /* Deep Green */
}

.page-support__faq-answer p {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
}

.page-support__faq-answer a {
  color: #57E38D; /* Glow */
  text-decoration: none;
}

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

/* Resources Section */
.page-support__resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-support__resource-card {
  background: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-support__resource-image {
  width: 100%;
  max-width: 400px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* Policies Section */
.page-support__policy-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Emergency Contact Section */
.page-support__emergency-info {
  text-align: center;
  margin-top: 40px;
}

.page-support__emergency-info p {
  font-size: 20px;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-support__phone-number,
.page-support__email-address {
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: 600;
}

.page-support__phone-number:hover,
.page-support__email-address:hover {
  text-decoration: underline;
}

/* Why Choose Section */
.page-support__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__benefits-list li {
  background: #08160F; /* Background */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  font-size: 17px;
  color: #A7D9B8; /* Text Secondary */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-support__benefits-list li strong {
  color: #F2FFF6; /* Text Main */
  font-weight: 700;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-support__hero-content {
    padding: 15px;
  }

  .page-support__main-title {
    font-size: clamp(32px, 4.5vw, 48px);
  }

  .page-support__hero-description {
    font-size: 18px;
  }

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

@media (max-width: 768px) {
  .page-support__container,
  .page-support__hero-section,
  .page-support__channels-section,
  .page-support__faq-section,
  .page-support__resources-section,
  .page-support__policies-section,
  .page-support__emergency-contact-section,
  .page-support__why-choose-section {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-support__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-support__main-title {
    font-size: clamp(28px, 8vw, 38px);
  }

  .page-support__hero-description {
    font-size: 16px;
  }

  .page-support__cta-buttons {
    flex-direction: column !important;
    gap: 15px;
  }

  .page-support__btn-primary,
  .page-support__btn-secondary,
  .page-support a[class*="button"],
  .page-support a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-support__channels-grid,
  .page-support__resources-grid {
    grid-template-columns: 1fr;
  }

  .page-support__channel-card,
  .page-support__resource-card {
    padding: 20px;
  }

  .page-support__resource-image {
    height: 200px;
  }

  .page-support__section-title {
    font-size: clamp(24px, 7vw, 36px);
  }

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

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

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

  .page-support__faq-answer p {
    font-size: 15px;
  }

  .page-support__policy-links {
    flex-direction: column;
  }

  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .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,
  .page-support__section,
  .page-support__card,
  .page-support__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}