/* style/support.css */

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

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

.page-support__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #0A4B2C; /* Deep Green */
  overflow: hidden;
}

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

.page-support__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 800px;
  margin-top: -100px; /* Pull content up slightly over image for visual appeal */
  position: relative;
  z-index: 1; /* Ensure content is above image if any overlap */
  background: linear-gradient(0deg, rgba(8, 22, 15, 0.9) 0%, rgba(8, 22, 15, 0.7) 100%); /* Subtle gradient for readability */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-support__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

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

.page-support__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-support__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-support__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
  line-height: 1.3;
}

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

.page-support__services-section, 
.page-support__contact-channels, 
.page-support__faq-section, 
.page-support__commitment-section, 
.page-support__tips-section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
}

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

.page-support__service-card, 
.page-support__channel-item, 
.page-support__commitment-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__service-card:hover, 
.page-support__channel-item:hover, 
.page-support__commitment-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-support__service-icon, 
.page-support__channel-icon, 
.page-support__commitment-icon {
  width: 100%;
  height: auto;
  max-width: 250px; /* Keep icons/images a reasonable size within card */
  margin-bottom: 20px;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-support__service-card p, 
.page-support__channel-item p, 
.page-support__commitment-item p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
}

.page-support__email-address, 
.page-support__phone-number {
  color: #57E38D; /* Glow */
  font-weight: bold;
  margin-top: 10px;
  display: block;
}

.page-support__btn-secondary {
  display: inline-block;
  background: transparent;
  color: #57E38D; /* Glow */
  border: 2px solid #57E38D; /* Glow */
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  margin-top: 15px;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-support__btn-secondary:hover {
  background: #57E38D; /* Glow */
  color: #08160F; /* Background */
  box-shadow: 0 4px 15px rgba(87, 227, 141, 0.4);
}

.page-support__faq-list {
  margin-top: 30px;
}

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

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

.page-support__faq-question::-webkit-details-marker { /* Hide default marker for Chrome */
  display: none;
}

.page-support__faq-item[open] .page-support__faq-question {
  background-color: #1E3A2A; /* Divider */
}

.page-support__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #F2C14E; /* Gold */
}

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

.page-support__faq-item[open] .page-support__faq-answer {
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-support__tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-support__tip-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-support__tip-item p {
  color: #A7D9B8; /* Text Secondary */
}

.page-support__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: #0A4B2C; /* Deep Green */
}

.page-support__cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support__cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  box-sizing: border-box;
  overflow: hidden;
}

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

.page-support__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-support__hero-content {
    margin-top: -50px;
    padding: 30px 15px;
  }

  .page-support__main-title {
    font-size: clamp(1.8em, 5vw, 2.5em);
  }

  .page-support__section-title {
    font-size: clamp(1.6em, 4.5vw, 2.2em);
  }

  .page-support__services-grid,
  .page-support__channels-grid,
  .page-support__commitment-grid,
  .page-support__tips-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-support__hero-content {
    margin-top: 0;
    padding: 20px 15px;
    background: rgba(8, 22, 15, 0.9);
  }

  .page-support__hero-image {
    max-height: 350px;
  }

  .page-support__services-section,
  .page-support__contact-channels,
  .page-support__faq-section,
  .page-support__commitment-section,
  .page-support__tips-section,
  .page-support__cta-section {
    padding: 40px 0;
  }

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

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

  /* Image containers responsive */
  .page-support__hero-section,
  .page-support__services-section,
  .page-support__contact-channels,
  .page-support__faq-section,
  .page-support__commitment-section,
  .page-support__tips-section,
  .page-support__cta-section,
  .page-support__service-card,
  .page-support__channel-item,
  .page-support__commitment-item,
  .page-support__tip-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Buttons responsive */
  .page-support__cta-button,
  .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__cta-buttons {
    flex-direction: column !important;
    gap: 15px !important;
  }

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

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

  .page-support__main-title {
    font-size: clamp(1.6em, 6vw, 2.2em);
  }

  .page-support__section-title {
    font-size: clamp(1.4em, 5.5vw, 2em);
  }
}

@media (max-width: 480px) {
  .page-support__main-title {
    font-size: clamp(1.4em, 7vw, 1.8em);
  }

  .page-support__section-title {
    font-size: clamp(1.2em, 6.5vw, 1.6em);
  }

  .page-support__services-grid,
  .page-support__channels-grid,
  .page-support__commitment-grid,
  .page-support__tips-list {
    grid-template-columns: 1fr;
  }

  .page-support__service-card,
  .page-support__channel-item,
  .page-support__commitment-item,
  .page-support__tip-item {
    padding: 20px;
  }
}