/* style/vip-program.css */

:root {
  --primary-color: #003366; /* Deep Ocean Blue */
  --secondary-color: #FFD700; /* Gold */
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-light: #f4f7f6;
  --background-dark: #002244;
  --border-color: #e0e0e0;
  --shadow-color: rgba(0, 0, 0, 0.1);
}

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

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

/* Hero Section */
.page-vip-program .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #004488 100%); /* Slightly lighter blue gradient */
  color: var(--text-light);
  overflow: hidden; /* Ensure image doesn't overflow */
}

.page-vip-program .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-vip-program .hero-image {
  width: 100%;
  margin-bottom: 30px;
  max-width: 800px; /* Adjust max-width for better visual */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-vip-program .hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: none; /* Ensure no image color changes */
}

.page-vip-program .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 900px;
}

.page-vip-program .hero-content h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-vip-program .hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-vip-program .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--secondary-color);
}

.page-vip-program .cta-button:hover {
  background: #ffc107; /* Slightly darker gold */
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-vip-program .large-button {
  padding: 20px 50px;
  font-size: 1.3em;
}

/* General Section Styling */
.page-vip-program section {
  padding: 80px 0;
  text-align: center;
}

.page-vip-program section:nth-of-type(even) {
  background-color: #fcfcfc;
}

.page-vip-program h2 {
  font-size: 2.5em;
  color: var(--primary-color);
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-vip-program 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-program h3 {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-vip-program p {
  font-size: 1.1em;
  color: var(--text-dark);
  margin-bottom: 20px;
}

/* Benefits Section */
.page-vip-program .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-vip-program .benefit-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px var(--shadow-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  border: 1px solid var(--border-color);
}

.page-vip-program .benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.page-vip-program .benefit-card .benefit-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  filter: none; /* Ensure no image color changes */
}

.page-vip-program .benefit-card h3 {
  color: var(--primary-color);
  font-size: 1.6em;
}

.page-vip-program .benefit-card p {
  font-size: 1em;
  color: var(--text-dark);
}

/* Tiers Section */
.page-vip-program .tiers-section {
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-vip-program .tiers-section h2, .page-vip-program .tiers-section h3 {
  color: var(--secondary-color);
}

.page-vip-program .tiers-section p {
  color: #e0e0e0;
}

.page-vip-program .tier-table-wrapper {
  overflow-x: auto;
  margin-top: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-vip-program .vip-tier-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px; /* Ensure table is wide enough on smaller desktops */
}

.page-vip-program .vip-tier-table th, .page-vip-program .vip-tier-table td {
  padding: 20px;
  border: 1px solid #004488;
  text-align: left;
  color: var(--text-light);
}

.page-vip-program .vip-tier-table th {
  background-color: var(--primary-color);
  font-weight: bold;
  font-size: 1.1em;
  color: var(--secondary-color);
}

.page-vip-program .vip-tier-table tbody tr:nth-child(odd) {
  background-color: #003a73;
}

.page-vip-program .vip-tier-table tbody tr:nth-child(even) {
  background-color: #002c59;
}

.page-vip-program .vip-tier-table td .tier-icon {
  width: 60px; /* Adjust size for tier icons */
  height: 60px;
  vertical-align: middle;
  margin-right: 10px;
  filter: none; /* Ensure no image color changes */
}

.page-vip-program .note {
  font-size: 0.9em;
  color: #cccccc;
  margin-top: 30px;
}

/* How to Join Section */
.page-vip-program .how-to-join-section {
  background-color: var(--background-light);
}

.page-vip-program .step-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-vip-program .step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px var(--shadow-color);
  text-align: center;
  border: 1px solid var(--border-color);
}

.page-vip-program .step-item .step-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  object-fit: contain;
  filter: none; /* Ensure no image color changes */
}

.page-vip-program .step-item h3 {
  color: var(--primary-color);
  font-size: 1.6em;
}

.page-vip-program .step-item p {
  font-size: 1em;
  color: var(--text-dark);
}

.page-vip-program .step-item a {
  color: var(--primary-color);
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-vip-program .step-item a:hover {
  color: var(--secondary-color);
}

.page-vip-program .cta-center {
  margin-top: 50px;
}

/* Exclusive Offers Section */
.page-vip-program .exclusive-offers-section {
  background-color: #fcfcfc;
}

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

.page-vip-program .offer-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px var(--shadow-color);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-vip-program .offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.page-vip-program .offer-card .offer-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  filter: none; /* Ensure no image color changes */
}

.page-vip-program .offer-card h3 {
  font-size: 1.6em;
  padding: 20px 15px 10px;
  color: var(--primary-color);
}

.page-vip-program .offer-card p {
  font-size: 1em;
  padding: 0 20px 20px;
  color: var(--text-dark);
}

.page-vip-program .offer-card .button-small {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.95em;
  font-weight: bold;
  margin-bottom: 25px;
  transition: background-color 0.3s ease;
}

.page-vip-program .offer-card .button-small:hover {
  background-color: #004488;
}

/* FAQ Section */
.page-vip-program .faq-section {
  background-color: var(--background-light);
}

.page-vip-program .faq-list {
  max-width: 800px;
  margin: 50px auto 0;
  text-align: left;
}

.page-vip-program .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-vip-program .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-radius 0.3s ease;
}

.page-vip-program .faq-item.active .faq-question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.page-vip-program .faq-question:hover {
  background: #f5f5f5;
}

.page-vip-program .faq-question h3 {
  margin: 0;
  font-size: 1.15em;
  color: var(--primary-color);
}

.page-vip-program .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.page-vip-program .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--primary-color);
}

.page-vip-program .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  border: 1px solid var(--border-color);
  border-top: none;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.page-vip-program .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
}

.page-vip-program .faq-answer p {
  margin: 0;
  font-size: 1em;
  color: var(--text-dark);
}

/* Final CTA Section */
.page-vip-program .cta-final-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #004488 100%);
  color: var(--text-light);
  padding: 100px 20px;
}

.page-vip-program .cta-final-section h2 {
  color: var(--secondary-color);
}

.page-vip-program .cta-final-section p {
  color: #e0e0e0;
  max-width: 800px;
  margin: 20px auto 40px;
  font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-vip-program .hero-content h1 {
    font-size: 2.8em;
  }
  .page-vip-program .hero-content p {
    font-size: 1.1em;
  }
  .page-vip-program h2 {
    font-size: 2em;
  }
  .page-vip-program h3 {
    font-size: 1.5em;
  }
  .page-vip-program section {
    padding: 60px 0;
  }
  .page-vip-program .vip-tier-table th, .page-vip-program .vip-tier-table td {
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .page-vip-program .hero-section {
    padding: 40px 15px;
  }
  .page-vip-program .hero-image {
    margin-bottom: 20px;
  }
  .page-vip-program .hero-content h1 {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-vip-program .hero-content p {
    font-size: 1em;
    margin-bottom: 25px;
  }
  .page-vip-program .cta-button {
    padding: 15px 35px;
    font-size: 1.1em;
  }
  .page-vip-program .large-button {
    padding: 18px 40px;
    font-size: 1.15em;
  }
  .page-vip-program h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-vip-program h3 {
    font-size: 1.3em;
  }
  .page-vip-program p {
    font-size: 0.95em;
  }
  .page-vip-program .benefits-grid, .page-vip-program .step-list, .page-vip-program .offers-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-vip-program .benefit-card, .page-vip-program .step-item, .page-vip-program .offer-card {
    padding: 25px;
  }
  .page-vip-program .benefit-card .benefit-icon, .page-vip-program .step-item .step-icon {
    width: 80px;
    height: 80px;
  }
  .page-vip-program .vip-tier-table {
    min-width: 100%;
  }
  .page-vip-program .vip-tier-table th, .page-vip-program .vip-tier-table td {
    padding: 10px;
    font-size: 0.9em;
  }
  .page-vip-program .vip-tier-table td .tier-icon {
    width: 40px;
    height: 40px;
  }
  .page-vip-program .faq-question {
    padding: 15px 20px;
  }
  .page-vip-program .faq-question h3 {
    font-size: 1em;
  }
  .page-vip-program .faq-toggle {
    font-size: 1.5em;
  }
  .page-vip-program .faq-answer {
    padding: 15px 20px;
  }
  .page-vip-program .cta-final-section {
    padding: 60px 15px;
  }
}

@media (max-width: 480px) {
  .page-vip-program .hero-content h1 {
    font-size: 1.8em;
  }
  .page-vip-program .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-vip-program .large-button {
    padding: 15px 30px;
    font-size: 1em;
  }
  .page-vip-program h2 {
    font-size: 1.5em;
  }
  .page-vip-program h3 {
    font-size: 1.2em;
  }
  .page-vip-program .benefit-card .benefit-icon, .page-vip-program .step-item .step-icon {
    width: 60px;
    height: 60px;
  }
  .page-vip-program .vip-tier-table td .tier-icon {
    width: 30px;
    height: 30px;
  }
}