/* style/help-center-technical-support.css */

.page-help-center-technical-support {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1A202C;
  line-height: 1.6;
}

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

.page-help-center-technical-support__hero {
  background: linear-gradient(135deg, #1A202C 0%, #333C4A 100%);
  padding: 100px 0;
  text-align: center;
  color: #FFD700;
  position: relative;
  overflow: hidden;
}

.page-help-center-technical-support__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,dark_pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-help-center-technical-support__hero > * {
  position: relative;
  z-index: 1;
}

.page-help-center-technical-support__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  line-height: 1.2;
}

.page-help-center-technical-support__description {
  font-size: 1.15em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #B0B0B0;
}

.page-help-center-technical-support__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-help-center-technical-support__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.05em;
  cursor: pointer;
  border: none;
}

.page-help-center-technical-support__btn--primary {
  background-color: #FFD700;
  color: #1A202C;
}

.page-help-center-technical-support__btn--primary:hover {
  background-color: #E6C200;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-help-center-technical-support__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-help-center-technical-support__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-help-center-technical-support__btn--small {
  padding: 10px 20px;
  font-size: 0.95em;
  border-radius: 5px;
  background-color: #FFD700;
  color: #1A202C;
  margin-top: 20px;
}

.page-help-center-technical-support__btn--small:hover {
  background-color: #E6C200;
  transform: translateY(-1px);
}

.page-help-center-technical-support__section {
  padding: 80px 0;
}

.page-help-center-technical-support__section:nth-of-type(even) {
  background-color: #2A313C;
}

.page-help-center-technical-support__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.page-help-center-technical-support__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 20px auto 0 auto;
  border-radius: 2px;
}

.page-help-center-technical-support__common-issues .page-help-center-technical-support__description {
  text-align: center;
  margin-bottom: 60px;
}

.page-help-center-technical-support__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-help-center-technical-support__grid-item {
  background-color: #1A202C;
  border: 1px solid #3A4451;
  border-radius: 10px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-help-center-technical-support__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-help-center-technical-support__icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: invert(80%) sepia(100%) saturate(500%) hue-rotate(30deg) brightness(100%) contrast(100%); /* Gold tint for icons */
}

.page-help-center-technical-support__item-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-help-center-technical-support__item-description {
  color: #B0B0B0;
  margin-bottom: 20px;
}

.page-help-center-technical-support__list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.page-help-center-technical-support__list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #C0C0C0;
}

.page-help-center-technical-support__list li::before {
  content: '✓';
  color: #FFD700;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-help-center-technical-support__self-help .page-help-center-technical-support__description {
  text-align: center;
  margin-bottom: 60px;
}

.page-help-center-technical-support__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-help-center-technical-support__step-item {
  background-color: #1A202C;
  border: 1px solid #3A4451;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-help-center-technical-support__step-number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #FFD700;
  color: #1A202C;
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-help-center-technical-support__step-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-help-center-technical-support__contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-help-center-technical-support__contact-item {
  background-color: #1A202C;
  border: 1px solid #3A4451;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-help-center-technical-support__contact-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: invert(80%) sepia(100%) saturate(500%) hue-rotate(30deg) brightness(100%) contrast(100%); /* Gold tint */
}

.page-help-center-technical-support__contact-item .page-help-center-technical-support__item-title {
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-help-center-technical-support__contact-item p {
  color: #C0C0C0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-help-center-technical-support__why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-help-center-technical-support__why-item {
  background-color: #2A313C;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #4A5568;
}

.page-help-center-technical-support__why-item h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-help-center-technical-support__why-item p {
  color: #C0C0C0;
}

.page-help-center-technical-support__why-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 15px;
  filter: invert(80%) sepia(100%) saturate(500%) hue-rotate(30deg) brightness(100%) contrast(100%); /* Gold tint */
}

.page-help-center-technical-support__cta {
  text-align: center;
  background-color: #1A202C;
  padding: 80px 0;
}

.page-help-center-technical-support__cta .page-help-center-technical-support__section-title {
  margin-bottom: 30px;
}

.page-help-center-technical-support__cta .page-help-center-technical-support__description {
  margin-bottom: 40px;
  color: #C0C0C0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-help-center-technical-support__title {
    font-size: 2.5em;
  }

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

  .page-help-center-technical-support__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-help-center-technical-support__btn {
    width: 80%;
    margin: 0 auto;
  }

  .page-help-center-technical-support__grid,
  .page-help-center-technical-support__steps,
  .page-help-center-technical-support__contact-methods,
  .page-help-center-technical-support__why-grid {
    grid-template-columns: 1fr;
  }

  .page-help-center-technical-support__section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .page-help-center-technical-support__title {
    font-size: 2em;
  }

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

  .page-help-center-technical-support__hero {
    padding: 60px 0;
  }

  .page-help-center-technical-support__btn {
    width: 90%;
  }

  .page-help-center-technical-support__grid-item,
  .page-help-center-technical-support__step-item,
  .page-help-center-technical-support__contact-item,
  .page-help-center-technical-support__why-item {
    padding: 20px;
  }
}