/* style/vip-club-vip-customer-service.css */
.page-vip-club-vip-customer-service {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

.page-vip-club-vip-customer-service-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-vip-club-vip-customer-service-section {
  padding: 60px 0;
  text-align: center;
}

.page-vip-club-vip-customer-service-section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold */
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-vip-club-vip-customer-service-hero {
  position: relative;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #000000 0%, #333333 100%); /* Dark gradient */
  color: #ffffff;
  overflow: hidden;
}

.page-vip-club-vip-customer-service-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-vip-club-vip-customer-service-hero .page-vip-club-vip-customer-service-container {
  position: relative;
  z-index: 1;
}

.page-vip-club-vip-customer-service-hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-vip-club-vip-customer-service-hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-vip-club-vip-customer-service-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
}

.page-vip-club-vip-customer-service-button--primary {
  background-color: #FFD700; /* Gold */
  color: #000000; /* Black */
}

.page-vip-club-vip-customer-service-button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-vip-club-vip-customer-service-button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700; /* Gold */
  margin-left: 20px;
}

.page-vip-club-vip-customer-service-button--secondary:hover {
  background-color: #FFD700;
  color: #000000;
  transform: translateY(-2px);
}

.page-vip-club-vip-customer-service-intro p {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 20px;
  text-align: left;
}

.page-vip-club-vip-customer-service-intro p:last-child {
  margin-bottom: 0;
}

.page-vip-club-vip-customer-service-link {
  color: #DC143C; /* Accent Red */
  text-decoration: none;
  font-weight: bold;
}

.page-vip-club-vip-customer-service-link:hover {
  text-decoration: underline;
}

.page-vip-club-vip-customer-service-keyword {
  font-weight: bold;
  color: #DC143C; /* Accent Red */
}

.page-vip-club-vip-customer-service-features--dark-bg {
  background-color: #000000; /* Black */
  color: #ffffff;
}

.page-vip-club-vip-customer-service-features--dark-bg .page-vip-club-vip-customer-service-section-title {
  color: #FFD700; /* Gold */
}

.page-vip-club-vip-customer-service-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-vip-club-vip-customer-service-feature-item {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-vip-club-vip-customer-service-feature-item:hover {
  transform: translateY(-5px);
}

.page-vip-club-vip-customer-service-feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-vip-club-vip-customer-service-feature-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
}

.page-vip-club-vip-customer-service-feature-item p {
  color: #cccccc;
  font-size: 1em;
}

.page-vip-club-vip-customer-service-benefits-details {
  background-color: #f0f0f0;
  padding-bottom: 80px;
}

.page-vip-club-vip-customer-service-benefits-details p {
  text-align: left;
  font-size: 1.1em;
  color: #444;
  margin-bottom: 20px;
}

.page-vip-club-vip-customer-service-benefit-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 30px;
}

.page-vip-club-vip-customer-service-benefit-list li {
  background: #ffffff;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  font-size: 1.1em;
  color: #333;
}

.page-vip-club-vip-customer-service-benefit-list li::before {
  content: '✔';
  color: #DC143C; /* Accent Red */
  font-weight: bold;
  margin-right: 15px;
  font-size: 1.2em;
  line-height: 1.2;
}

.page-vip-club-vip-customer-service-how-to-vip--gold-bg {
  background: linear-gradient(135deg, #FFD700 0%, #e6c200 100%); /* Gold gradient */
  color: #000000;
  position: relative;
  overflow: hidden;
}

.page-vip-club-vip-customer-service-how-to-vip--gold-bg .page-vip-club-vip-customer-service-section-title {
  color: #000000;
  text-shadow: none;
}

.page-vip-club-vip-customer-service-how-to-vip--gold-bg p {
  color: #333;
  font-size: 1.1em;
  margin-bottom: 20px;
}

.page-vip-club-vip-customer-service-how-to-vip--gold-bg .page-vip-club-vip-customer-service-keyword {
  color: #DC143C;
}

.page-vip-club-vip-customer-service-step-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-vip-club-vip-customer-service-step-list li {
  counter-increment: step-counter;
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  position: relative;
  min-width: 280px;
  max-width: 350px;
  flex: 1;
  font-size: 1.1em;
  color: #333;
}

.page-vip-club-vip-customer-service-step-list li::before {
  content: counter(step-counter);
  position: absolute;
  top: -15px;
  left: -15px;
  background-color: #DC143C; /* Accent Red */
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.3em;
  border: 3px solid #FFD700;
}

.page-vip-club-vip-customer-service-how-to-vip-image {
  max-width: 80%;
  height: auto;
  margin: 40px auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-vip-club-vip-customer-service-commitment-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-vip-club-vip-customer-service-commitment-list li {
  background: #ffffff;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #DC143C; /* Accent Red */
  border-radius: 5px;
  text-align: left;
  font-size: 1.1em;
  color: #333;
}

.page-vip-club-vip-customer-service-faq-section--dark-bg {
  background-color: #000000; /* Black */
  color: #ffffff;
}

.page-vip-club-vip-customer-service-faq-section--dark-bg .page-vip-club-vip-customer-service-section-title {
  color: #FFD700; /* Gold */
}

.page-vip-club-vip-customer-service-faq-item {
  background-color: #1a1a1a;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  text-align: left;
}

.page-vip-club-vip-customer-service-faq-question {
  padding: 20px;
  cursor: pointer;
  font-size: 1.3em;
  color: #FFD700; /* Gold */
  position: relative;
  margin: 0;
  background-color: #222;
  transition: background-color 0.3s ease;
}

.page-vip-club-vip-customer-service-faq-question:hover {
  background-color: #333;
}

.page-vip-club-vip-customer-service-faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  font-weight: bold;
  color: #DC143C;
}

.page-vip-club-vip-customer-service-faq-question.active::after {
  content: '-';
}

.page-vip-club-vip-customer-service-faq-answer {
  padding: 0 20px 20px;
  font-size: 1.1em;
  color: #cccccc;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-vip-club-vip-customer-service-faq-answer.active {
  max-height: 200px; /* Adjust based on content */
  padding: 0 20px 20px;
}

.page-vip-club-vip-customer-service-cta-section {
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  color: #ffffff;
  position: relative;
  padding-bottom: 80px;
}

.page-vip-club-vip-customer-service-cta-section .page-vip-club-vip-customer-service-section-title {
  color: #FFD700;
}

.page-vip-club-vip-customer-service-cta-section p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-vip-club-vip-customer-service-cta-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-vip-club-vip-customer-service-cta-image {
  max-width: 500px;
  height: auto;
  margin-top: 50px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-vip-club-vip-customer-service-hero-title {
    font-size: 2.5em;
  }

  .page-vip-club-vip-customer-service-hero-subtitle {
    font-size: 1.1em;
  }

  .page-vip-club-vip-customer-service-section-title {
    font-size: 2em;
  }

  .page-vip-club-vip-customer-service-feature-grid {
    grid-template-columns: 1fr;
  }

  .page-vip-club-vip-customer-service-cta-buttons {
    flex-direction: column;
  }

  .page-vip-club-vip-customer-service-button--secondary {
    margin-left: 0;
    margin-top: 15px;
  }

  .page-vip-club-vip-customer-service-step-list li {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-vip-club-vip-customer-service-hero {
    padding: 80px 0 50px;
  }

  .page-vip-club-vip-customer-service-hero-title {
    font-size: 2em;
  }

  .page-vip-club-vip-customer-service-hero-subtitle {
    font-size: 1em;
  }

  .page-vip-club-vip-customer-service-button {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-vip-club-vip-customer-service-section {
    padding: 40px 0;
  }

  .page-vip-club-vip-customer-service-intro p,
  .page-vip-club-vip-customer-service-benefits-details p,
  .page-vip-club-vip-customer-service-commitment-list li,
  .page-vip-club-vip-customer-service-faq-answer {
    font-size: 0.95em;
  }

  .page-vip-club-vip-customer-service-benefit-list li,
  .page-vip-club-vip-customer-service-step-list li {
    font-size: 1em;
    padding: 15px;
  }
}