/* style/support.css */

/* Variables from shared.css: --bg-color: #0D0E12; --text-main-color: #FFF3E6; */

.page-support {
  color: var(--text-main-color, #FFF3E6); /* Light text for dark body background */
  background-color: var(--bg-color, #0D0E12);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-support__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px;
  overflow: hidden;
}

.page-support__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-support__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  margin-top: -150px; /* Pull content up over image, but not *on* it */
  background: rgba(13, 14, 18, 0.8); /* Dark background for text */
  border-radius: 10px;
}

.page-support__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  color: #FFB04D; /* Glow color for main title */
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-support__description {
  font-size: 1.1em;
  color: var(--text-main-color, #FFF3E6);
  margin-bottom: 30px;
}

.page-support__cta-buttons {
  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;
  transition: all 0.3s ease;
  font-size: 1.05em;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-support__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff;
  border: none;
}

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

.page-support__btn-secondary {
  background: #17191F; /* Card BG */
  color: #FFA53A;
  border: 2px solid #A84F0C; /* Border color */
}

.page-support__btn-secondary:hover {
  background: #FFA53A;
  color: #17191F;
  border-color: #FFA53A;
  transform: translateY(-2px);
}

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

.page-support__section-title {
  font-size: 2.5em;
  color: #FF8C1A;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-support__section-intro {
  font-size: 1.1em;
  color: var(--text-main-color, #FFF3E6);
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__why-choose-us {
  background-color: #17191F; /* Card BG */
  padding: 60px 0;
}

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

.page-support__feature-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #A84F0C;
  transition: transform 0.3s ease;
}

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

.page-support__feature-title {
  font-size: 1.6em;
  color: #FFA53A;
  margin-bottom: 15px;
}

.page-support__feature-text {
  font-size: 1em;
  color: var(--text-main-color, #FFF3E6);
}

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

.page-support__faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.page-support__faq-item {
  background: #17191F; /* Card BG */
  border: 1px solid #A84F0C;
  border-radius: 8px;
  overflow: hidden;
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.2em;
  color: #FFA53A;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.05);
  user-select: none;
  list-style: none;
}

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

.page-support__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-support__faq-item[open] .page-support__faq-toggle {
  transform: rotate(45deg);
}

.page-support__faq-answer {
  padding: 20px;
  font-size: 1.05em;
  color: var(--text-main-color, #FFF3E6);
  border-top: 1px solid #A84F0C;
}

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

.page-support__faq-link {
  color: #FF8C1A;
  text-decoration: underline;
}

.page-support__faq-link:hover {
  color: #FFA53A;
}

.page-support__faq-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin-top: 40px;
}

.page-support__contact-methods {
  background-color: #17191F; /* Card BG */
  padding: 60px 0;
}

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

.page-support__method-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #A84F0C;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support__method-icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  max-width: 100%;
  display: block;
}

.page-support__method-title {
  font-size: 1.8em;
  color: #FFA53A;
  margin-bottom: 15px;
}

.page-support__method-description {
  font-size: 1em;
  color: var(--text-main-color, #FFF3E6);
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-support__team-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin-top: 40px;
}

.page-support__feedback-section {
  padding: 60px 0;
  text-align: center;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-support__hero-section {
    padding: 10px 15px 40px;
  }

  .page-support__hero-content {
    margin-top: -100px;
    padding: 15px;
  }

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

  .page-support__description,
  .page-support__section-intro,
  .page-support__feature-text,
  .page-support__faq-answer p,
  .page-support__method-description {
    font-size: 15px;
  }

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

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

  .page-support__container {
    padding: 20px 15px;
  }

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

  .page-support__feature-title {
    font-size: 1.4em;
  }

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

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

  /* Force images to be responsive */
  .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__why-choose-us,
  .page-support__faq-section,
  .page-support__contact-methods,
  .page-support__feedback-section,
  .page-support__methods-grid,
  .page-support__features-grid,
  .page-support__cta-buttons,
  .page-support__method-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

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

  .page-support__video-section {
    padding-top: 10px !important;
  }
}