/* =========================================
   BOOKING PAGE - Selaras dengan home
   ========================================= */
.sf-booking {
  position: relative;
  background: #020617;
  min-height: 100svh;
  padding: clamp(100px, 12vw, 140px) 0;
  overflow: hidden;
}

.sf-booking-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.18), transparent 60%),
    url("../img/story-stage.jpg") center / cover no-repeat;
  opacity: 0.1;
  z-index: 0;
}

.sf-booking-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.sf-booking-header {
  text-align: center;
  margin-bottom: clamp(50px, 8vw, 80px);
}

.sf-booking-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 16px;
  font-weight: 600;
}

.sf-booking-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 14px;
}

.sf-booking-meta {
  font-size: 1rem;
  color: #cbd5f5;
  opacity: 0.85;
}

/* Layout Grid */
.sf-booking-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(40px, 5vw, 60px);
}

.sf-booking-main {
  /* utama */
}

/* Ticket Card (sama style dengan home) */
.sf-booking-ticket-card {
  background: linear-gradient(
    145deg,
    rgba(15, 23, 42, 0.55),
    rgba(2, 6, 23, 0.95)
  );
  border-radius: 28px;
  padding: 38px 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.sf-booking-ticket-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.sf-highlighted {
  border-color: #d4af37;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
}

.sf-ticket-info {
  flex: 1;
}

.sf-ticket-name {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.sf-ticket-desc {
  font-size: 0.95rem;
  color: #cbd5f5;
  opacity: 0.9;
  line-height: 1.6;
}

.sf-ticket-action {
  text-align: right;
}

.sf-ticket-old {
  font-size: 1rem;
  color: #f87171;
  text-decoration: line-through;
  margin-bottom: 6px;
}

.sf-ticket-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
}

/* Form Quantity */
.sf-form-group {
  margin: 32px 0 40px;
}

.sf-form-group label {
  display: block;
  font-size: 1rem;
  margin-bottom: 12px;
  color: #e2e8f0;
}

.sf-quantity-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.sf-quantity-wrapper input {
  width: 80px;
  padding: 12px;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: white;
  font-size: 1.3rem;
}

.qty-btn {
  width: 48px;
  height: 48px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid #d4af37;
  border-radius: 50%;
  color: #d4af37;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.25s;
}

.qty-btn:hover {
  background: #d4af37;
  color: #020617;
}

.sf-total-price {
  font-size: 1.3rem;
  font-weight: 600;
}

.sf-total-price span {
  color: #d4af37;
}

/* Sidebar */
.sf-booking-sidebar {
  /* ... */
}

.sf-section-subtitle {
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: #d4af37;
}

.sf-other-tickets {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sf-small {
  padding: 24px 28px;
}

.sf-small .sf-ticket-name {
  font-size: 1.25rem;
}

.sf-small .sf-ticket-price {
  font-size: 1.5rem;
}

.sf-btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid #d4af37;
  color: #d4af37;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
}

.sf-btn-secondary:hover {
  background: #d4af37;
  color: #020617;
}

/* Button CTA (sama dengan home) */
.sf-btn-cta.sf-btn-large {
  width: 100%;
  padding: 18px 32px;
  font-size: 1.1rem;
}

/* Mobile */
@media (max-width: 992px) {
  .sf-booking-container {
    grid-template-columns: 1fr;
  }

  .sf-booking-ticket-card {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
  }

  .sf-ticket-action {
    width: 100%;
    text-align: left;
    margin-top: 20px;
  }

  .sf-ticket-price {
    font-size: 2rem;
  }
}
