/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-page .faq-search {
  background: var(--bg-color3);
  border: 1px solid var(--border-color1);
  border-radius: 9999px;
  padding: 12px 45px 12px 20px;
  color: rgb(var(--white));
  font-size: 0.9rem;
  outline: none;
  width: 100%;
}

.faq-page .faq-search-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.faq-page .faq-tab {
  padding: 8px 18px;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s;
  background: var(--bg-color3);
  color: var(--body-color);
}

.faq-page .faq-tab.active {
  background: linear-gradient(135deg, rgb(var(--primary-color)), #332f8c);
  color: #fff;
}

.faq-page .accordion-button {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 20px;
}

.faq-page .accordion-body {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--body-color);
}

.faq-page .accordion-item {
  border: 1px solid var(--border-color1);
}

.faq-page .faq-cta {
  background: linear-gradient(135deg, rgb(var(--primary-color)), #332f8c);
}

.faq-page .faq-cta-btn {
  background: var(--vivid-orange);
  color: #fff;
  padding: 10px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
}

.faq-page .faq-cta-btn:hover {
  color: #fff;
  opacity: 0.9;
}



/* ============================================================
   SUPPORT PAGE
   ============================================================ */
.support-header {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(180deg, rgba(53, 46, 41, 0.8) 0%, transparent 100%);
  border-radius: 20px;
  margin-bottom: 30px;
}

.support-hero-wrapper {
  /* placeholder: used with Bootstrap utilities in template */
}

.support-hero-img {
  max-height: 250px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
}

.support-speech-bubble {
  position: absolute;
  top: 20px;
  left: -80px;
  background: #fff;
  color: #333;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  animation: support-float 3s ease-in-out infinite;
}

.support-speech-bubble::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 10px 0 10px 15px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
}

@keyframes support-float {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.support-label {
  color: #ff6b6b;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.support-title {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(to right, #ff6b6b, #ffa500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.support-subtitle {
  color: #888;
  font-size: 1rem;
}

/* Support Cards Grid */
.support-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 40px;
}

.support-card {
  background: linear-gradient(180deg, #352E29 0%, #1E1E1E 100%);
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.support-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 107, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.support-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.8rem;
  color: #fff;
}

.support-faq-icon {
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
}

.support-wa-icon {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.support-ig-icon {
  background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
}

.support-tiktok-icon {
  background: linear-gradient(135deg, #000, #25F4EE);
}

.support-card h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.support-card p {
  color: #888;
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.4;
}

/* Section Title */
.support-section-title {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

/* Quick Contact Section */
.support-quick-contact {
  margin-bottom: 40px;
}

.support-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.support-contact-item {
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #352E29 0%, #1E1E1E 100%);
  border-radius: 12px;
  padding: 18px 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.support-contact-item:hover {
  border-color: rgba(255, 107, 107, 0.3);
  transform: translateX(5px);
}

.support-contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  flex-shrink: 0;
}

.support-faq-bg {
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
}

.support-email-bg {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.support-wa-bg {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.support-ig-bg {
  background: linear-gradient(135deg, #833AB4, #E1306C);
}

.support-contact-info {
  flex: 1;
  margin-left: 15px;
}

.support-contact-info h5 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.support-contact-info p {
  color: #888;
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.4;
}

.support-contact-item > .fa-chevron-right {
  color: #666;
  font-size: 1.2rem;
}

/* Feedback Section */
.support-feedback-section {
  margin-bottom: 30px;
}

.support-feedback-card {
  background: linear-gradient(180deg, #352E29 0%, #1E1E1E 100%);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.support-feedback-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: #fff;
}

.support-feedback-card h4 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.support-feedback-card p {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.support-btn-feedback {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.support-btn-feedback:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
  color: #fff;
}

/* Support Page Responsive */
@media (max-width: 768px) {
  .support-title {
    font-size: 1.8rem;
  }

  .support-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .support-card {
    padding: 20px 15px;
  }

  .support-card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .support-card h4 {
    font-size: 1rem;
  }

  .support-card p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .support-header {
    padding: 30px 15px;
  }

  .support-title {
    font-size: 1.5rem;
  }

  .support-contact-item {
    padding: 15px;
  }

  .support-contact-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}
