/* style/promotions-vip-program.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #ffffff;
  --bg-dark: #26A9E0;
  --button-login: #EA7C07;
}

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

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

.page-promotions-vip-program__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: var(--bg-dark);
  color: var(--text-light);
  text-align: center;
  overflow: hidden;
}

.page-promotions-vip-program__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-promotions-vip-program__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-promotions-vip-program__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-promotions-vip-program__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-light);
}

.page-promotions-vip-program__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--text-light);
}

.page-promotions-vip-program__hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.page-promotions-vip-program__btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--primary-color);
}

.page-promotions-vip-program__btn-primary:hover {
  background-color: #1e87b7;
  border-color: #1e87b7;
}

.page-promotions-vip-program__btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.page-promotions-vip-program__btn-secondary:hover {
  background-color: var(--text-light);
  color: var(--primary-color);
}

.page-promotions-vip-program__btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-promotions-vip-program__btn-large {
  padding: 18px 40px;
  font-size: 1.1em;
}

.page-promotions-vip-program__intro-text,
.page-promotions-vip-program__security-section {
  padding: 80px 0;
  text-align: center;
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.page-promotions-vip-program__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.page-promotions-vip-program__section-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-vip-program__text-block {
  margin-bottom: 20px;
  text-align: left;
}

.page-promotions-vip-program__levels-section {
  padding: 80px 0;
  text-align: center;
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-promotions-vip-program__levels-section .page-promotions-vip-program__section-title {
  color: var(--text-light);
}

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

.page-promotions-vip-program__vip-card {
  background-color: var(--bg-light);
  color: var(--text-dark);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

.page-promotions-vip-program__vip-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions-vip-program__vip-card-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-promotions-vip-program__vip-card-intro {
  font-size: 0.95em;
  margin-bottom: 15px;
}

.page-promotions-vip-program__vip-card-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.page-promotions-vip-program__vip-card-benefits li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  font-size: 0.9em;
}

.page-promotions-vip-program__vip-card-benefits li::before {
  content: '✅';
  position: absolute;
  left: 0;
  top: 0;
}

.page-promotions-vip-program__benefits-section {
  padding: 80px 0;
  text-align: center;
  background-color: var(--bg-light);
  color: var(--text-dark);
}

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

.page-promotions-vip-program__benefit-item {
  background-color: var(--bg-light);
  color: var(--text-dark);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  box-sizing: border-box;
}

.page-promotions-vip-program__benefit-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions-vip-program__benefit-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-promotions-vip-program__benefit-text {
  font-size: 0.95em;
  line-height: 1.5;
}

.page-promotions-vip-program__how-to-join-section {
  padding: 80px 0;
  text-align: center;
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-promotions-vip-program__how-to-join-section .page-promotions-vip-program__section-title {
  color: var(--text-light);
}

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

.page-promotions-vip-program__step-item {
  background-color: var(--bg-light);
  color: var(--text-dark);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  height: 100%;
  box-sizing: border-box;
}

.page-promotions-vip-program__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--text-light);
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-promotions-vip-program__step-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-promotions-vip-program__step-text {
  font-size: 0.95em;
  line-height: 1.5;
}

.page-promotions-vip-program__cta-center {
  margin-top: 60px;
}

.page-promotions-vip-program__security-section .page-promotions-vip-program__section-title {
  color: var(--primary-color);
}

.page-promotions-vip-program__security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-vip-program__feature-item {
  background-color: var(--bg-light);
  color: var(--text-dark);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  box-sizing: border-box;
}

.page-promotions-vip-program__feature-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions-vip-program__feature-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-promotions-vip-program__feature-text {
  font-size: 0.95em;
  line-height: 1.5;
}

.page-promotions-vip-program__faq-section {
  padding: 80px 0;
  background-color: var(--bg-light);
  color: var(--text-dark);
  text-align: center;
}

.page-promotions-vip-program__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-promotions-vip-program__faq-item {
  background-color: var(--bg-light);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.page-promotions-vip-program__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  background-color: #f9f9f9;
  color: var(--text-dark);
  transition: background-color 0.3s ease;
}

.page-promotions-vip-program__faq-question:hover {
  background-color: #f0f0f0;
}

.page-promotions-vip-program__faq-question h3 {
  margin: 0;
  color: inherit;
}
}