/* Premium Membership Page Styles */

/* Premium Hero Section */
.premium-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 2;
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content .container {
  width: 100%;
  max-width: none;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text {
  width: 100%;
  max-width: none;
  text-align: center;
}

.hero-subtitle {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #D4A574;
  margin-bottom: 20px;
  border-left: 3px solid #D4A574;
  padding-left: 15px;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #D4A574 0%, #E6C387 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 50px;
  opacity: 0.9;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  gap: 60px;
  margin-top: 50px;
  justify-content: center;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #D4A574;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Section Headers */
.section-header-premium {
  text-align: center;
  margin-bottom: 80px;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #D4A574;
  margin-bottom: 15px;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #D4A574 0%, #E6C387 100%);
  margin: 0 auto 25px;
}

.section-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Luxury Features Section */
.luxury-features {
  padding: 120px 0;
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.feature-card {
  background: white;
  padding: 50px 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, #D4A574 0%, #E6C387 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, #D4A574 0%, #E6C387 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.feature-card p {
  color: #666;
  line-height: 1.7;
  font-size: 1rem;
}

/* Premium Plans Section */
.premium-plans {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Payment Toggle Styles */
.payment-toggle {
  display: flex;
  justify-content: center;
  margin: 40px 0 20px 0;
}

.toggle-wrapper {
  display: flex;
  background: #f8f9fa;
  border-radius: 50px;
  padding: 4px;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);
}

.toggle-btn {
  padding: 12px 24px;
  border: none;
  background: transparent;
  color: #2c2c2c;
  font-size: 14px;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  min-width: 80px;
}

.toggle-btn.active {
  background: #ffffff;
  color: #D4A574;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  font-weight: 600;
}

.toggle-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.5);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
  padding: 30px 20px 20px 20px;
}

.plan-card {
  background: white;
  border-radius: 25px;
  padding: 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.plan-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
}

.plan-card.featured {
  transform: scale(1.05);
  border: 3px solid #D4A574;
}

.plan-card.featured:hover {
  transform: scale(1.05) translateY(-15px);
}

.plan-ribbon {
  position: absolute;
  top: 20px;
  right: -32px;
  background: linear-gradient(135deg, #D4A574 0%, #E6C387 100%);
  color: white;
  padding: 7px 46px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(45deg);
  z-index: 10;
  white-space: nowrap;
  min-width: 115px;
  text-align: center;
}

.plan-header {
  padding: 50px 40px 30px;
  text-align: center;
  position: relative;
}

.plan-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.plan-card.silver .plan-badge {
  background: linear-gradient(135deg, #C0C0C0 0%, #E8E8E8 100%);
  color: #333;
}

.plan-card.gold .plan-badge {
  background: linear-gradient(135deg, #D4A574 0%, #E6C387 100%);
  color: white;
}

.plan-card.platinum .plan-badge {
  background: linear-gradient(135deg, #B8860B 0%, #DAA520 100%);
  color: white;
}

.plan-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.plan-price {
  margin-bottom: 15px;
}

.discount-text {
  color: #e74c3c;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 10px 0 0 0;
  text-align: center;
}

.currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: #D4A574;
  vertical-align: top;
}

.amount {
  font-size: 3rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 5px;
}

.period {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

.plan-subtitle {
  color: #666;
  font-size: 1rem;
  font-weight: 400;
}

.plan-features {
  padding: 0 40px 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-item i {
  color: #D4A574;
  font-size: 1rem;
  width: 16px;
}

.feature-item span {
  color: #333;
  font-size: 0.95rem;
  font-weight: 500;
}

.plan-footer {
  padding: 30px 40px 50px;
}

.plan-button {
  width: 100%;
  padding: 16px 30px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.plan-button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
  transform: none !important;
}

.silver-btn {
  background: linear-gradient(135deg, #C0C0C0 0%, #E8E8E8 100%);
  color: #333;
}

.silver-btn:hover {
  background: linear-gradient(135deg, #B0B0B0 0%, #D8D8D8 100%);
  transform: translateY(-2px);
}

.silver-btn:disabled {
  background: linear-gradient(135deg, #A0A0A0 0%, #C8C8C8 100%);
  color: #666;
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
}

.silver-btn:disabled:hover {
  background: linear-gradient(135deg, #A0A0A0 0%, #C8C8C8 100%);
  transform: none;
  box-shadow: none;
}

.gold-btn {
  background: linear-gradient(135deg, #D4A574 0%, #E6C387 100%);
  color: white;
}

.gold-btn:hover {
  background: linear-gradient(135deg, #C49464 0%, #D6B377 100%);
  transform: translateY(-2px);
}

.platinum-btn {
  background: linear-gradient(135deg, #B8860B 0%, #DAA520 100%);
  color: white;
}

.platinum-btn:hover {
  background: linear-gradient(135deg, #A8760B 0%, #CAA510 100%);
  transform: translateY(-2px);
}

/* Premium CTA Section */
.premium-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: white;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 25px;
}

.cta-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 50px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 35px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-premium.primary {
  background: linear-gradient(135deg, #D4A574 0%, #E6C387 100%);
  color: white;
}

.btn-premium.primary:hover {
  background: linear-gradient(135deg, #C49464 0%, #D6B377 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(212, 165, 116, 0.4);
}

.btn-premium.secondary {
  background: transparent;
  color: #D4A574;
  border: 2px solid #D4A574;
}

.btn-premium.secondary:hover {
  background: #D4A574;
  color: white;
  transform: translateY(-3px);
}

/* FAQ Section */
.premium-faq {
  padding: 120px 0;
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.faq-item {
  background: #fafafa;
  padding: 40px;
  border-radius: 15px;
  border-left: 4px solid #D4A574;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: white;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.faq-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.faq-item p {
  color: #666;
  line-height: 1.7;
  font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .premium-hero {
    position: relative;
    padding: 20px 0 60px;
    height: auto;
    min-height: 100vh;
    margin-top: 80px;
  }
  
  .hero-content {
    position: relative;
    padding: 20px 0;
    z-index: 2;
  }
  
  .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  
  .plans-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .plan-card.featured {
    transform: none;
  }
  
  .plan-card.featured:hover {
    transform: translateY(-15px);
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-premium {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .premium-hero {
    position: relative;
    padding: 10px 0 40px;
    height: auto;
    min-height: 100vh;
    margin-top: 80px;
  }
  
  .hero-content {
    position: relative;
    padding: 15px 0;
    z-index: 2;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .feature-card,
  .plan-header,
  .plan-features,
  .faq-item {
    padding: 30px 25px;
  }
}