/* ===== Custom styles beyond Tailwind utilities ===== */

html {
  scroll-behavior: smooth;
}

/* Ticket-stub package cards */
.ticket {
  background: #FBF3E7;
  border-radius: 18px;
  border: 1.5px dashed rgba(36, 28, 21, 0.25);
  box-shadow: 0 14px 28px -16px rgba(36, 28, 21, 0.28);
  display: flex;
  flex-direction: column;
  position: relative;
}

.ticket.featured {
  background: #241C15;
  color: #FBF3E7;
  border-color: rgba(251, 243, 231, 0.35);
}

.ticket-top {
  padding: 26px 22px 18px;
  position: relative;
}

.ticket-notch {
  position: absolute;
  left: 50%;
  bottom: -11px;
  transform: translateX(-50%);
  width: 22px;
  height: 22px;
  background: #FBF3E7;
  border-radius: 50%;
  border-top: 1.5px dashed rgba(36, 28, 21, 0.25);
}

.ticket.featured .ticket-notch {
  background: #241C15;
  border-color: rgba(251, 243, 231, 0.35);
}

.ticket-tag {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #EA580C;
}

.ticket.featured .ticket-tag {
  color: #FB923C;
}

.ticket-price {
  font-weight: 800;
  font-size: 22px;
  margin: 8px 0 4px;
}

.ticket-sub {
  font-size: 13.5px;
  opacity: 0.75;
}

.ticket-bottom {
  padding: 22px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ticket-bottom ul {
  list-style: none;
  margin-bottom: 20px;
  flex: 1;
  padding: 0;
}

.ticket-bottom li {
  font-size: 13.5px;
  padding: 5px 0;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  opacity: 0.88;
}

.ticket-bottom li::before {
  content: '✓';
  color: #F97316;
  font-weight: 700;
  flex-shrink: 0;
}

.ticket.featured .ticket-bottom li::before {
  color: #FB923C;
}

.ticket-btn {
  text-align: center;
  font-weight: 600;
  font-size: 14.5px;
  padding: 12px 18px;
  border-radius: 100px;
  border: 1px solid #d4d4d4;
  transition: all .18s ease;
}

.ticket-btn:hover {
  border-color: #a3a3a3;
}

.ticket.featured .ticket-btn {
  background: #fff;
  color: #EA580C;
  border: none;
}

/* FAQ accordion */
.faq-item {
  border-bottom: 1px solid rgba(36, 28, 21, 0.12);
  padding: 20px 0;
  cursor: pointer;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  gap: 20px;
}

.faq-q .plus {
  font-size: 22px;
  color: #F97316;
  transition: transform .25s ease;
  flex-shrink: 0;
}

.faq-item.open .plus {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  font-size: 14.5px;
  color: rgba(36, 28, 21, 0.7);
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding-top: 10px;
}

/* Sticky mobile booking bar */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: #fff;
  border-top: 1px solid rgba(36, 28, 21, 0.12);
  padding: 12px 18px;
  display: none;
  box-shadow: 0 -8px 24px rgba(36, 28, 21, 0.12);
}

.btn-primary-full {
  display: block;
  width: 100%;
  text-align: center;
  background: #F97316;
  color: #fff;
  font-weight: 700;
  padding: 14px 18px;
  border-radius: 100px;
}

@media (max-width: 720px) {
  .sticky-bar {
    display: block;
  }
  body {
    padding-bottom: 76px;
  }
}