/* ========================================
   HELP PAGE STYLES
   Help center categories and content
   ======================================== */

/* Help Content */
.help-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 2;
  animation: fadeIn 0.6s ease-out forwards;
}

.help-search {
  text-align: center;
  margin-bottom: 80px;
}

.search-box {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.search-box i {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  opacity: 0.6;
}

.search-box input {
  width: 100%;
  padding: 18px 28px 18px 60px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(30px);
}

.search-box input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.search-box input::placeholder {
  color: #ffffff;
  opacity: 0.6;
}

.help-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
  animation: fadeIn 0.8s ease-out forwards;
}

.help-category {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(30px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: translateZ(0);
  backface-visibility: hidden;
}

.help-category::before {
  display: none;
}

.help-category:hover {
}

.category-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 2;
}

.help-category h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.help-category h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1rem 0 0.5rem 0;
  color: #ffffff;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.help-category ul {
  list-style: none;
  position: relative;
  z-index: 2;
}

.help-category ul li {
  margin-bottom: 0.5rem;
}

.help-category p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #fff;
  opacity: 0.8;
  line-height: 1.6;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.help-category ul li a {
  color: #ffffff;
  opacity: 0.8;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.help-category ul li a:hover {
  opacity: 1;
}

.help-contact {
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  padding: 50px 2rem;
  backdrop-filter: blur(30px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: fadeIn 1s ease-out forwards;
}

.help-contact h2 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
}

.help-contact p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
  opacity: 0.9;
  margin-bottom: 50px;
  font-weight: 400;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.contact-options {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-option-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 28px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.contact-option-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.8s ease;
}

.contact-option-btn:hover::before {
  left: 100%;
}

.contact-option-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .help-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .help-content {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .help-categories {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-options {
    flex-direction: column;
    align-items: center;
  }

  .help-content {
    padding: 0 25px;
    gap: 40px;
  }

  .help-search {
    margin-bottom: 60px;
  }
}

@media (max-width: 480px) {
  .category-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .help-contact {
    padding: 40px 1.5rem;
  }

  .help-content {
    padding: 0 20px;
    gap: 30px;
  }

  .help-search {
    margin-bottom: 50px;
  }
}
