/* style/vip-club-tier-benefits.css */

/* Base styles for the VIP page */
.page-vip-club-tier-benefits {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000000; /* Inherited from body, explicit for clarity */
  padding-top: 10px; /* Spacing for fixed header */
}

.page-vip-club-tier-benefits__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-vip-club-tier-benefits__section {
  padding: 60px 0;
  margin-bottom: 0;
}

.page-vip-club-tier-benefits__dark-bg {
  background-color: #000000;
  color: #ffffff;
}

.page-vip-club-tier-benefits__highlight {
  color: #FFD700;
}

.page-vip-club-tier-benefits__main-title,
.page-vip-club-tier-benefits__section-title {
  font-size: 3.2em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.page-vip-club-tier-benefits__section-title {
  font-size: 2.5em;
  margin-top: 0;
}

.page-vip-club-tier-benefits__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
  text-align: justify;
}

/* Hero Banner Section */
.page-vip-club-tier-benefits__hero-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  gap: 40px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #000000 0%, #000080 100%);
  padding-top: calc(80px + 10px); /* Adjust for fixed header */
}

.page-vip-club-tier-benefits__hero-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  text-align: left;
}

.page-vip-club-tier-benefits__hero-description {
  font-size: 1.2em;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.page-vip-club-tier-benefits__hero-image-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-vip-club-tier-benefits__hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  max-width: 100%;
  display: block;
}

/* Buttons */
.page-vip-club-tier-benefits__btn-primary {
  display: inline-block;
  background: #FFD700; /* Gold */
  color: #000000; /* Black for contrast */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-vip-club-tier-benefits__btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-vip-club-tier-benefits__btn-secondary {
  display: inline-block;
  background: #000080; /* Dark Blue */
  color: #ffffff; /* White for contrast */
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  border: 2px solid #FFD700;
  transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.page-vip-club-tier-benefits__btn-secondary:hover {
  background-color: #0000a0;
  border-color: #e6c200;
  transform: translateY(-2px);
}

/* VIP Table */
.page-vip-club-tier-benefits__table-wrapper {
  overflow-x: auto;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-vip-club-tier-benefits__vip-table {
  width: 100%;
  border-collapse: collapse;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent dark */
  border-radius: 8px;
  overflow: hidden;
  min-width: 700px; /* Ensure table is wide enough for content */
}

.page-vip-club-tier-benefits__vip-table th,
.page-vip-club-tier-benefits__vip-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #f0f0f0;
}

.page-vip-club-tier-benefits__vip-table th {
  background-color: rgba(255, 255, 255, 0.1);
  font-weight: bold;
  color: #FFD700;
  text-transform: uppercase;
  font-size: 0.95em;
}

.page-vip-club-tier-benefits__vip-table tr:last-child td {
  border-bottom: none;
}

.page-vip-club-tier-benefits__vip-level-name {
  color: #FFD700;
}

/* Benefits Grid */
.page-vip-club-tier-benefits__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-vip-club-tier-benefits__card {
  background: rgba(255, 255, 255, 0.08); /* Slightly transparent white for dark background */
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #f0f0f0;
}

.page-vip-club-tier-benefits__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-vip-club-tier-benefits__card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-vip-club-tier-benefits__card-image {
  width: 150px;
  height: auto;
  margin: 0 auto 20px auto;
  display: block;
  border-radius: 8px;
  max-width: 100%;
}

.page-vip-club-tier-benefits__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  text-align: left;
  flex-grow: 1;
}

.page-vip-club-tier-benefits__list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-vip-club-tier-benefits__list li::before {
  content: '✓';
  color: #FFD700;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-vip-club-tier-benefits__list-item-highlight {
  color: #FFD700;
}

/* Exclusive Benefits Section */
.page-vip-club-tier-benefits__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-vip-club-tier-benefits__feature-card {
  background: rgba(0, 0, 128, 0.5); /* Dark blue transparent */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #f0f0f0;
}

.page-vip-club-tier-benefits__feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-vip-club-tier-benefits__feature-image {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.page-vip-club-tier-benefits__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-vip-club-tier-benefits__feature-text {
  font-size: 1em;
  color: #e0e0e0;
}

/* FAQ Section */
.page-vip-club-tier-benefits__faq-list {
  margin-top: 40px;
}

.page-vip-club-tier-benefits__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
}

.page-vip-club-tier-benefits__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #000080; /* Dark blue background for questions */
  border: 1px solid #FFD700;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #ffffff;
}

.page-vip-club-tier-benefits__faq-question:hover {
  background: #0000a0;
  border-color: #e6c200;
}

.page-vip-club-tier-benefits__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #ffffff;
}

.page-vip-club-tier-benefits__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: 32px;
  height: 32px;
}

.page-vip-club-tier-benefits__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;
  color: #e0e0e0;
  background-color: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.page-vip-club-tier-benefits__faq-item.active .page-vip-club-tier-benefits__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  border-radius: 0 0 8px 8px;
}

.page-vip-club-tier-benefits__faq-item.active .page-vip-club-tier-benefits__faq-question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.page-vip-club-tier-benefits__faq-item.active .page-vip-club-tier-benefits__faq-toggle {
  color: #FFD700;
}

/* CTA Section */
.page-vip-club-tier-benefits__cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #000080 0%, #000000 100%);
}

.page-vip-club-tier-benefits__cta-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-vip-club-tier-benefits__cta-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  text-align: left;
}

.page-vip-club-tier-benefits__cta-image-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-vip-club-tier-benefits__cta-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  max-width: 100%;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-vip-club-tier-benefits__main-title {
    font-size: 2.8em;
  }
  .page-vip-club-tier-benefits__section-title {
    font-size: 2em;
  }
  .page-vip-club-tier-benefits__hero-banner,
  .page-vip-club-tier-benefits__cta-section .page-vip-club-tier-benefits__container {
    flex-direction: column;
    text-align: center;
  }
  .page-vip-club-tier-benefits__hero-content,
  .page-vip-club-tier-benefits__cta-content {
    text-align: center;
  }
  .page-vip-club-tier-benefits__hero-image-wrapper,
  .page-vip-club-tier-benefits__cta-image-wrapper {
    order: -1; /* Image above text on smaller screens */
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-vip-club-tier-benefits {
    padding-top: 10px; /* Mobile spacing for fixed header */
    font-size: 16px;
    line-height: 1.6;
  }
  .page-vip-club-tier-benefits__section {
    padding: 40px 0;
  }
  .page-vip-club-tier-benefits__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-vip-club-tier-benefits__main-title {
    font-size: 2.2em;
    margin-bottom: 20px;
  }
  .page-vip-club-tier-benefits__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }
  .page-vip-club-tier-benefits__text-block {
    font-size: 1em;
  }
  .page-vip-club-tier-benefits__hero-banner {
    padding-top: calc(40px + 10px);
    padding-bottom: 40px;
  }
  .page-vip-club-tier-benefits__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-vip-club-tier-benefits__btn-primary,
  .page-vip-club-tier-benefits__btn-secondary {
    font-size: 0.95em;
    padding: 12px 25px;
  }
  .page-vip-club-tier-benefits__vip-table {
    min-width: unset;
  }
  .page-vip-club-tier-benefits__vip-table th,
  .page-vip-club-tier-benefits__vip-table td {
    padding: 10px;
    font-size: 0.85em;
  }
  .page-vip-club-tier-benefits__benefits-grid,
  .page-vip-club-tier-benefits__features-grid {
    gap: 20px;
  }
  .page-vip-club-tier-benefits__card,
  .page-vip-club-tier-benefits__feature-card {
    padding: 20px;
  }
  .page-vip-club-tier-benefits__card-title {
    font-size: 1.5em;
    margin-bottom: 15px;
  }
  .page-vip-club-tier-benefits__card-image,
  .page-vip-club-tier-benefits__feature-image {
    width: 100px;
    margin-bottom: 15px;
  }
  .page-vip-club-tier-benefits__feature-title {
    font-size: 1.3em;
  }
  .page-vip-club-tier-benefits__faq-question {
    padding: 15px 20px;
  }
  .page-vip-club-tier-benefits__faq-question h3 {
    font-size: 1.05em;
  }
  .page-vip-club-tier-benefits__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-vip-club-tier-benefits__faq-answer {
    padding: 0 20px;
  }
  .page-vip-club-tier-benefits__faq-item.active .page-vip-club-tier-benefits__faq-answer {
    padding: 15px 20px !important;
  }
  .page-vip-club-tier-benefits__cta-section {
    padding: 60px 0;
  }
  /* Ensure all images are responsive */
  .page-vip-club-tier-benefits img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}