/* style/vip-club-levels-privileges.css */

:root {
  --primary-color: #1A2A3A; /* Deep Navy Blue */
  --secondary-color: #FFD700; /* Gold */
  --text-light: #FFFFFF;
  --text-dark: #333333;
  --background-light: #F8F8F8;
  --background-dark: #121E2C;
  --card-background: #FFFFFF;
  --border-color: #E0E0E0;
}

.page-vip-club-levels-privileges {
  font-family: 'Arial', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--background-light);
}

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

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

.page-vip-club-levels-privileges-section:nth-of-type(odd) {
  background-color: var(--background-light);
}

.page-vip-club-levels-privileges-section:nth-of-type(even) {
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-vip-club-levels-privileges-section:nth-of-type(even) h2,
.page-vip-club-levels-privileges-section:nth-of-type(even) h3 {
  color: var(--secondary-color);
}

.page-vip-club-levels-privileges h1 {
  font-size: 3.2em;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-vip-club-levels-privileges h2 {
  font-size: 2.5em;
  color: var(--primary-color);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.page-vip-club-levels-privileges h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.page-vip-club-levels-privileges h3 {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-vip-club-levels-privileges p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.page-vip-club-levels-privileges-cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-vip-club-levels-privileges-cta-button:hover {
  background: #FFC107; /* Slightly darker gold */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.page-vip-club-levels-privileges-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0A1C2C 100%);
  color: var(--text-light);
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

.page-vip-club-levels-privileges-hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.page-vip-club-levels-privileges-hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-vip-club-levels-privileges-hero-image {
  width: 100%;
  max-width: 900px;
  margin-top: 40px;
}

.page-vip-club-levels-privileges-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

/* VIP Levels Section */
.page-vip-club-levels-privileges-levels .page-vip-club-levels-privileges-level-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-vip-club-levels-privileges-levels .page-vip-club-levels-privileges-level-card {
  background-color: var(--card-background);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 380px; /* Ensure consistent height */
}

.page-vip-club-levels-privileges-levels .page-vip-club-levels-privileges-level-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-vip-club-levels-privileges-levels .page-vip-club-levels-privileges-level-card img {
  width: 120px; /* Larger badge size */
  height: 120px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-vip-club-levels-privileges-levels .page-vip-club-levels-privileges-level-card h3 {
  color: var(--primary-color);
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-vip-club-levels-privileges-levels .page-vip-club-levels-privileges-level-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  width: 100%;
  font-size: 1em;
}

.page-vip-club-levels-privileges-levels .page-vip-club-levels-privileges-level-card ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  color: var(--text-dark);
}

.page-vip-club-levels-privileges-levels .page-vip-club-levels-privileges-level-card ul li::before {
  content: '✔';
  color: var(--secondary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-vip-club-levels-privileges-note {
  margin-top: 40px;
  font-style: italic;
  color: var(--text-dark);
  font-size: 0.95em;
}

/* VIP Privileges Section */
.page-vip-club-levels-privileges-privileges .page-vip-club-levels-privileges-privilege-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-vip-club-levels-privileges-privileges .page-vip-club-levels-privileges-privilege-item {
  background-color: var(--card-background);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 350px;
}

.page-vip-club-levels-privileges-privileges .page-vip-club-levels-privileges-privilege-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-vip-club-levels-privileges-privileges .page-vip-club-levels-privileges-privilege-item img {
  width: 150px;
  height: 150px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-vip-club-levels-privileges-privileges .page-vip-club-levels-privileges-privilege-item h3 {
  color: var(--primary-color);
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-vip-club-levels-privileges-privileges .page-vip-club-levels-privileges-privilege-item p {
  color: var(--text-dark);
  font-size: 1em;
}

/* Upgrade Section */
.page-vip-club-levels-privileges-upgrade ul {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-vip-club-levels-privileges-upgrade ul li {
  background-color: var(--card-background);
  border-left: 5px solid var(--secondary-color);
  margin-bottom: 20px;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  font-size: 1.1em;
  color: var(--text-dark);
}

.page-vip-club-levels-privileges-upgrade ul li strong {
  color: var(--primary-color);
}

/* FAQ Section */
.page-vip-club-levels-privileges-faq .page-vip-club-levels-privileges-faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-vip-club-levels-privileges-faq .faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--card-background);
}

.page-vip-club-levels-privileges-faq .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #FFFFFF;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-vip-club-levels-privileges-faq .faq-question:hover {
  background: #F5F5F5;
}

.page-vip-club-levels-privileges-faq .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: var(--primary-color);
}

.page-vip-club-levels-privileges-faq .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.page-vip-club-levels-privileges-faq .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--secondary-color);
}

.page-vip-club-levels-privileges-faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #F9F9F9;
  color: var(--text-dark);
}

.page-vip-club-levels-privileges-faq .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 15px 25px;
}

.page-vip-club-levels-privileges-faq .faq-answer p {
  margin-bottom: 0;
  font-size: 1em;
}

/* CTA Bottom Section */
.page-vip-club-levels-privileges-cta-bottom {
  background: linear-gradient(90deg, var(--primary-color), #0A1C2C);
  color: var(--text-light);
  padding: 80px 0;
}

.page-vip-club-levels-privileges-cta-bottom .page-vip-club-levels-privileges-flex-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.page-vip-club-levels-privileges-cta-bottom img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-vip-club-levels-privileges-cta-bottom .page-vip-club-levels-privileges-cta-content {
  max-width: 700px;
  text-align: center;
}

.page-vip-club-levels-privileges-cta-bottom h2 {
  color: var(--secondary-color);
  margin-bottom: 25px;
}

.page-vip-club-levels-privileges-cta-bottom p {
  font-size: 1.15em;
  color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-vip-club-levels-privileges h1 {
    font-size: 2.5em;
  }
  .page-vip-club-levels-privileges h2 {
    font-size: 2em;
  }
  .page-vip-club-levels-privileges h3 {
    font-size: 1.5em;
  }
  .page-vip-club-levels-privileges-levels .page-vip-club-levels-privileges-level-card {
    min-height: auto;
  }
  .page-vip-club-levels-privileges-privileges .page-vip-club-levels-privileges-privilege-item {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .page-vip-club-levels-privileges-section {
    padding: 40px 0;
  }
  .page-vip-club-levels-privileges-container {
    padding: 0 15px;
  }
  .page-vip-club-levels-privileges-hero-container {
    flex-direction: column;
    gap: 20px;
  }
  .page-vip-club-levels-privileges-hero-image {
    margin-top: 20px;
  }
  .page-vip-club-levels-privileges-hero h1 {
    font-size: 2em;
  }
  .page-vip-club-levels-privileges h2 {
    font-size: 1.8em;
  }
  .page-vip-club-levels-privileges h3 {
    font-size: 1.3em;
  }
  .page-vip-club-levels-privileges p {
    font-size: 1em;
  }
  .page-vip-club-levels-privileges-cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-vip-club-levels-privileges-levels .page-vip-club-levels-privileges-level-grid,
  .page-vip-club-levels-privileges-privileges .page-vip-club-levels-privileges-privilege-grid {
    grid-template-columns: 1fr;
  }
  .page-vip-club-levels-privileges-faq .faq-question {
    padding: 15px 20px;
  }
  .page-vip-club-levels-privileges-faq .faq-question h3 {
    font-size: 1.1em;
  }
  .page-vip-club-levels-privileges-faq .faq-toggle {
    font-size: 20px;
  }
  .page-vip-club-levels-privileges-faq .faq-answer {
    padding: 0 20px;
  }
  .page-vip-club-levels-privileges-faq .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-vip-club-levels-privileges-cta-bottom .page-vip-club-levels-privileges-flex-center {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .page-vip-club-levels-privileges h1 {
    font-size: 1.8em;
  }
  .page-vip-club-levels-privileges h2 {
    font-size: 1.5em;
  }
  .page-vip-club-levels-privileges h3 {
    font-size: 1.2em;
  }
  .page-vip-club-levels-privileges-cta-button {
    padding: 10px 25px;
    font-size: 1em;
  }
}