:root {
  --sun: #ffd93d;
  --sky: #6bceff;
  --carnival: #ff6b6b;
  --deep: #1f1f1f;
  --mid: #e8e12c;
  --muted: #8d8d8d;
  --white: #ffffff;
  --offwhite: #f2f2f2;
  --border: #e2e2e2;

  
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  background: var(--offwhite);
  color: var(--deep);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(26, 16, 53, 0.92);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-logo {
  font-size: 1.5rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo .ic {
  animation: spin 8s linear infinite;
  display: inline-block;
}
.nav-logo span {
  color: var(--sun);
}
.nav-cta {
  background: linear-gradient(135deg, var(--carnival), #ff9a3c);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 9px 22px;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 107, 107, 0.45);
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── HERO ── */
.hero {
  background: linear-gradient(160deg, #143b0c 0%, #011205 100%);
  padding: 80px 24px 150px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 55% at 50% 0%,
    rgba(107, 206, 255, 0.2) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.star {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  animation: twinkle 3s infinite alternate;
}
@keyframes twinkle {
  from {
    opacity: 0.15;
  }
  to {
    opacity: 0.9;
  }
}
.hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  color: #fff;
  line-height: 1.05;
  text-shadow: 0 4px 30px rgba(107, 206, 255, 0.35);
  position: relative;
  z-index: 1;
}
.hero h1 em {
  color: var(--sun);
  font-style: normal;
}
.hero-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-top: 12px;
  position: relative;
  z-index: 1;
}
@keyframes float {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-14px);
  }
}
.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: bounce 2s ease-in-out infinite;
  z-index: 1;
  cursor: pointer;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* ── FEAT STRIP ── */
.feat-strip {
  background: var(--deep);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.feat-chip {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  font-weight: 700;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.feat-chip:last-child {
  border-right: none;
}
.feat-chip .ic {
  font-size: 1.1rem;
}

/* ── PAGE LAYOUT ── */
.page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

/* ── STEP TRACKER ── */
.step-tracker {
  display: flex;
  flex-direction: row;
  gap: 0;
  margin-bottom: 36px;
  justify-content: space-between;
}
.tracker-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  padding: 0 0 28px;
  position: relative;
}
.tracker-item::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 28px;
  height: 2px;
  width: calc(100% + 20px);
  background: var(--border);
}
.tracker-item:last-child::before {
  display: none;
}
.tracker-item.done::before {
  background: var(--carnival);
}
.tracker-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  background: var(--white);
  color: var(--muted);
  border: 2px solid var(--border);
  transition: all 0.3s;
  z-index: 1;
}
.tracker-item.active .tracker-dot {
  background: linear-gradient(135deg, var(--carnival), #ff9a3c);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(255, 107, 107, 0.4);
}
.tracker-item.done .tracker-dot {
  background: var(--deep);
  color: #fff;
  border-color: var(--deep);
}
.tracker-label h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--deep);
  margin-top: 6px;
  opacity: 0.6;
}
.tracker-label p {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 2px;
}
.tracker-item.active .tracker-label h4 {
  color: var(--carnival);
  opacity: 1;
}
.tracker-item.done .tracker-label h4 {
  opacity: 1;
}

/* ── FORM AREA ── */
.step-panel {
  display: none;
  animation: stepIn 0.35s ease;
}
.step-panel.active {
  display: block;
}
@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.panel-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(26, 16, 53, 0.07);
  border: 1.5px solid var(--border);
}
.panel-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.7rem;
  color: var(--deep);
  margin-bottom: 4px;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.panel-sub {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 24px;
}

/* ── CALENDAR ── */
.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.cal-month {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  color: var(--deep);
}
.cal-arrow {
  background: none;
  border: 2px solid var(--border);
  border-radius: 10px;
  width: 36px;
  height: 36px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: var(--deep);
}
.cal-arrow:hover {
  border-color: var(--carnival);
  color: var(--carnival);
}
.date-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  margin-bottom: 20px;
}
.day-label {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  padding-bottom: 6px;
}
.cal-day {
  aspect-ratio: 1;
  border: none;
  background: none;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s;
  color: var(--deep);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.cal-day:hover:not(.past):not(.empty) {
  background: rgba(255, 107, 107, 0.1);
  color: var(--carnival);
}
.cal-day.selected {
  background: linear-gradient(135deg, var(--carnival), #ff9a3c);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}
.cal-day.today {
  outline: 2px solid var(--sky);
  outline-offset: 1px;
}
.cal-day.past {
  opacity: 0.25;
  cursor: not-allowed;
}
.cal-day.empty {
  pointer-events: none;
}

/* ── PEOPLE ── */
.people-card {
  background: var(--offwhite);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  border: 1.5px solid var(--border);
  transition: border 0.2s;
}
.people-card:hover {
  border-color: #c4b9e0;
}
.people-info h4 {
  font-size: 0.98rem;
  font-weight: 600;
}
.people-info p {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
}
.counter {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cnt-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.18s;
  color: var(--deep);
}
.cnt-btn:hover {
  border-color: var(--carnival);
  color: var(--carnival);
}
.cnt-val {
  font-size: 1.15rem;
  font-weight: 800;
  min-width: 22px;
  text-align: center;
}
.price-note {
  background: linear-gradient(
    135deg,
    rgba(107, 206, 255, 0.1),
    rgba(255, 217, 61, 0.1)
  );
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(107, 206, 255, 0.2);
}
.price-note span {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}
.price-note strong {
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
}

/* ── SUMMARY ── */
.summary-dark {
  background: linear-gradient(135deg, var(--deep), #868226);
  border-radius: 18px;
  padding: 22px;
  color: #fff;
  margin-bottom: 16px;
}
.sum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.sum-row:last-child {
  border: none;
}
.sum-lbl {
  font-size: 0.84rem;
  opacity: 1;
}
.sum-val {
  font-weight: 600;
  font-size: 0.92rem;
}
.total-pill {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 14px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  margin-bottom: 16px;
}
.total-pill .lbl {
  font-size: 0.9rem;
  font-weight: 700;
  color: #242420;
}
.total-pill .amt {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #242420;
}
.includes-box {
  background: #f0fdf4;
  border-radius: 16px;
  padding: 14px 18px;
  border: 1.5px solid #bbf7d0;
}
.includes-box h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #15803d;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.includes-box ul {
  list-style: none;
}
.includes-box ul li {
  font-size: 0.82rem;
  color: #166534;
  padding: 3px 0;
}
.includes-box ul li::before {
  content: "✓  ";
  font-weight: 700;
}

/* ── PAYMENT FORM ── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 4px;
}
.form-grid .full {
  grid-column: 1/-1;
}
.field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.field input {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: var(--deep);
  outline: none;
  transition: border 0.2s;
  background: #fafafa;
}
.field input:focus {
  border-color: var(--carnival);
  background: #fff;
}
.field input.err {
  border-color: #ef4444;
}
.secure-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  color: var(--muted);
  margin-top: 12px;
  background: var(--offwhite);
  border-radius: 10px;
  padding: 10px 14px;
  border: 1px solid var(--border);
}
.rzp-badge {
  font-size: 0.68rem;
  font-weight: 900;
  background: #3395ff;
  color: #fff;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.3px;
}

/* ── BUTTONS ── */
.step-nav {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.btn-back {
  flex: 1;
  padding: 14px;
  background: #f3f4f6;
  border: none;
  border-radius: 14px;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--deep);
  transition: background 0.2s;
}
.btn-back:hover {
  background: black;
  color: var(--white);
}
.btn-next {
  flex: 2;
  padding: 14px;
  background: linear-gradient(135deg, var(--carnival), #ff9a3c);
  border: none;
  border-radius: 14px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.4px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
  transition:
    transform 0.15s,
    box-shadow 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 107, 107, 0.45);
}
.btn-next:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

/* ── SIDEBAR ── */
.order-sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sidebar-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 24px rgba(26, 16, 53, 0.07);
  border: 1.5px solid var(--border);
}
.sidebar-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  color: var(--deep);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.order-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  font-size: 0.88rem;
}
.order-row .lbl {
  color: var(--deep);
  font-weight: 400;
}
.order-row .val {
  font-weight: 600;
}
.order-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}
.order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0 0;
}
.order-total .lbl {
  font-weight: 700;
  font-size: 0.9rem;
}
.order-total .val {
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--carnival);
}
.order-empty {
  text-align: center;
  padding: 8px 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}
.perks-list {
  list-style: none;
}
.perks-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.82rem;
  color: #374151;
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
}
.perks-list li:last-child {
  border: none;
}
.perks-list .ic {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.trust-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--muted);
  padding: 4px 0;
}
.trust-row .ic {
  font-size: 1rem;
}

/* ── SUCCESS ── */
.success-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 48px 36px;
  text-align: center;
  border: 1.5px solid var(--border);
  box-shadow: 0 4px 24px rgba(26, 16, 53, 0.07);
}
.success-icon {
  font-size: 4.5rem;
  animation: pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes pop {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.success-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
  color: var(--deep);
  margin: 16px 0 8px;
}
.success-sub {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.ticket-card {
  margin: 24px auto;
  background: linear-gradient(135deg, #33681d, #143b0c);
  color: #fff;
  border-radius: 20px;
  padding: 22px;
  max-width: 300px;
  position: relative;
  overflow: hidden;
}
.ticket-card::before {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
}
.ticket-card::after {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
}
.ticket-card small {
  font-size: 0.72rem;
  opacity: 0.55;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ticket-card strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  color: var(--sun);
  letter-spacing: 3px;
  margin-top: 4px;
}
.ticket-card .ticket-date {
  margin-top: 12px;
  font-size: 0.82rem;
  opacity: 0.7;
  padding-top: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
}
.confetti-row {
  font-size: 2rem;
  margin-top: 20px;
  letter-spacing: 6px;
}
.start-over {
  margin-top: 24px;
  padding: 14px 40px;
  background: linear-gradient(135deg, var(--carnival), #ff9a3c);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
  transition: transform 0.15s;
}
.start-over:hover {
  transform: translateY(-2px);
}

/* ── FOOTER ── */
footer {
  background: var(--deep);
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  padding: 24px;
  font-size: 0.82rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }
  .order-sidebar {
    position: static;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-grid .full {
    grid-column: 1;
  }
  nav {
    padding: 12px 18px;
  }
  .page-wrap {
    padding: 40px 16px 60px;
  }
  .panel-card {
    padding: 22px;
  }
  .feat-chip {
    font-size: 0.78rem;
    padding: 12px 14px;
  }
}
