/* Start custom CSS for html, class: .elementor-element-2e082cf *//* ===== CUSTOMER SUPPORT PAGE STYLES ===== */
.customer-support-page {
  background: #000;
  color: #fff;
  padding: 60px 20px;
  font-family: 'Arial', sans-serif;
}

.customer-support-page .container {
  max-width: 1000px;
  margin: 0 auto;
}

/* --- JUDUL HALAMAN --- */
.customer-support-page .page-title {
  font-size: 3.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #9400d3);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient 3s ease infinite;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

@keyframes gradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* --- SUBJUDUL --- */
.customer-support-page .subtitle {
  font-size: 1.5rem;
  text-align: center;
  color: #ccc;
  margin-bottom: 50px;
  font-weight: 500;
}

/* --- SECTION TITLE --- */
.customer-support-page .section-title {
  font-size: 2rem;
  color: #fff;
  margin: 40px 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #ff0096;
  display: inline-block;
}

/* --- KONTAK INFO --- */
.customer-support-page .contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0;
  padding: 30px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  border: 1px solid rgba(255, 0, 150, 0.3);
}

.customer-support-page .contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
  color: #ccc;
}

.customer-support-page .contact-item i {
  color: #ff0096;
  font-size: 1.5rem;
  min-width: 30px;
  text-align: center;
}

.customer-support-page .contact-item strong {
  color: #fff;
  margin-right: 10px;
}

.customer-support-page .contact-item a {
  color: #00ffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.customer-support-page .contact-item a:hover {
  color: #ff0096;
}

/* --- MISSION SECTION --- */
.customer-support-page .mission-section {
  margin-top: 50px;
}

.customer-support-page .mission-text {
  color: #ccc;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 20px;
}

.customer-support-page .mission-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.customer-support-page .mission-list li {
  color: #ccc;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.customer-support-page .mission-list li::before {
  content: '●';
  color: #ff0096;
  position: absolute;
  left: 0;
  font-size: 0.8rem;
}

/* --- TAGLINE --- */
.customer-support-page .tagline {
  font-size: 1.3rem;
  color: #fff;
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  border-top: 1px solid rgba(255, 0, 150, 0.3);
  padding-top: 20px;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .customer-support-page .page-title {
    font-size: 2.5rem;
  }

  .customer-support-page .subtitle {
    font-size: 1.2rem;
  }

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

  .customer-support-page .contact-info {
    padding: 20px;
  }
}
 /* ===== RAINBOW TAGLINE ===== */
.customer-support-page .tagline {
  font-size: 1.3rem;
  color: transparent !important;
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  border-top: 1px solid rgba(255, 0, 150, 0.3);
  padding-top: 20px;
  background: linear-gradient(45deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #9400d3) !important;
  background-size: 400% 400% !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  animation: gradient 3s ease infinite !important;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3) !important;
}
/* ===== TAGLINE RAINBOW HUE-ROTATE ===== */
.customer-support-page .tagline.rainbow-hue {
  font-size: 1.3rem;
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  border-top: 1px solid rgba(255, 0, 150, 0.3);
  padding-top: 20px;
  color: #ff0000 !important; /* Warna awal: merah */
  animation: hueRotate 5s linear infinite !important;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3) !important;
}

@keyframes hueRotate {
  0% { color: #ff0000; }    /* Merah */
  14% { color: #ff7f00; }   /* Oranye */
  28% { color: #ffff00; }   /* Kuning */
  42% { color: #00ff00; }   /* Hijau */
  57% { color: #0000ff; }   /* Biru */
  71% { color: #4b0082; }   /* Ungu */
  85% { color: #9400d3; }   /* Ungu tua */
  100% { color: #ff0000; }  /* Kembali ke merah */
}/* End custom CSS */