/* style/promotions-vip-program.css */
.page-promotions-vip-program {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0A2239; /* Main dark blue background */
  line-height: 1.6;
}

.page-promotions-vip-program a {
  color: #FFD700; /* Gold for links */
  text-decoration: none;
}

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

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

.page-promotions-vip-program__hero {
  background: linear-gradient(135deg, #0A2239 0%, #1A3A5A 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-vip-program__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract_luxury,geometric_patterns,dark_blue_gold]');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-promotions-vip-program__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-promotions-vip-program__hero-subtitle {
  font-size: 1.3em;
  color: #C0C0C0;
  max-width: 800px;
  margin: 0 auto 40px auto;
  position: relative;
  z-index: 1;
}

.page-promotions-vip-program__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A2239; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions-vip-program__hero-button:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
}

.page-promotions-vip-program__section {
  padding: 80px 0;
  text-align: center;
}

.page-promotions-vip-program__section:nth-of-type(even) {
  background-color: #0F2A47; /* Slightly lighter dark blue for alternating sections */
}

.page-promotions-vip-program__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.page-promotions-vip-program__section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #FFD700;
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-promotions-vip-program__description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 60px auto;
  color: #C0C0C0;
}

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

.page-promotions-vip-program__grid-item {
  background-color: #1A3A5A; /* Dark blue background for grid items */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-vip-program__grid-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions-vip-program__grid-item h3 {
  color: #FFD700; /* Gold for item titles */
  font-size: 1.8em;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-promotions-vip-program__grid-item p {
  color: #E0E0E0;
  font-size: 1em;
}

.page-promotions-vip-program__icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

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

.page-promotions-vip-program__vip-card {
  background-color: #1A3A5A;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promotions-vip-program__vip-card h3 {
  color: #FFD700;
  font-size: 2em;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-promotions-vip-program__vip-card p {
  color: #E0E0E0;
  font-size: 1em;
  line-height: 1.8;
}

.page-promotions-vip-program__vip-card strong {
  color: #FFD700;
}

.page-promotions-vip-program__vip-image {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.page-promotions-vip-program__note {
  margin-top: 40px;
  font-style: italic;
  color: #C0C0C0;
}

.page-promotions-vip-program__cta-buttons {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-promotions-vip-program__button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2239;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions-vip-program__button:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-promotions-vip-program__button--secondary {
  background-color: #0F2A47;
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: none;
}

.page-promotions-vip-program__button--secondary:hover {
  background-color: #FFD700;
  color: #0A2239;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions-vip-program__benefit-item {
  display: flex;
  align-items: flex-start;
  text-align: left;
  margin-bottom: 40px;
  background-color: #1A3A5A;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-vip-program__benefit-item:last-child {
  margin-bottom: 0;
}

.page-promotions-vip-program__benefit-icon {
  width: 60px;
  height: 60px;
  margin-right: 25px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.4));
}

.page-promotions-vip-program__benefit-item h3 {
  color: #FFD700;
  font-size: 1.6em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-promotions-vip-program__benefit-item p {
  color: #E0E0E0;
  font-size: 1em;
}

.page-promotions-vip-program__cta-bottom {
  margin-top: 80px;
  background-color: #0F2A47;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-vip-program__cta-bottom p {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 30px;
}

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

.page-promotions-vip-program__step-item {
  background-color: #1A3A5A;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-promotions-vip-program__step-item:hover {
  transform: translateY(-5px);
}

.page-promotions-vip-program__step-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-promotions-vip-program__step-item h3 {
  color: #FFD700;
  font-size: 1.7em;
  margin-bottom: 15px;
}

.page-promotions-vip-program__step-item p {
  color: #E0E0E0;
  font-size: 1em;
}

.page-promotions-vip-program__faq-item {
  background-color: #1A3A5A;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-vip-program__faq-item h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promotions-vip-program__faq-item h3::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-promotions-vip-program__faq-item h3.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promotions-vip-program__faq-item p {
  color: #E0E0E0;
  font-size: 1em;
  display: none;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.page-promotions-vip-program__faq-item p.active {
  display: block;
}

.page-promotions-vip-program__cta-final {
  background: linear-gradient(135deg, #1A3A5A 0%, #0A2239 100%);
  padding: 100px 0;
  box-shadow: inset 0 10px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions-vip-program__cta-final .page-promotions-vip-program__section-title {
  color: #FFD700;
}

.page-promotions-vip-program__cta-final .page-promotions-vip-program__description {
  color: #C0C0C0;
  margin-bottom: 50px;
}

.page-promotions-vip-program__button--large {
  padding: 20px 40px;
  font-size: 1.3em;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promotions-vip-program__hero-title {
    font-size: 2.8em;
  }
  .page-promotions-vip-program__section-title {
    font-size: 2em;
  }
  .page-promotions-vip-program__benefit-item {
    flex-direction: column;
    text-align: center;
  }
  .page-promotions-vip-program__benefit-icon {
    margin: 0 auto 20px auto;
  }
}

@media (max-width: 768px) {
  .page-promotions-vip-program__hero {
    padding: 80px 0;
  }
  .page-promotions-vip-program__hero-title {
    font-size: 2.2em;
  }
  .page-promotions-vip-program__hero-subtitle {
    font-size: 1.1em;
  }
  .page-promotions-vip-program__hero-button,
  .page-promotions-vip-program__button,
  .page-promotions-vip-program__button--large {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-vip-program__section {
    padding: 60px 0;
  }
  .page-promotions-vip-program__section-title {
    font-size: 1.8em;
  }
  .page-promotions-vip-program__description {
    font-size: 0.95em;
    margin-bottom: 40px;
  }
  .page-promotions-vip-program__vip-levels,
  .page-promotions-vip-program__grid,
  .page-promotions-vip-program__steps {
    grid-template-columns: 1fr;
  }
  .page-promotions-vip-program__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions-vip-program__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-vip-program__section-title {
    font-size: 1.5em;
  }
  .page-promotions-vip-program__vip-card h3 {
    font-size: 1.8em;
  }
  .page-promotions-vip-program__faq-item h3 {
    font-size: 1.2em;
  }
  .page-promotions-vip-program__cta-bottom p {
    font-size: 1.1em;
  }
}