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

.page-vip-club__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-vip-club__section-title {
  font-size: 2.5em;
  color: #00008B;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-vip-club__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-vip-club__section-subtitle {
  font-size: 1.2em;
  color: #555;
  text-align: center;
  margin-bottom: 50px;
}

.page-vip-club__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.page-vip-club__btn--primary {
  background-color: #FFD700;
  color: #00008B;
  border: 2px solid #FFD700;
}

.page-vip-club__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-vip-club__btn--secondary {
  background-color: #00008B;
  color: #FFD700;
  border: 2px solid #00008B;
  margin-left: 15px;
}

.page-vip-club__btn--secondary:hover {
  background-color: #00006b;
  border-color: #00006b;
}

/* Hero Section */
.page-vip-club__hero-section {
  background: linear-gradient(135deg, #FFD700, #00008B);
  padding: 100px 0;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-vip-club__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,luxury_pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-vip-club__hero-section .page-vip-club__container {
  position: relative;
  z-index: 1;
}

.page-vip-club__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-vip-club__hero-description {
  font-size: 1.4em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #eee;
}

/* Intro Section */
.page-vip-club__intro-section {
  padding: 80px 0;
  background-color: #fff;
}

.page-vip-club__intro-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-vip-club__intro-text {
  flex: 1;
}

.page-vip-club__intro-text p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.page-vip-club__intro-image {
  flex: 1;
  text-align: center;
}

.page-vip-club__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Benefits Section */
.page-vip-club__benefits-section {
  padding: 80px 0;
  background-color: #f0f4f7;
}

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

.page-vip-club__benefit-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-vip-club__benefit-item:hover {
  transform: translateY(-10px);
}

.page-vip-club__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-vip-club__benefit-item h3 {
  font-size: 1.5em;
  color: #00008B;
  margin-bottom: 15px;
}

.page-vip-club__benefit-item p {
  color: #666;
}

/* Levels Section */
.page-vip-club__levels-section {
  padding: 80px 0;
  background-color: #fff;
}

.page-vip-club__levels-carousel {
  display: flex;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 20px;
  justify-content: center;
}

.page-vip-club__levels-carousel::-webkit-scrollbar {
  height: 8px;
}

.page-vip-club__levels-carousel::-webkit-scrollbar-thumb {
  background: #FFD700;
  border-radius: 10px;
}

.page-vip-club__levels-carousel::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.page-vip-club__level-card {
  flex: 0 0 250px;
  background-color: #00008B;
  color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club__level-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-vip-club__level-image {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

.page-vip-club__level-card h4 {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-vip-club__level-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-vip-club__level-card ul li {
  margin-bottom: 8px;
  font-size: 1.1em;
}

.page-vip-club__note {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  color: #777;
  font-size: 1.1em;
}

/* How to Join Section */
.page-vip-club__how-to-join-section {
  padding: 80px 0;
  background-color: #f0f4f7;
}

.page-vip-club__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-vip-club__step-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
}

.page-vip-club__step-number {
  width: 50px;
  height: 50px;
  background-color: #FFD700;
  color: #00008B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  margin: -55px auto 20px;
  border: 3px solid #00008B;
}

.page-vip-club__step-item h3 {
  font-size: 1.6em;
  color: #00008B;
  margin-bottom: 15px;
}

.page-vip-club__step-item p {
  color: #666;
}

.page-vip-club__step-item p a {
  color: #00008B;
  text-decoration: underline;
}

.page-vip-club__step-item p a:hover {
  color: #FFD700;
}

.page-vip-club__cta-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #ddd;
}

.page-vip-club__cta-bottom p {
  font-size: 1.3em;
  margin-bottom: 25px;
  color: #00008B;
  font-weight: bold;
}

/* FAQ Section */
.page-vip-club__faq-section {
  padding: 80px 0;
  background-color: #fff;
}

.page-vip-club__faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page-vip-club__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-vip-club__faq-question {
  font-size: 1.2em;
  color: #00008B;
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #eef;
  transition: background-color 0.3s ease;
}

.page-vip-club__faq-question::after {
  content: '+';
  font-size: 1.5em;
  font-weight: bold;
  color: #FFD700;
}

.page-vip-club__faq-question.active::after {
  content: '-';
}

.page-vip-club__faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-vip-club__faq-answer.active {
  max-height: 200px; /* Adjust based on content */
  padding: 20px;
}

.page-vip-club__faq-answer p {
  color: #555;
}

.page-vip-club__faq-answer p a {
  color: #00008B;
  text-decoration: underline;
}

.page-vip-club__faq-answer p a:hover {
  color: #FFD700;
}

/* Final CTA Section */
.page-vip-club__cta-final {
  background-color: #00008B;
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

.page-vip-club__cta-final .page-vip-club__section-title {
  color: #FFD700;
}

.page-vip-club__cta-final .page-vip-club__description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #eee;
}

.page-vip-club__cta-final .page-vip-club__btn--secondary {
  background-color: #FFD700;
  color: #00008B;
  border-color: #FFD700;
}

.page-vip-club__cta-final .page-vip-club__btn--secondary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-vip-club__hero-title {
    font-size: 3em;
  }

  .page-vip-club__hero-description {
    font-size: 1.2em;
  }

  .page-vip-club__section-title {
    font-size: 2em;
  }

  .page-vip-club__intro-content {
    flex-direction: column;
  }

  .page-vip-club__intro-text, .page-vip-club__intro-image {
    flex: none;
    width: 100%;
  }

  .page-vip-club__levels-carousel {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .page-vip-club__hero-title {
    font-size: 2.5em;
  }

  .page-vip-club__hero-description {
    font-size: 1em;
  }

  .page-vip-club__section-title {
    font-size: 1.8em;
  }

  .page-vip-club__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-vip-club__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }

  .page-vip-club__benefits-grid, .page-vip-club__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-vip-club__step-number {
    margin-top: -45px;
  }

  .page-vip-club__level-card {
    flex: 0 0 220px;
  }
}

@media (max-width: 480px) {
  .page-vip-club__hero-title {
    font-size: 2em;
  }

  .page-vip-club__hero-description {
    font-size: 0.9em;
  }

  .page-vip-club__section-title {
    font-size: 1.5em;
  }

  .page-vip-club__btn {
    width: 100%;
    margin-left: 0;
    margin-bottom: 10px;
  }

  .page-vip-club__cta-bottom .page-vip-club__btn {
    margin-bottom: 15px;
  }

  .page-vip-club__level-card {
    flex: 0 0 200px;
  }
}