/* style/support.css */
.page-support {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Body Background */
}

.page-support__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px; /* Small top padding, larger bottom */
  text-align: center;
  background-color: #0A0A0A;
  overflow: hidden;
}

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

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

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

.page-support__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #FFD36B; /* Auxiliary color for titles */
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-support__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #FFF6D6;
}

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

.page-support__cta-buttons--centered {
  margin-top: 40px;
}

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

.page-support__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #ffffff; /* White text for buttons */
  border: 2px solid transparent;
}

.page-support__btn-primary:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
  box-shadow: 0 0 15px rgba(255, 211, 107, 0.7);
}

.page-support__btn-secondary {
  background: #111111; /* Card BG */
  color: #F2C14E; /* Main color */
  border: 2px solid #F2C14E;
}

.page-support__btn-secondary:hover {
  background: #F2C14E;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.7);
}

.page-support__section {
  padding: 60px 20px;
  background-color: #0A0A0A;
}

.page-support__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-support__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #F2C14E; /* Main color for section titles */
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
}

.page-support__section-description {
  font-size: 1.1rem;
  color: #FFF6D6;
  text-align: center;
  margin-bottom: 40px;
}

.page-support__text-block {
  font-size: 1rem;
  color: #FFF6D6;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-support__text-block strong.page-support__highlight {
  color: #FFD36B; /* Glow color for highlights */
  font-weight: bold;
}

.page-support__image-wrapper {
  margin: 30px 0;
  text-align: center;
}

.page-support__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

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

.page-support__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: bold;
  color: #F2C14E; /* Main color for question text */
  background-color: #111111;
  transition: background-color 0.3s ease;
}

.page-support__faq-question:hover {
  background-color: #1a1a1a;
}

.page-support__faq-question h3 {
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.page-support__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FFD36B; /* Glow color for toggle icon */
}

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

.page-support__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6;
}

.page-support__faq-item.active .page-support__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value for expansion */
  padding: 15px 20px 20px;
}

.page-support__faq-answer p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.page-support__contact-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.2);
}

.page-support__contact-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  padding: 10px;
  background-color: rgba(242, 193, 78, 0.1);
}

.page-support__card-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #FFD36B; /* Glow color for card titles */
  margin-bottom: 15px;
}

.page-support__card-description {
  font-size: 0.95rem;
  color: #FFF6D6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-support__contact-card .page-support__btn-primary {
  width: 100%;
}

.page-support__text-block--note {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 40px;
  color: rgba(255, 246, 214, 0.7);
}

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

.page-support__resource-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 211, 107, 0.2);
}

.page-support__resource-card .page-support__card-title {
  margin-bottom: 10px;
}

.page-support__resource-card .page-support__card-title a {
  color: #FFD36B;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-support__resource-card .page-support__card-title a:hover {
  color: #F2C14E;
}

/* Commitment Section */
.page-support__commitment-section .page-support__text-block {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__hero-content {
    padding: 0 25px;
  }
  .page-support__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-support__section-title {
    font-size: clamp(1.6rem, 4.5vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding: 10px 15px 40px;
  }
  .page-support__hero-image-wrapper {
    margin-bottom: 20px;
  }
  .page-support__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }
  .page-support__hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  .page-support__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  .page-support__btn-primary,
  .page-support__btn-secondary {
    width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  .page-support__section {
    padding: 40px 15px;
  }
  .page-support__container {
    padding: 0;
  }
  .page-support__section-title {
    font-size: clamp(1.5rem, 5.5vw, 2.2rem);
    margin-bottom: 25px;
  }
  .page-support__section-description,
  .page-support__text-block {
    font-size: 0.95rem;
  }

  /* Mobile image and video responsiveness */
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-support video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  .page-support__section,
  .page-support__card,
  .page-support__container,
  .page-support__faq-item,
  .page-support__contact-card,
  .page-support__resource-card,
  .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;
  }
  .page-support__faq-question {
    padding: 15px;
  }
  .page-support__faq-answer {
    padding: 0 15px;
  }
  .page-support__faq-item.active .page-support__faq-answer {
    padding: 15px 15px 15px;
  }
  .page-support__contact-grid, .page-support__resource-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-support__contact-card,
  .page-support__resource-card {
    padding: 25px 15px;
  }
  .page-support__hero-section,
  .page-support__about-pagcor,
  .page-support__faq-section,
  .page-support__contact-section,
  .page-support__resources-section,
  .page-support__commitment-section {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .page-support__main-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }
  .page-support__section-title {
    font-size: clamp(1.4rem, 6.5vw, 2rem);
  }
  .page-support__hero-description,
  .page-support__section-description,
  .page-support__text-block,
  .page-support__card-description,
  .page-support__faq-question,
  .page-support__faq-answer p {
    font-size: 0.9rem;
  }
  .page-support__btn-primary,
  .page-support__btn-secondary {
    font-size: 0.9rem;
  }
}