.booking-note {
  background-color: #1a1a2e;
  border: 2px solid #ff4d4d;
  padding: 15px;
  margin: 20px 0;
  border-radius: 8px;
}

.booking-note p {
  color: #ffcccc;
  font-size: 0.95rem;
  margin: 0;
  text-align: center;
}
.skull-glow {
  display: inline-block;
  animation: skull-pulse 1.5s infinite ease-in-out;
  text-shadow: 0 0 8px #ff4d4d, 0 0 16px #ff0000;
}

@keyframes skull-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.fade-slideshow {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1 / 1; /* Forces perfect square box */
  margin: 20px auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 20px #00ffff;
  border: 3px solid #00ffff;
}

.fade-slideshow img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Fills the entire square, no black bars */
  opacity: 0;
  animation: fade 15s infinite;
}

.fade-slideshow img:nth-child(1) { animation-delay: 0s; }
.fade-slideshow img:nth-child(2) { animation-delay: 3s; }
.fade-slideshow img:nth-child(3) { animation-delay: 6s; }
.fade-slideshow img:nth-child(4) { animation-delay: 9s; }
.fade-slideshow img:nth-child(5) { animation-delay: 12s; }

@keyframes fade {
  0%, 20% { opacity: 1; }
  25%, 100% { opacity: 0; }
}
.video-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px #00ffff;
  border: 3px solid #00ffff;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contact-section {
  max-width: 600px;
  margin: 10px auto 30px;      /* tight top + bottom */
  padding: 15px;
  background: #111;
  border: 3px solid #00ffff;
  border-radius: 12px;
  box-shadow: 0 0 25px #00ffff;
  text-align: center;
}


.contact-section h2 {
  color: #00ffff;
  font-size: 1.9rem;
  margin-bottom: 20px;
  text-shadow: 0 0 15px #00ffff;
}

.contact-info p {
  font-size: 1.15rem;
  margin: 12px 0;
  color: #fff;
  text-shadow: 0 0 8px #00ffff;
}

.contact-info a {
  color: #00ffff;
  text-decoration: none;
  transition: 0.3s;
  text-shadow: 0 0 10px #00ffff;
}

.contact-info a:hover {
  color: #fff;
  text-shadow: 0 0 15px #00ffff;
}

.service-area {
  font-style: italic;
  color: #ff00aa;
  text-shadow: 0 0 10px #ff00aa;
  margin-top: 15px;
}

.zombie-glow {
  font-size: 3rem;
  margin-top: 20px;
  animation: zombie-pulse 1.8s ease-in-out infinite;
  text-shadow: 0 0 20px #ff0000;
}

@keyframes zombie-pulse {
  0%, 100% { transform: scale(1); text-shadow: 0 0 15px #ff0000; }
  50% { transform: scale(1.15); text-shadow: 0 0 30px #ff0000; }
}

.pay-btn {
  background: #00ffff;
  color: #000;
  padding: 15px 40px;
  font-size: 1.2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 0 20px #00ffff;
  transition: 0.3s;
}

.pay-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px #00ffff;
}

.payment-note {
  margin-top: 15px;
  color: #ff00aa;
  text-shadow: 0 0 8px #ff00aa;
}

.payment-section {
  max-width: 600px;
  margin: 10px auto;           /* super tight */
  padding: 15px;
  background: #111;
  border: 3px solid #00ffff;
  border-radius: 12px;
  box-shadow: 0 0 25px #00ffff;
  text-align: center;
}

.payment-section h2 {
  color: #00ffff;
  font-size: 1.6rem;
  margin-bottom: 5px;
  text-shadow: 0 0 15px #00ffff;
}


.payment-form {
  margin: 10px 0;
}


.form-group {
  margin-bottom: 8px;
}

.form-group label {
  display: block;
  color: #00ffff;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.form-group input {
  width: 100%;
  padding: 12px;
  background: #000;
  border: 2px solid #00ffff;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 0 10px #00ffff;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row .form-group {
  flex: 1;
}

.confirm-btn {
  width: 100%;
  background: #ff00aa;
  color: #fff;
  padding: 16px;
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 0 25px #ff00aa;
  transition: 0.3s;
  margin-top: 15px;
}

.confirm-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 0 40px #ff00aa;
}

#payment-step h3 {
  color: #00ffff;
  text-shadow: 0 0 15px #00ffff;
  margin-bottom: 15px;  /* reduced */       
}

.modal { display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); }
.modal-content { background: #111; margin: 10% auto; padding: 25px; border: 3px solid #00ffff; border-radius: 12px; max-width: 420px; text-align: center; box-shadow: 0 0 30px #00ffff; }
.close { color: #fff; float: right; font-size: 28px; cursor: pointer; }
.book-now-btn { background: #ff00aa; color: white; padding: 15px 30px; border: none; border-radius: 10px; font-size: 1.3rem; cursor: pointer; box-shadow: 0 0 25px #ff00aa; }
.summary-box { background: #1a1a1a; padding: 15px; border-radius: 8px; margin-bottom: 20px; border: 2px solid #00ffff; }

#calendar { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; margin: 15px 0; }
.calendar-day { padding: 10px; background: #222; color: #fff; text-align: center; cursor: pointer; border-radius: 6px; border: 1px solid #00ffff; }
.calendar-day:hover { background: #00ffff; color: #000; }
.calendar-day.selected { background: #ff00aa; color: #fff; }

.calendar-modal { max-width: 720px; }
.calendar-layout { display: flex; gap: 20px; }
.calendar-side { flex: 1; }
.time-side { flex: 1; border-left: 2px solid #00ffff; padding-left: 20px; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.weekday-header { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; font-size: 12px; margin-bottom: 6px; }
.calendar-day { padding: 10px; text-align: center; cursor: pointer; border: 1px solid #00ffff; border-radius: 6px; }
.calendar-day:hover, .calendar-day.selected { background: #00ffff; color: #000; }
.time-slot { display: block; width: 100%; margin: 6px 0; padding: 10px; background: #222; color: #fff; border: 2px solid #00ffff; border-radius: 8px; cursor: pointer; }
.time-slot:hover { background: #ff00aa; color: #fff; }
#calendar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }

.modal { display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); }
.calendar-modal { background: #111; margin: 5% auto; padding: 20px; width: 90%; max-width: 800px; border: 2px solid #00ffff; border-radius: 10px; }
.calendar-layout { display: flex; gap: 30px; }
.calendar-side { flex: 1; }
#calendar-header { display: flex; justify-content: space-between; align-items: center; color: #00ffff; margin-bottom: 10px; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.calendar-day { padding: 10px; text-align: center; background: #222; color: #fff; cursor: pointer; border-radius: 5px; }
.calendar-day:hover, .calendar-day.selected { background: #00ffff; color: #000; }
.time-side { width: 220px; }
.time-slot { display: block; width: 100%; margin: 5px 0; padding: 8px; background: #222; color: #00ffff; border: 1px solid #00ffff; cursor: pointer; }
.time-slot.selected { background: #00ffff; color: #000; }

.time-side {
  width: 240px;
  max-height: 420px;
  overflow-y: auto;
}

.time-slot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 6px 0;
  padding: 10px 14px;
  background: #1a1a1a;
  color: #00ffff;
  border: 1px solid #00ffff;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
}

.time-slot:hover {
  background: #00ffff;
  color: #000;
}

.time-slot.selected {
  background: #00ffff;
  color: #000;
  font-weight: bold;
}

#addons-section label {
  background: #1a1a1a;
  padding: 10px 14px;
  border: 1px solid #00ffff;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}
#addons-section label:hover {
  background: #00ffff;
  color: #000;
}