/* Enhanced VIP Page Styling */

/* VIP Header */
.vip-header {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/banner4.jpeg');
  background-size: cover;
  background-position: center;
  padding: 7rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vip-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(248, 183, 0, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 1;
}

.vip-header h1, .vip-header p {
  position: relative;
  z-index: 2;
}

.vip-header h1 {
  font-size: 3.5rem;
  margin-bottom: 1.2rem;
  color: white;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7), 0 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  display: inline-block;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 0.5rem 2rem;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  border: 2px solid var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  animation: glowPulse 3s infinite alternate;
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7), 0 2px 4px rgba(0, 0, 0, 0.5);
  }
  100% {
    box-shadow: 0 5px 25px rgba(248, 183, 0, 0.4), 0 0 10px rgba(248, 183, 0, 0.2);
    text-shadow: 0 0 10px rgba(248, 183, 0, 0.5), 0 4px 8px rgba(0, 0, 0, 0.7);
  }
}

.vip-header p {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  font-size: 1.3rem;
  color: white;
  line-height: 1.8;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  background-color: rgba(0, 0, 0, 0.3);
  padding: 1.2rem 2rem;
  border-radius: 8px;
  font-weight: 500;
}

/* VIP Banner */
.vip-banner {
  padding: 0;
  margin-top: -2rem;
  position: relative;
  z-index: 3;
}

.vip-banner .container {
  max-width: 1000px;
}

.vip-banner img {
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border: 4px solid var(--primary-color);
}

/* VIP Benefits Section */
.vip-benefits {
  padding: 6rem 1rem 4rem;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f8b700' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.vip-benefits h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  color: var(--text-dark);
  position: relative;
}

.vip-benefits h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-gradient);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  background-color: white;
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border-top: 4px solid transparent;
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-top-color: var(--primary-color);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(248, 183, 0, 0.05) 0%, rgba(255, 140, 0, 0.1) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(248, 183, 0, 0.1) 0%, rgba(255, 140, 0, 0.2) 100%);
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(248, 183, 0, 0.2);
  font-size: 2.5rem;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(248, 183, 0, 0.2) 0%, rgba(255, 140, 0, 0.3) 100%);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(248, 183, 0, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(248, 183, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(248, 183, 0, 0);
  }
}

.benefit-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 0.8rem;
}

.benefit-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--primary-gradient);
  transition: width 0.4s ease;
}

.benefit-card:hover h3::after {
  width: 50px;
}

.benefit-card p {
  color: #666;
  line-height: 1.6;
}

/* VIP Tiers Section */
.vip-tiers {
  background-color: #f9f9f9;
  padding: 5rem 1rem;
  position: relative;
  overflow: hidden;
}

.vip-tiers::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary-gradient);
}

.vip-tiers h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  color: var(--text-dark);
  position: relative;
}

.vip-tiers h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-gradient);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.tiers-table {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tiers-table table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  overflow: hidden;
}

.tiers-table th, .tiers-table td {
  padding: 1.2rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.tiers-table th {
  background: var(--primary-gradient);
  color: var(--text-dark);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.tiers-table tr:hover, .tiers-table tr.highlight {
  background-color: rgba(248, 183, 0, 0.05);
}

.tiers-table tr:last-child td {
  border-bottom: none;
}

.tiers-table td:first-child {
  font-weight: bold;
  color: var(--text-dark);
}

.note {
  font-style: italic;
  margin-top: 1.5rem;
  text-align: center;
  color: #777;
  background-color: rgba(248, 183, 0, 0.1);
  padding: 1rem;
  border-radius: 8px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* VIP FAQ Section */
.vip-faq {
  padding: 5rem 1rem;
  background-color: #fff;
}

.vip-faq h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  color: var(--text-dark);
  position: relative;
}

.vip-faq h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-gradient);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  margin: 0;
  padding: 1.5rem;
  font-size: 1.2rem;
  color: var(--text-dark);
  background-color: rgba(248, 183, 0, 0.05);
  position: relative;
  cursor: pointer;
}

.faq-item h3::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active h3::after {
  content: '−';
}

.faq-item p {
  padding: 0 1.5rem 1.5rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* VIP Contact Section */
.vip-contact {
  background: linear-gradient(135deg, #b91d22 0%, #8b0000 100%);
  color: var(--text-light);
  text-align: center;
  padding: 5rem 1rem;
  position: relative;
  overflow: hidden;
}

.vip-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.vip-contact h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.vip-contact p {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.2rem;
  line-height: 1.8;
  position: relative;
}

.vip-contact .btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: white;
  color: var(--secondary-color);
  transition: all 0.3s ease;
  position: relative;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.vip-contact .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  background-color: var(--primary-color);
  color: var(--text-dark);
}

/* Scroll Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.benefit-card, .faq-item, .tiers-table {
  opacity: 0;
}

.benefit-card.animated, .faq-item.animated, .tiers-table.animated {
  animation: fadeInUp 0.6s ease-out forwards;
}

.benefit-card:nth-child(2).animated {
  animation-delay: 0.2s;
}

.benefit-card:nth-child(3).animated {
  animation-delay: 0.4s;
}

.benefit-card:nth-child(4).animated {
  animation-delay: 0.6s;
}

.faq-item:nth-child(2).animated {
  animation-delay: 0.2s;
}

.faq-item:nth-child(3).animated {
  animation-delay: 0.4s;
}

.faq-item:nth-child(4).animated {
  animation-delay: 0.6s;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .vip-header h1 {
    font-size: 2.5rem;
    padding: 0.5rem 1.5rem;
  }
  
  .vip-header p {
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
  }
  
  .benefits-grid, .tiers-table {
    overflow-x: auto;
  }
  
  .benefit-card {
    padding: 2rem;
  }
  
  .vip-contact h2 {
    font-size: 2rem;
  }
}
