/* style/mcw-67-vip-program-levels.css */

/* Base Styles */
.page-mcw-67-vip-program-levels {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

.page-mcw-67-vip-program-levels__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-mcw-67-vip-program-levels__section-title {
  font-size: 2.5em;
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-mcw-67-vip-program-levels__section-description {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-mcw-67-vip-program-levels__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjusted height for visual impact */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
  box-sizing: border-box;
}

.page-mcw-67-vip-program-levels__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.page-mcw-67-vip-program-levels__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(1, 116, 57, 0.7), rgba(0, 0, 0, 0.8)); /* Brand color overlay */
  z-index: -1;
}

.page-mcw-67-vip-program-levels__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
}

.page-mcw-67-vip-program-levels__hero-title {
  font-size: 3.5em;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-mcw-67-vip-program-levels__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.7;
}

.page-mcw-67-vip-program-levels__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-mcw-67-vip-program-levels__btn-primary,
.page-mcw-67-vip-program-levels__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-mcw-67-vip-program-levels__btn-primary {
  background-color: #C30808; /* Register color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

.page-mcw-67-vip-program-levels__btn-primary:hover {
  background-color: #e01010;
  transform: translateY(-2px);
}

.page-mcw-67-vip-program-levels__btn-secondary {
  background-color: transparent;
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

.page-mcw-67-vip-program-levels__btn-secondary:hover {
  background-color: #C30808;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Benefits Section */
.page-mcw-67-vip-program-levels__benefits-section {
  padding: 80px 0;
  background-color: #1a1a2e; /* Dark background from body */
}

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

.page-mcw-67-vip-program-levels__benefit-card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark background */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-mcw-67-vip-program-levels__benefit-card:hover {
  transform: translateY(-10px);
  background-color: rgba(1, 116, 57, 0.7); /* Hover with brand color */
}

.page-mcw-67-vip-program-levels__benefit-icon {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px;
}

.page-mcw-67-vip-program-levels__benefit-title {
  font-size: 1.5em;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-mcw-67-vip-program-levels__benefit-text {
  font-size: 1em;
  color: #e0e0e0;
}

/* Levels Section */
.page-mcw-67-vip-program-levels__levels-section {
  padding: 80px 0;
  background-color: #0d0d0d; /* Slightly darker background */
}

.page-mcw-67-vip-program-levels__level-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #017439; /* Brand accent */
}

.page-mcw-67-vip-program-levels__level-title {
  font-size: 2em;
  color: #FFFF00; /* Specific color for titles */
  margin-bottom: 15px;
  font-weight: 700;
}

.page-mcw-67-vip-program-levels__level-description {
  font-size: 1.1em;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.page-mcw-67-vip-program-levels__level-features {
  list-style: none;
  padding: 0;
}

.page-mcw-67-vip-program-levels__level-features li {
  font-size: 1em;
  color: #ffffff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.page-mcw-67-vip-program-levels__level-features li::before {
  content: '✓';
  color: #017439; /* Brand color checkmark */
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}

/* How to Join Section */
.page-mcw-67-vip-program-levels__how-to-join-section {
  padding: 80px 0;
  background-color: #1a1a2e;
}

.page-mcw-67-vip-program-levels__process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-mcw-67-vip-program-levels__process-step {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  border: 1px solid rgba(1, 116, 57, 0.5);
}

.page-mcw-67-vip-program-levels__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #017439; /* Brand color */
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  border: 3px solid #1a1a2e;
}

.page-mcw-67-vip-program-levels__step-title {
  font-size: 1.6em;
  color: #FFFF00;
  margin-top: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-mcw-67-vip-program-levels__step-text {
  font-size: 1em;
  color: #e0e0e0;
}

.page-mcw-67-vip-program-levels__cta-center {
  text-align: center;
  margin-top: 50px;
}

/* FAQ Section */
.page-mcw-67-vip-program-levels__faq-section {
  padding: 80px 0;
  background-color: #0d0d0d;
}

.page-mcw-67-vip-program-levels__faq-list {
  margin-top: 40px;
}

.page-mcw-67-vip-program-levels__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-mcw-67-vip-program-levels__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  background-color: #017439; /* Brand color for question */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.page-mcw-67-vip-program-levels__faq-question:hover {
  background-color: #028a45;
}

.page-mcw-67-vip-program-levels__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-mcw-67-vip-program-levels__faq-item.active .page-mcw-67-vip-program-levels__faq-toggle {
  transform: rotate(45deg);
}

.page-mcw-67-vip-program-levels__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: rgba(255, 255, 255, 0.05);
  color: #e0e0e0;
}

.page-mcw-67-vip-program-levels__faq-item.active .page-mcw-67-vip-program-levels__faq-answer {
  max-height: 1000px !important; /* Sufficiently large */
  padding: 20px 25px;
}

.page-mcw-67-vip-program-levels__faq-answer p {
  margin: 0;
  color: #e0e0e0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-mcw-67-vip-program-levels__hero-title {
    font-size: 3em;
  }

  .page-mcw-67-vip-program-levels__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-mcw-67-vip-program-levels__hero-section {
    height: auto;
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
  }

  .page-mcw-67-vip-program-levels__hero-title {
    font-size: 2.5em;
  }

  .page-mcw-67-vip-program-levels__hero-description {
    font-size: 1em;
  }

  .page-mcw-67-vip-program-levels__section-title {
    font-size: 2em;
  }

  .page-mcw-67-vip-program-levels__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-mcw-67-vip-program-levels__btn-primary,
  .page-mcw-67-vip-program-levels__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-mcw-67-vip-program-levels__benefits-section,
  .page-mcw-67-vip-program-levels__levels-section,
  .page-mcw-67-vip-program-levels__how-to-join-section,
  .page-mcw-67-vip-program-levels__faq-section {
    padding: 50px 0;
  }

  .page-mcw-67-vip-program-levels__benefit-card,
  .page-mcw-67-vip-program-levels__level-card,
  .page-mcw-67-vip-program-levels__process-step,
  .page-mcw-67-vip-program-levels__faq-item {
    padding: 25px;
  }

  .page-mcw-67-vip-program-levels__benefit-icon {
    height: auto;
    max-width: 100% !important;
    width: 100% !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-mcw-67-vip-program-levels img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-mcw-67-vip-program-levels__section,
  .page-mcw-67-vip-program-levels__card,
  .page-mcw-67-vip-program-levels__container,
  .page-mcw-67-vip-program-levels__benefits-grid,
  .page-mcw-67-vip-program-levels__process-grid,
  .page-mcw-67-vip-program-levels__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  
  .page-mcw-67-vip-program-levels__hero-section {
    padding-left: 0;
    padding-right: 0;
  }

  .page-mcw-67-vip-program-levels__hero-content {
    padding: 0 15px;
  }

  .page-mcw-67-vip-program-levels__process-step .page-mcw-67-vip-program-levels__step-number {
    position: static;
    transform: none;
    margin: -10px auto 15px auto;
  }
}

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

  .page-mcw-67-vip-program-levels__section-title {
    font-size: 1.8em;
  }

  .page-mcw-67-vip-program-levels__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-mcw-67-vip-program-levels__faq-answer {
    padding: 15px 20px;
  }
}