/* style/vip-services.css */

:root {
  --page-vip-services-bg: #08160F;
  --page-vip-services-card-bg: #11271B;
  --page-vip-services-text-main: #F2FFF6;
  --page-vip-services-text-secondary: #A7D9B8;
  --page-vip-services-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --page-vip-services-border: #2E7A4E;
  --page-vip-services-glow: #57E38D;
  --page-vip-services-gold: #F2C14E;
  --page-vip-services-divider: #1E3A2A;
  --page-vip-services-deep-green: #0A4B2C;
}

.page-vip-services {
  background-color: var(--page-vip-services-bg);
  color: var(--page-vip-services-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-vip-services__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* body handles header offset, this is for decorative top padding */
  overflow: hidden;
}

.page-vip-services__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.page-vip-services__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7);
}

.page-vip-services__hero-content {
  position: relative;
  z-index: 1;
  margin-top: -200px; /* Pull content up over the image slightly for visual effect, but not overlapping text on image */
  padding: 0 20px;
  max-width: 900px;
}

.page-vip-services__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--page-vip-services-gold);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-vip-services__lead-text {
  font-size: 1.25rem;
  color: var(--page-vip-services-text-main);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-services__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-vip-services__btn-primary,
.page-vip-services__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-vip-services__btn-primary {
  background: var(--page-vip-services-btn-gradient);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-vip-services__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.page-vip-services__btn-secondary {
  background-color: transparent;
  color: var(--page-vip-services-glow);
  border: 2px solid var(--page-vip-services-glow);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-vip-services__btn-secondary:hover {
  background-color: var(--page-vip-services-glow);
  color: var(--page-vip-services-bg);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-vip-services__intro-section,
.page-vip-services__tiers-section,
.page-vip-services__benefits-section,
.page-vip-services__join-section,
.page-vip-services__faq-section,
.page-vip-services__conclusion-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--page-vip-services-divider);
}

.page-vip-services__section-title {
  font-size: 2.5rem;
  color: var(--page-vip-services-gold);
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}

.page-vip-services__section-description {
  font-size: 1.1rem;
  color: var(--page-vip-services-text-secondary);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-vip-services strong {
  color: var(--page-vip-services-text-main);
}

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

.page-vip-services__tier-card,
.page-vip-services__benefit-item {
  background-color: var(--page-vip-services-card-bg);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--page-vip-services-border);
}

.page-vip-services__tier-card:hover,
.page-vip-services__benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-vip-services__tier-image,
.page-vip-services__benefit-icon {
  width: 100%;
  max-width: 400px; /* Recommended size for content images */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-services__benefit-icon {
  max-width: 150px; /* Smaller for icons in benefits list */
}

.page-vip-services__tier-title,
.page-vip-services__benefit-title {
  font-size: 1.8rem;
  color: var(--page-vip-services-glow);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-vip-services__tier-description,
.page-vip-services__benefit-text {
  font-size: 1rem;
  color: var(--page-vip-services-text-secondary);
}

.page-vip-services__callout-text {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1rem;
  color: var(--page-vip-services-text-main);
}

.page-vip-services__callout-text a {
  color: var(--page-vip-services-glow);
  text-decoration: none;
  font-weight: 600;
}

.page-vip-services__callout-text a:hover {
  text-decoration: underline;
}

.page-vip-services__cta-center {
  text-align: center;
  margin-top: 50px;
}

.page-vip-services__join-steps {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-vip-services__step-item {
  background-color: var(--page-vip-services-card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--page-vip-services-border);
}

.page-vip-services__step-title {
  font-size: 1.6rem;
  color: var(--page-vip-services-glow);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-vip-services__step-text {
  font-size: 1rem;
  color: var(--page-vip-services-text-secondary);
}

.page-vip-services__step-text a {
  color: var(--page-vip-services-glow);
  text-decoration: none;
  font-weight: 600;
}

.page-vip-services__step-text a:hover {
  text-decoration: underline;
}

.page-vip-services__faq-list {
  margin-top: 40px;
}

.page-vip-services__faq-item {
  background-color: var(--page-vip-services-card-bg);
  border: 1px solid var(--page-vip-services-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-vip-services__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--page-vip-services-text-main);
  cursor: pointer;
  background-color: var(--page-vip-services-deep-green);
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-vip-services__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-vip-services__faq-item[open] .page-vip-services__faq-question {
  border-bottom-color: var(--page-vip-services-border);
}

.page-vip-services__faq-question:hover {
  background-color: #1a4f35; /* Slightly lighter deep green on hover */
}

.page-vip-services__faq-qtext {
  flex-grow: 1;
}

.page-vip-services__faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--page-vip-services-gold);
  margin-left: 20px;
}

.page-vip-services__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: var(--page-vip-services-text-secondary);
  background-color: var(--page-vip-services-card-bg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-vip-services__hero-content {
    margin-top: -150px;
  }
  .page-vip-services__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-vip-services__section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .page-vip-services__hero-section {
    padding-top: 10px !important; /* body handles header offset, this is for decorative top padding */
    padding-bottom: 40px;
  }
  .page-vip-services__hero-content {
    margin-top: -100px;
  }
  .page-vip-services__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-vip-services__lead-text {
    font-size: 1.1rem;
  }
  .page-vip-services__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-vip-services__btn-primary,
  .page-vip-services__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-vip-services__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-vip-services__intro-section,
  .page-vip-services__tiers-section,
  .page-vip-services__benefits-section,
  .page-vip-services__join-section,
  .page-vip-services__faq-section,
  .page-vip-services__conclusion-section {
    padding: 40px 0;
  }

  .page-vip-services__section-title {
    font-size: 1.8rem;
  }

  .page-vip-services__section-description {
    font-size: 1rem;
  }

  .page-vip-services__tiers-grid,
  .page-vip-services__benefits-grid,
  .page-vip-services__join-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-vip-services__tier-card,
  .page-vip-services__benefit-item,
  .page-vip-services__step-item {
    padding: 25px;
  }

  .page-vip-services__tier-title,
  .page-vip-services__benefit-title,
  .page-vip-services__step-title {
    font-size: 1.5rem;
  }

  .page-vip-services__faq-question {
    font-size: 1.1rem;
    padding: 15px 20px;
  }

  .page-vip-services img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-vip-services__hero-image-wrapper,
  .page-vip-services__tiers-grid,
  .page-vip-services__benefits-grid,
  .page-vip-services__join-steps,
  .page-vip-services__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}