/* style/vip.css */
.page-vip {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: var(--dark-bg-1);
  padding-top: 100px; /* Adjust for fixed header on desktop */
}

@media (max-width: 768px) {
  .page-vip {
    padding-top: 80px; /* Adjust for fixed header on mobile */
  }
}

.page-vip__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-vip__section-title {
  font-size: 36px;
  color: #FFD700; /* Gold accent color */
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.page-vip__section-description {
  font-size: 18px;
  color: #e0e0e0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}

/* Hero Banner Section */
.page-vip__hero-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A202C 0%, #3a475e 100%);
  text-align: center;
  gap: 40px;
}

.page-vip__hero-content {
  max-width: 800px;
}

.page-vip__hero-title {
  font-size: 48px;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.page-vip__hero-description {
  font-size: 20px;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.7;
}

.page-vip__hero-btn {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-vip__hero-btn:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-vip__hero-image-wrapper {
  width: 100%;
  max-width: 900px;
  margin-top: 40px;
}

.page-vip__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Introduction Section */
.page-vip__introduction-section {
  padding: 80px 0;
  background-color: #1A202C;
}

.page-vip__dark-section {
  background-color: #1A202C;
  color: #ffffff; /* Forced white text */
}

/* Levels Section */
.page-vip__levels-section {
  padding: 80px 0;
  background-color: #0f131a;
}

.page-vip__levels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-vip__level-card {
  background-color: #2a3342;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-vip__level-card:hover {
  transform: translateY(-10px);
  background-color: #3a475e;
}

.page-vip__level-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFD700;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-vip__level-icon img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  display: block;
}

.page-vip__level-title {
  font-size: 24px;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-vip__level-description {
  font-size: 16px;
  color: #cccccc;
  line-height: 1.7;
}

.page-vip__note-text {
  text-align: center;
  margin-top: 50px;
  font-size: 16px;
  color: #aaaaaa;
}

.page-vip__note-text a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-vip__note-text a:hover {
  text-decoration: underline;
}

/* Benefits Section */
.page-vip__benefits-section {
  padding: 80px 0;
}

.page-vip__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-vip__benefit-card {
  background-color: #2a3342;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-vip__benefit-card:hover {
  transform: translateY(-10px);
  background-color: #3a475e;
}

.page-vip__benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px auto;
  display: block;
  object-fit: contain;
}

.page-vip__benefit-title {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-vip__benefit-text {
  font-size: 16px;
  color: #cccccc;
  line-height: 1.7;
}

/* Join Section */
.page-vip__join-section {
  padding: 80px 0;
  background-color: #0f131a;
}

.page-vip__join-steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.page-vip__step-card {
  background-color: #2a3342;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-vip__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #FFD700;
  color: #1A202C;
  font-size: 32px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-vip__step-title {
  font-size: 24px;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-vip__step-text {
  font-size: 16px;
  color: #cccccc;
  line-height: 1.7;
}

.page-vip__step-text a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-vip__step-text a:hover {
  text-decoration: underline;
}

.page-vip__cta-text {
  text-align: center;
  margin-top: 40px;
  font-size: 18px;
  color: #e0e0e0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip__main-cta-btn {
  display: block;
  width: fit-content;
  margin: 40px auto 20px auto;
  background-color: #FFD700;
  color: #1A202C;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
}

.page-vip__main-cta-btn:hover {
  background-color: #e6c200;
  transform: translateY(-5px);
}

.page-vip__secondary-cta-btn {
  display: block;
  width: fit-content;
  margin: 0 auto 20px auto;
  background-color: transparent;
  color: #FFD700;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  border: 2px solid #FFD700;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.page-vip__secondary-cta-btn:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-3px);
}

/* FAQ Section */
.page-vip__faq-section {
  padding: 80px 0;
}

.page-vip__faq-list {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.2);
  background-color: #2a3342;
}

.page-vip__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #3a475e;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-vip__faq-question:hover {
  background: #4a5c7a;
}

.page-vip__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #f0f0f0;
  pointer-events: none;
}

.page-vip__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-vip__faq-item.active .page-vip__faq-toggle {
  color: #ffffff;
  transform: rotate(180deg);
}

.page-vip__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background-color: #2a3342;
  color: #cccccc;
}

.page-vip__faq-item.active .page-vip__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.page-vip__faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #cccccc;
}

/* Final CTA Section */
.page-vip__cta-section {
  padding: 80px 0;
  background-color: #1A202C;
  text-align: center;
}

/* Mobile Floating CTA Button */
.page-vip__mobile-float-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: none; /* Hidden by default, shown on mobile */
}

.page-vip__mobile-float-cta a {
  display: flex;
  align-items: center;
  background-color: #FFD700; /* Bright accent color */
  color: #1A202C;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.6);
  transition: transform 0.3s ease;
}

.page-vip__mobile-float-cta a:hover {
  transform: translateY(-3px);
}

.page-vip__float-cta-text {
  white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .page-vip__container {
    padding: 0 15px;
  }
}

@media (max-width: 1024px) {
  .page-vip__hero-title {
    font-size: 42px;
  }
  .page-vip__section-title {
    font-size: 32px;
  }
  .page-vip__hero-banner {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .page-vip {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .page-vip__hero-banner {
    padding: 60px 15px;
  }
  
  .page-vip__hero-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  
  .page-vip__hero-description {
    font-size: 17px;
    margin-bottom: 25px;
  }
  
  .page-vip__hero-btn {
    padding: 12px 25px;
    font-size: 18px;
  }
  
  .page-vip__section-title {
    font-size: 28px;
    margin-bottom: 25px;
  }
  
  .page-vip__section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .page-vip__introduction-section,
  .page-vip__levels-section,
  .page-vip__benefits-section,
  .page-vip__join-section,
  .page-vip__faq-section,
  .page-vip__cta-section {
    padding: 50px 0;
  }
  
  .page-vip__levels-grid,
  .page-vip__benefits-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .page-vip__level-card,
  .page-vip__benefit-card {
    padding: 25px;
  }
  
  .page-vip__level-title,
  .page-vip__benefit-title {
    font-size: 20px;
  }
  
  .page-vip__join-steps {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  
  .page-vip__step-card {
    max-width: 100%;
    width: 100%;
  }
  
  .page-vip__step-title {
    font-size: 22px;
  }

  /* FAQ Mobile Styles */
  .page-vip__faq-question {
    padding: 15px 20px;
  }
  
  .page-vip__faq-question h3 {
    font-size: 16px;
  }
  
  .page-vip__faq-toggle {
    font-size: 24px;
    width: 26px;
    height: 26px;
  }
  
  .page-vip__faq-item.active .page-vip__faq-answer {
    padding: 15px 20px !important;
  }

  .page-vip__main-cta-btn {
    font-size: 20px;
    padding: 15px 30px;
  }

  .page-vip__secondary-cta-btn {
    font-size: 18px;
    padding: 12px 25px;
  }

  /* Mobile Floating CTA Button - Show on mobile */
  .page-vip__mobile-float-cta {
    display: block;
    bottom: 15px;
    right: 15px;
  }
  
  .page-vip__mobile-float-cta a {
    padding: 10px 15px;
    font-size: 15px;
    border-radius: 25px;
  }
  
  .page-vip img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-vip__hero-image-wrapper,
  .page-vip__container,
  .page-vip__level-icon,
  .page-vip__benefit-icon,
  .page-vip__step-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-vip__level-icon, .page-vip__benefit-icon {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .page-vip__hero-title {
    font-size: 28px;
  }
  .page-vip__section-title {
    font-size: 24px;
  }
  .page-vip__hero-description {
    font-size: 16px;
  }
  .page-vip__main-cta-btn {
    font-size: 18px;
    padding: 12px 25px;
  }
  .page-vip__secondary-cta-btn {
    font-size: 16px;
    padding: 10px 20px;
  }
  .page-vip__mobile-float-cta a {
    font-size: 14px;
    padding: 8px 12px;
  }
}