/* ========================================
   PAGE TICKETS - STYLES PERSONNALISÉS
   ======================================== */

/* Hero Section */
.ticket-hero {
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}

.ticket-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 226, 166, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.ticket-hero .container {
  position: relative;
  z-index: 1;
}

.ticket-badge-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.ticket-badge-new {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--brand), #22ffa8);
  color: #0b0f14;
  border-radius: 20px;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(0, 226, 166, 0.3);
}

/* Feature Cards */
.ticket-feature-card {
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  transition: all var(--speed-2);
  height: 100%;
}

.ticket-feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 226, 166, 0.3);
  box-shadow: 0 10px 30px rgba(0, 226, 166, 0.1);
}

.ticket-feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 226, 166, 0.1), rgba(26, 188, 156, 0.05));
  border: 1px solid rgba(0, 226, 166, 0.2);
  border-radius: 50%;
  font-size: 1.8rem;
  color: var(--brand);
}

/* Steps / Timeline */
.ticket-steps {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.ticket-steps::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(180deg, var(--brand), rgba(0, 226, 166, 0.2));
}

.ticket-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.ticket-step:last-child {
  margin-bottom: 0;
}

.ticket-step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand), #1abc9c);
  color: #0b0f14;
  font-weight: 800;
  font-size: 1.2rem;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 226, 166, 0.3);
  position: relative;
  z-index: 2;
}

.ticket-step-content {
  flex: 1;
  padding-top: 0.5rem;
}

.ticket-step-content h3 {
  margin-bottom: 0.5rem;
}

/* Type Cards */
.ticket-type-card {
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  transition: all var(--speed-2);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ticket-type-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand);
  box-shadow: 0 15px 40px rgba(0, 226, 166, 0.15);
}

.ticket-type-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 226, 166, 0.15), rgba(26, 188, 156, 0.08));
  border: 2px solid rgba(0, 226, 166, 0.3);
  border-radius: var(--radius);
  font-size: 2.2rem;
  color: var(--brand);
  transition: all var(--speed-2);
}

.ticket-type-card:hover .ticket-type-icon {
  background: linear-gradient(135deg, rgba(0, 226, 166, 0.25), rgba(26, 188, 156, 0.15));
  transform: scale(1.1);
}

.ticket-type-card .muted {
  flex-grow: 1;
  margin-bottom: 1rem;
}

/* FAQ */
.ticket-faq {
  max-width: 800px;
  margin: 0 auto;
}

.ticket-faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all var(--speed-1);
}

.ticket-faq-item:hover {
  border-color: rgba(0, 226, 166, 0.3);
}

.ticket-faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--speed-1);
}

.ticket-faq-item summary::-webkit-details-marker {
  display: none;
}

.ticket-faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--brand);
  font-weight: 300;
  transition: transform var(--speed-1);
}

.ticket-faq-item[open] summary::after {
  transform: rotate(45deg);
}

.ticket-faq-item summary:hover {
  color: var(--brand);
}

.ticket-faq-item p {
  padding: 0 1.5rem 1.25rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* CTA Box */
.ticket-cta-box {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(0, 226, 166, 0.08), rgba(26, 188, 156, 0.04));
  border: 1px solid rgba(0, 226, 166, 0.2);
  border-radius: var(--radius);
}

/* Responsive */
@media (max-width: 768px) {
  .ticket-hero {
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .ticket-steps::before {
    left: 16px;
  }

  .ticket-step {
    gap: 1rem;
  }

  .ticket-step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .ticket-feature-card,
  .ticket-type-card {
    padding: 1.5rem;
  }

  .ticket-cta-box {
    padding: 2rem 1.5rem;
  }
}

/* Bouton sizing */
.btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
}