/* style/support.css */
.page-support {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #F8F8F8;
}

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

.page-support__hero-section {
  background-color: #0A2239; /* Main color */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 34, 57, 0.9), rgba(224, 180, 0, 0.2)); /* Gradient with primary and secondary */
  z-index: 0;
}

.page-support__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #E0B400; /* Secondary color for emphasis */
  position: relative;
  z-index: 1;
  font-weight: bold;
}

.page-support__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  position: relative;
  z-index: 1;
  color: #D3D3D3;
}

.page-support__hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.page-support__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-support__btn--primary {
  background-color: #E0B400; /* Secondary color */
  color: #0A2239; /* Primary color for text */
}

.page-support__btn--primary:hover {
  background-color: #F0C600;
  transform: translateY(-3px);
}

.page-support__btn--secondary {
  background-color: #0A2239; /* Primary color */
  color: #E0B400; /* Secondary color for text */
  border: 2px solid #E0B400;
}

.page-support__btn--secondary:hover {
  background-color: #1A3C5B;
  transform: translateY(-3px);
}

.page-support__section-title {
  font-size: 2.5em;
  color: #0A2239; /* Primary color */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
  position: relative;
}

.page-support__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #E0B400; /* Secondary color */
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

.page-support__section-intro {
  text-align: center;
  font-size: 1.1em;
  color: #555;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-support__faq-section, .page-support__contact-section, .page-support__guide-section, .page-support__troubleshooting-section, .page-support__commitment-section {
  padding: 40px 0;
  background-color: #FFFFFF;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border-radius: 10px;
}

.page-support__faq-category {
  margin-bottom: 40px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.page-support__faq-category:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.page-support__category-title {
  font-size: 2em;
  color: #0A2239; /* Primary color */
  margin-bottom: 25px;
  text-align: center;
}

.page-support__faq-item {
  background-color: #FDFDFD;
  border: 1px solid #EAEAEA;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  transition: box-shadow 0.3s ease;
}

.page-support__faq-item:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-support__faq-question {
  font-size: 1.3em;
  color: #E0B400; /* Secondary color */
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.page-support__faq-question::before {
  content: '▶'; /* Unicode right-pointing triangle */
  display: inline-block;
  margin-right: 10px;
  color: #0A2239;
  font-size: 0.8em;
  transition: transform 0.3s ease;
}

.page-support__faq-item.active .page-support__faq-question::before {
  transform: rotate(90deg);
}

.page-support__faq-answer {
  font-size: 1em;
  color: #555;
  padding-left: 30px;
  display: none; /* Hidden by default, shown by JS */
}

.page-support__faq-answer a {
  color: #0A2239;
  text-decoration: underline;
}

.page-support__faq-answer a:hover {
  color: #E0B400;
}

.page-support__faq-item.active .page-support__faq-answer {
  display: block;
}

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

.page-support__contact-card {
  background-color: #FDFDFD;
  border: 1px solid #EAEAEA;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-support__contact-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.page-support__card-title {
  font-size: 1.5em;
  color: #0A2239; /* Primary color */
  margin-bottom: 15px;
}

.page-support__card-description {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 25px;
}

.page-support__btn--chat, .page-support__btn--email, .page-support__btn--phone {
  background-color: #E0B400; /* Secondary color */
  color: #0A2239; /* Primary color for text */
  padding: 12px 25px;
  font-size: 0.95em;
  border-radius: 6px;
  border: none;
}

.page-support__btn--chat:hover, .page-support__btn--email:hover, .page-support__btn--phone:hover {
  background-color: #F0C600;
  transform: translateY(-2px);
}

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

.page-support__guide-card {
  background-color: #FDFDFD;
  border: 1px solid #EAEAEA;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.page-support__guide-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #EAEAEA;
}

.page-support__guide-card .page-support__card-title {
  padding: 20px 20px 10px;
  margin-bottom: 0;
  text-align: left;
  font-size: 1.3em;
}

.page-support__guide-card .page-support__card-description {
  padding: 0 20px 20px;
  text-align: left;
  color: #666;
  font-size: 0.9em;
}

.page-support__btn--guide {
  display: block;
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  background-color: #0A2239; /* Primary color */
  color: #E0B400; /* Secondary color */
  padding: 12px 20px;
  text-align: center;
  border-radius: 6px;
  font-size: 0.95em;
}

.page-support__btn--guide:hover {
  background-color: #1A3C5B;
  transform: translateY(-2px);
}

.page-support__troubleshooting-section {
  background-color: #FDFDFD;
}

.page-support__troubleshooting-item {
  background-color: #FFFFFF;
  border: 1px solid #EAEAEA;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.page-support__troubleshooting-heading {
  font-size: 1.4em;
  color: #0A2239; /* Primary color */
  margin-bottom: 10px;
}

.page-support__troubleshooting-text {
  font-size: 1em;
  color: #555;
}

.page-support__commitment-section {
  background-color: #0A2239; /* Primary color */
  color: #FFFFFF;
  text-align: center;
  padding: 60px 0;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.page-support__commitment-section .page-support__section-title {
  color: #E0B400; /* Secondary color */
}

.page-support__commitment-section .page-support__section-title::after {
  background-color: #FFFFFF;
}

.page-support__commitment-section .page-support__section-intro, .page-support__commitment-section .page-support__text {
  color: #D3D3D3;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

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

.page-support__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-support__hero-title {
    font-size: 2.8em;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__contact-methods, .page-support__guide-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-support__hero-title {
    font-size: 2.2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__category-title {
    font-size: 1.6em;
  }
  .page-support__faq-question {
    font-size: 1.1em;
  }
  .page-support__contact-methods, .page-support__guide-grid {
    grid-template-columns: 1fr;
  }
  .page-support__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__hero-description {
    font-size: 0.9em;
  }
  .page-support__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 1.5em;
  }
  .page-support__category-title {
    font-size: 1.4em;
  }
  .page-support__faq-item, .page-support__contact-card, .page-support__guide-card, .page-support__troubleshooting-item {
    padding: 15px;
  }
  .page-support__guide-image {
    height: 150px;
  }
  .page-support__guide-card .page-support__card-title {
    font-size: 1.1em;
  }
  .page-support__guide-card .page-support__card-description {
    font-size: 0.85em;
  }
}