/* style/support.css */

/* Body background color is handled by shared.css var(--bg-color) */
/* This page uses custom colors defined in the prompt. */

.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__dark-section {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-support__light-bg {
  background-color: #11271B; /* Card BG, acting as a lighter background for sections */
  color: #F2FFF6; /* Text Main */
}

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

.page-support__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  position: relative;
  z-index: 0;
  margin-bottom: 40px; /* Space between image and content */
}

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

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

.page-support__main-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold */
}

.page-support__intro-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

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

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

.page-support__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  border: 2px solid transparent;
}

.page-support__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-support__btn-secondary {
  background: transparent;
  color: #57E38D; /* Glow */
  border: 2px solid #2E7A4E; /* Border */
}

.page-support__btn-secondary:hover {
  background: rgba(87, 227, 141, 0.1);
  color: #F2FFF6; /* Text Main */
}

.page-support__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
  color: #F2C14E; /* Gold */
  padding-top: 40px;
}

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

.page-support__contact-methods,
.page-support__guides-section,
.page-support__commitment-section {
  padding: 80px 0;
}

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

.page-support__card,
.page-support__guide-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #F2FFF6; /* Text Main */
}

.page-support__card:hover,
.page-support__guide-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.page-support__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  display: block;
}

.page-support__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #F2C14E; /* Gold */
}

.page-support__card p {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-support__card .page-support__btn-primary,
.page-support__card .page-support__btn-secondary {
  width: auto;
  align-self: center;
}

.page-support__faq-section {
  padding: 80px 0;
}

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

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

.page-support__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  color: #F2FFF6; /* Text Main */
  list-style: none;
  outline: none;
}

.page-support__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-support__faq-qtext {
  flex-grow: 1;
  color: #F2FFF6; /* Text Main */
}

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

.page-support__faq-item[open] .page-support__faq-toggle {
  content: "−";
}

.page-support__faq-answer {
  padding: 0 30px 20px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

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

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

.page-support__cta-faq {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-support__cta-faq a {
  color: #F2C14E; /* Gold */
  font-weight: 600;
  text-decoration: underline;
}

.page-support__policies-section {
  padding: 80px 0;
}

.page-support__policies-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-support__policy-item {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
  padding: 15px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
  white-space: nowrap;
}

.page-support__policy-item:hover {
  background-color: #13994A;
  color: #F2C14E; /* Gold */
}

.page-support__commitment-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}

.page-support__commitment-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-support__commitment-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 700px;
  font-size: 1.1rem;
  text-align: left;
}

.page-support__commitment-list li {
  background-color: #0A4B2C; /* Deep Green */
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  border-left: 5px solid #57E38D; /* Glow */
  color: #F2FFF6; /* Text Main */
}

.page-support__commitment-list li strong {
  color: #F2C14E; /* Gold */
}

.page-support__cta-final {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px dashed #2E7A4E; /* Divider */
}

.page-support__cta-final p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

/* Responsive Styles */
@media (min-width: 769px) {
  .page-support__commitment-content {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }

  .page-support__commitment-list {
    flex: 1;
    margin-left: 40px;
  }
}

@media (max-width: 768px) {
  .page-support__main-title {
    font-size: 2rem;
  }

  .page-support__intro-text {
    font-size: 1rem;
  }

  .page-support__section-title {
    font-size: 1.8rem;
  }

  .page-support__section-description {
    font-size: 0.95rem;
  }

  .page-support__hero-section,
  .page-support__contact-methods,
  .page-support__faq-section,
  .page-support__guides-section,
  .page-support__policies-section,
  .page-support__commitment-section {
    padding: 40px 0;
  }

  .page-support__hero-section {
    padding-top: 10px !important; /* Ensure small top padding on mobile */
  }

  .page-support__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

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

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

  .page-support__card-image {
    height: 180px;
  }

  .page-support__faq-item summary {
    padding: 15px 20px;
    font-size: 1rem;
  }

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

  .page-support__policies-grid {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .page-support__policy-item {
    white-space: normal;
    text-align: center;
  }

  .page-support__commitment-content {
    flex-direction: column;
  }

  .page-support__commitment-list {
    margin-left: 0;
    margin-top: 30px;
  }

  /* Mobile image, video, and container responsiveness */
  .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__section,
  .page-support__card,
  .page-support__container,
  .page-support__video-section,
  .page-support__video-container,
  .page-support__video-wrapper,
  .page-support__cta-buttons,
  .page-support__button-group,
  .page-support__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no horizontal scroll */
  }

  .page-support__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
}