/* Tickets Section */
.tickets {
  padding: 80px 0;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.early-bird-banner {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.pricing-toggle {
  padding: 40px 0;
  background: white;
  text-align: center;
}

.toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.toggle-label {
  font-weight: 500;
  color: #64748b;
}

.toggle-label.active {
  color: #2563eb;
  font-weight: 600;
}

.pricing-note {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 1rem 2rem;
  border-radius: 25px;
  color: #1e40af;
  font-weight: 600;
  display: inline-block;
}

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.ticket-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.1);
  transition: all 0.3s ease-in-out;
  border: 2px solid transparent;
  position: relative;
}

.ticket-card.featured {
  background: linear-gradient(145deg, #dbeafe 0%, #bfdbfe 100%);
  border-color: #3b82f6;
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.2);
}

.ticket-card.premium {
  background: linear-gradient(145deg, #fef3c7 0%, #fde68a 100%);
  border-color: #f59e0b;
}

.ticket-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(37, 99, 235, 0.2);
  border-color: rgba(59, 130, 246, 0.3);
}

.ticket-card.featured:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.25);
}

.ticket-header {
  margin-bottom: 2rem;
}

.ticket-type {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1e293b;
}

.ticket-badge {
  display: inline-block;
  background: linear-gradient(135deg, #64748b 0%, #94a3b8 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.ticket-badge.popular {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.price-container {
  margin-bottom: 2rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.price-original {
  font-size: 1.5rem;
  text-decoration: line-through;
  opacity: 0.6;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.price-note {
  font-size: 0.9rem;
  color: #64748b;
}

.features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.features li {
  padding: 0.5rem 0;
  color: #64748b;
  font-size: 0.9rem;
}

.ticket-button {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  width: 100%;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.ticket-button:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(29, 78, 216, 0.4);
}

.ticket-note {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 1rem;
}

/* Group Discounts */
.group-discounts {
  padding: 80px 0;
  background: white;
}

.discount-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.discount-card {
  background: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
}

.discount-percent {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 1rem 0;
}

.discount-note {
  text-align: center;
  color: #64748b;
}

.discount-note a {
  color: #2563eb;
  text-decoration: none;
}

/* What's Included */
.whats-included {
  padding: 80px 0;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.included-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
}

.included-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.faq-item {
  background: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
}

.faq-item h3 {
  color: #1e293b;
  margin-bottom: 1rem;
}

.faq-item p {
  color: #64748b;
}

/* Tickets Page Responsive Styles */
@media (max-width: 768px) {
  .ticket-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .ticket-card.featured {
    transform: none;
  }

  .ticket-card.featured:hover {
    transform: translateY(-5px);
  }

  .toggle-wrapper {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .tickets,
  .group-discounts,
  .whats-included,
  .faq-section {
    padding: 60px 0;
  }

  .ticket-card {
    padding: 1.5rem;
  }
}
