/* style/support.css */

/* Base styles for the support page */
.page-support {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
  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__container--flex {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 60px 20px;
}

.page-support__container--flex-reverse {
  display: flex;
  flex-direction: row-reverse;
  gap: 40px;
  align-items: center;
  padding: 60px 20px;
}

.page-support__container--flex-contact {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 60px 20px;
}

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

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

.page-support__card-title {
  font-size: 1.3em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

.page-support__card-title a {
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
}

.page-support__card-title a:hover {
  color: #2AD16F; /* Lighter green from button gradient */
}

.page-support__card-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
}

/* Buttons */
.page-support__btn-primary,
.page-support__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  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; /* Text Main */
  border: none;
}

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

.page-support__btn-secondary {
  background: transparent;
  color: #F2FFF6; /* Text Main */
  border: 2px solid #2E7A4E; /* Border */
}

.page-support__btn-secondary:hover {
  background: #2E7A4E; /* Border color as hover background */
  color: #F2FFF6;
  transform: translateY(-2px);
}

.page-support__btn-text {
  color: #2AD16F; /* Lighter green from button gradient */
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

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

.page-support__arrow {
  font-size: 1.2em;
  line-height: 1;
}

/* Hero Section */
.page-support__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  background-color: #08160F; /* Background */
}

.page-support__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 40px;
}

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

.page-support__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

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

.page-support__description {
  font-size: 1.2em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

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

/* FAQ Section */
.page-support__faq-section {
  padding: 60px 20px;
  background-color: #0A4B2C; /* Deep Green */
}

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

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

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  font-size: 1.1em;
  list-style: none;
}

.page-support__faq-question::-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: 0 25px 18px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
}

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

.page-support__faq-answer a {
  color: #2AD16F; /* Lighter green from button gradient */
  text-decoration: underline;
}

/* Guides Section */
.page-support__guides-section {
  padding: 60px 20px;
  background-color: #08160F; /* Background */
}

.page-support__guides-content {
  flex: 1;
}

.page-support__guides-image-wrapper {
  flex: 0 0 40%;
  max-width: 40%;
}

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

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

.page-support__guide-card {
  background-color: #11271B; /* Card BG */
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #2E7A4E; /* Border */
}

/* Contact Section */
.page-support__contact-section {
  padding: 60px 20px;
  background-color: #0A4B2C; /* Deep Green */
}

.page-support__contact-image-wrapper {
  flex: 0 0 45%;
  max-width: 45%;
}

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

.page-support__contact-content {
  flex: 1;
}

.page-support__contact-methods-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.page-support__contact-method-item {
  background-color: #11271B; /* Card BG */
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #2E7A4E; /* Border */
  text-align: center;
}

.page-support__contact-method-item .page-support__card-title {
  margin-top: 15px;
}

/* Policies Section */
.page-support__policies-section {
  padding: 60px 20px;
  background-color: #08160F; /* Background */
}

.page-support__policy-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-support__policy-item {
  background-color: #11271B; /* Card BG */
  padding: 15px 25px;
  border-radius: 8px;
  border: 1px solid #2E7A4E; /* Border */
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
}

.page-support__policy-item a {
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  font-weight: bold;
}

.page-support__policy-item a:hover {
  text-decoration: underline;
  color: #2AD16F; /* Lighter green from button gradient */
}

/* Why Choose Section */
.page-support__why-choose-section {
  padding: 60px 20px;
  background-color: #0A4B2C; /* Deep Green */
}

.page-support__why-choose-content {
  flex: 1;
}

.page-support__why-choose-image-wrapper {
  flex: 0 0 40%;
  max-width: 40%;
}

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

.page-support__benefit-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-support__benefit-item {
  background-color: #11271B; /* Card BG */
  padding: 15px 20px;
  border-radius: 8px;
  border: 1px solid #2E7A4E; /* Border */
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-support__benefit-item::before {
  content: '✓';
  color: #2AD16F; /* Lighter green from button gradient */
  font-weight: bold;
  font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-support__container--flex,
  .page-support__container--flex-reverse,
  .page-support__container--flex-contact {
    flex-direction: column;
    gap: 30px;
  }

  .page-support__guides-image-wrapper,
  .page-support__contact-image-wrapper,
  .page-support__why-choose-image-wrapper {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section,
  .page-support__faq-section,
  .page-support__guides-section,
  .page-support__contact-section,
  .page-support__policies-section,
  .page-support__why-choose-section {
    padding: 40px 15px;
  }

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

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

  .page-support__description {
    font-size: 1em;
  }

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

  .page-support__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

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

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

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

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

  .page-support__guide-cards,
  .page-support__contact-methods-list {
    grid-template-columns: 1fr;
  }

  .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__faq-section,
  .page-support__guides-section,
  .page-support__contact-section,
  .page-support__policies-section,
  .page-support__why-choose-section,
  .page-support__hero-image-wrapper,
  .page-support__guides-image-wrapper,
  .page-support__contact-image-wrapper,
  .page-support__why-choose-image-wrapper,
  .page-support__guide-card,
  .page-support__contact-method-item,
  .page-support__policy-item,
  .page-support__benefit-item {
    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;
  }

  .page-support__contact-method-item .page-support__card-title,
  .page-support__contact-method-item .page-support__card-text {
    text-align: left;
  }

  .page-support__contact-method-item .page-support__btn-primary {
    width: auto !important;
    margin: 0 auto;
  }

  .page-support__contact-content {
    order: 2; /* Ensure content is below image on mobile */
  }
  .page-support__contact-image-wrapper {
    order: 1;
  }
}