:root {
  /* Brand Colors - Premium Tropical Upgrade */
  --blue-deep: #0A192F;        /* Oceanic Navy */
  --blue-primary: #0EA5E9;     /* Crystalline Azure */
  --blue-light: #38BDF8;       /* Sky Glow */
  --green-lush: #10B981;       /* Jungle Green */
  --orange-accent: #F59E0B;    /* Sunset Orange */
  --sky-blue: #F0F9FF;
  --white: #FFFFFF;
  --dark: #0F172A;
  --gray-light: #F8FAFC;

  /* Premium Gradients */
  --grad-ocean: linear-gradient(135deg, #0A192F 0%, #0EA5E9 100%);
  --grad-sunset: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
  --grad-jungle: linear-gradient(135deg, #10B981 0%, #059669 100%);
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-blur: blur(12px);

  /* Typography */
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Pacifico', cursive;

  /* Spacing */
  --section-padding: 100px 20px;
  --container-width: 1200px;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

img {
  max-width: 110%; /* Slight overflow for parallax feel if needed */
  display: block;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* UI Components */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
}

.ocean-grad { background: var(--grad-ocean); }
.sunset-grad { background: var(--grad-sunset); }
.jungle-grad { background: var(--grad-jungle); }

.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
  border: none;
  text-align: center;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--grad-sunset);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.2);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 30px rgba(245, 158, 11, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--glass-border);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--blue-deep);
  transform: translateY(-4px);
}

/* Section Header Styles */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 3rem;
  color: var(--blue-deep);
  margin-bottom: 10px;
}

.section-tagline {
  font-family: var(--font-accent);
  color: var(--blue-primary);
  font-size: 1.5rem;
  margin-bottom: 5px;
  display: block;
}

/* Wave Divider Component */
.wave-divider {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 10%; /* Aspect ratio */
  overflow: hidden;
}

/* Header & Navigation */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-smooth);
  background: transparent;
}

.menu-toggle {
  display: none;
}

#main-header.scrolled {
  background: rgba(10, 78, 138, 0.9);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#nav-logo {
  height: 60px;
  width: auto;
  transition: var(--transition-smooth);
  mix-blend-mode: multiply;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.scrolled #nav-logo {
  height: 45px;
  mix-blend-mode: normal;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: var(--white);
  font-weight: 600;
  font-family: var(--font-display);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--yellow-accent);
  transition: var(--transition-smooth);
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

/* ── NEW MOBILE HERO SECTION ── */
.hero-mobile-section {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 580px;
  overflow: hidden;
  color: #fff;
}

/* Content block pinned to bottom */
.hero-mobile-content {
  padding-bottom: env(safe-area-inset-bottom, 18px);
}

/* Headline */
.hero-mobile-headline {
  font-size: clamp(3rem, 6vw + 1rem, 5.5rem);
  line-height: 1.1;
  letter-spacing: -1px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Subtitle */
.hero-mobile-sub {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  line-height: 1.6;
  opacity: 0.98;
  max-width: 650px;
}

/* Shared button base */
.hero-btn-primary,
.hero-btn-secondary {
  border-radius: 50px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  -webkit-tap-highlight-color: transparent;
}

.hero-btn-primary:active,
.hero-btn-secondary:active {
  transform: scale(0.97);
  opacity: 0.92;
}

/* Stats bar */
.hero-stats-bar {
  padding: 10px 0 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.hero-stat {
  white-space: nowrap;
}

.hero-stat-divider {
  margin: 0 10px;
  opacity: 0.35;
  font-size: 13px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Strong left anchor for text legibility, fades right to show image */
  background: linear-gradient(
    to right,
    rgba(10, 25, 47, 0.72) 0%,
    rgba(10, 25, 47, 0.35) 55%,
    rgba(10, 25, 47, 0.10) 100%
  );
}

.hero-content {
  max-width: 800px;
}

.hero-badge {
  background: var(--blue-primary);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero h1 {
  font-size: 5rem;
  line-height: 1.1;
  margin-bottom: 15px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.8rem;
  font-family: var(--font-accent);
  color: var(--blue-light);
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 20px;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}

/* Attractions Section */
.attractions {
  padding: var(--section-padding);
  background-color: var(--sky-blue);
  position: relative;
}

.attractions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.attraction-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(10, 78, 138, 0.1);
  transition: var(--transition-bounce);
}

.attraction-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(10, 78, 138, 0.15);
}

.card-img-wrapper {
  height: 200px;
  overflow: hidden;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.attraction-card:hover .card-img-wrapper img {
  transform: scale(1.1);
}

.card-body {
  padding: 25px;
}

.card-body h3 {
  font-size: 1.4rem;
  color: var(--blue-deep);
  margin-bottom: 10px;
}

.card-body p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
}

.explore-btn {
  color: var(--blue-primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}

.explore-btn span {
  transition: var(--transition-smooth);
}

.explore-btn:hover span {
  transform: translateX(5px);
}
/* Ride Auto-Slider */
.ride-slider-wrap {
  overflow: hidden;
  padding: 0.25rem 0 0.5rem;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image:         linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.ride-slider-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: ride-scroll 24s linear infinite;
}
.ride-slider-track:hover { animation-play-state: paused; }
.ride-slider-track--slow { animation-duration: 16s; }

@keyframes ride-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ride-slide-card {
  flex-shrink: 0;
  width: 280px;
  background: white;
  border-radius: 2.5rem;
  overflow: hidden;
  border: 1px solid rgba(10, 25, 47, 0.05);
  box-shadow: 0 4px 20px rgba(10, 25, 47, 0.07);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  cursor: pointer;
}
.ride-slide-card:hover { transform: translateY(-8px); box-shadow: 0 14px 32px rgba(10, 25, 47, 0.13); }
.ride-slide-card .slide-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1s ease; }
.ride-slide-card:hover .slide-img { transform: scale(1.08); }
.ride-slide-body { padding: 1.1rem 1.4rem 1.4rem; }
.ride-slide-body h4 { font-size: 0.95rem; font-weight: 700; color: var(--blue-deep); margin-bottom: 0.3rem; font-family: var(--font-display); }
.ride-slide-body p { font-size: 0.75rem; color: #64748b; line-height: 1.5; margin-bottom: 0.65rem; }
.ride-slide-body a { color: var(--blue-primary); font-weight: 700; font-size: 0.82rem; display: inline-flex; align-items: center; gap: 0.35rem; transition: gap 0.3s ease; }
.ride-slide-body a:hover { gap: 0.6rem; }

/* Calendar Styles */
.calendar-wrapper {
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 30px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  color: #000; /* Black as requested */
  background: rgba(241, 245, 249, 0.5); /* Light translucent background */
}

.calendar-day:hover:not(.disabled) {
  background: var(--sky-blue);
  color: var(--blue-primary);
  border-color: var(--blue-primary);
  transform: translateY(-2px);
}

.calendar-day.selected {
  background: var(--blue-primary) !important;
  color: white !important;
  border-color: var(--azure) !important;
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.4);
  transform: scale(1.05);
}

.calendar-day.disabled {
  color: #94a3b8;
  cursor: not-allowed;
  opacity: 0.3;
}

/* Pricing Section */
.tickets {
  padding: 120px 0 var(--section-padding);
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-primary) 100%);
  position: relative;
  color: var(--white);
}

.tickets-wave-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  transform: rotate(180deg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: center;
}

.price-card {
  background: var(--white);
  color: var(--dark);
  padding: 40px 30px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: var(--transition-bounce);
  position: relative;
}

.price-card.popular {
  transform: scale(1.05);
  border: 4px solid var(--yellow-accent);
  z-index: 10;
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow-accent);
  color: var(--blue-deep);
  padding: 5px 20px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.price-header h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--blue-deep);
}

.price {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--blue-primary);
  margin-bottom: 5px;
}

.price-features {
  margin: 30px 0;
  text-align: left;
}

.price-features li {
  margin-bottom: 12px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-block {
  width: 100%;
}

/* Gallery Section */
.gallery {
  padding: var(--section-padding);
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(0.8);
}

/* Contact Section */
.contact {
  padding: var(--section-padding);
  background-color: var(--gray-light);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-card {
  background: var(--white);
  padding: 25px;
  border-radius: 15px;
  display: flex;
  gap: 20px;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-card i {
  font-size: 2rem;
  background: var(--sky-blue);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.info-card h4 {
  font-size: 1.2rem;
  color: var(--blue-deep);
  margin-bottom: 5px;
}

.placeholder-map {
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.placeholder-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.5);
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 78, 138, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.map-overlay:hover {
  background: rgba(10, 78, 138, 0.6);
}

/* Footer Styles */
.main-footer {
  background: var(--blue-deep);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  height: 60px;
  margin-bottom: 20px;
  background: white;
  padding: 5px;
  border-radius: 10px;
}

.footer-brand p {
  opacity: 0.8;
  margin-bottom: 25px;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 800;
}

.social-links a:hover {
  background: var(--blue-primary);
}

.footer-links h4, .footer-contact h4 {
  margin-bottom: 25px;
  font-size: 1.2rem;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  opacity: 0.7;
}

.footer-links ul li a:hover {
  opacity: 1;
  color: var(--blue-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  opacity: 0.6;
  font-size: 0.9rem;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 25, 47, 0.85);
  backdrop-filter: blur(12px);
  z-index: 2000;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.modal-content {
  background: var(--white);
  width: 100%;
  max-width: 500px;
  border-radius: 40px;
  padding: 0;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  animation: modalPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

@keyframes modalPop {
  from { transform: scale(0.9) translateY(30px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.modal-header {
  padding: 30px;
  text-align: center;
  position: relative;
  background: #f8fafc;
  border-bottom: 1px solid #f1f5f9;
}

.modal-header h3 {
  font-size: 1.5rem;
  color: var(--ocean);
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.close-modal {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 32px;
  height: 32px;
  background: #edf2f7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #64748b;
  font-size: 1.2rem;
}

.close-modal:hover {
  background: #e2e8f0;
  color: var(--ocean);
  transform: rotate(90deg);
}

.modal-body {
  padding: 30px;
}

.wizard-step {
  display: none;
}

.wizard-step.active {
  display: block;
  animation: stepIn 0.4s ease-out;
}

@keyframes stepIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Calendar Styles */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin: 20px 0;
}

.calendar-day-header {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #94a3b8;
  margin-bottom: 10px;
}

/* Consolidated with main calendar styles above */

/* Ticket List */
.ticket-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ticket-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px;
  background: #f8fafc;
  border-radius: 24px;
  border: 1px solid #f1f5f9;
}

.ticket-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.ticket-info {
  flex: 1;
}

.ticket-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ocean);
  margin: 0;
}

.ticket-info p {
  font-size: 0.8rem;
  color: #64748b;
  margin: 2px 0 0;
}

.ticket-price {
  font-weight: 800;
  color: var(--ocean);
  margin-top: 4px;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 15px;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.2s ease;
  color: var(--ocean);
}

.qty-btn:hover {
  border-color: var(--azure);
  background: var(--azure);
  color: white;
}

.qty-val {
  font-weight: 800;
  min-width: 20px;
  text-align: center;
  color: var(--ocean);
}

.booking-footer {
  padding: 30px;
  background: #f8fafc;
  border-top: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-total h5 {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-total p {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--ocean);
  margin: 0;
}

.btn-proceed {
  background: var(--ocean);
  color: white;
  padding: 14px 30px;
  border-radius: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-proceed:hover {
  background: #0d2a4f;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(10, 25, 47, 0.2);
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid #f1f5f9;
  border-radius: 16px;
  background: #f8fafc;
  font-family: inherit;
  font-weight: 600;
  transition: all 0.3s ease;
}

.form-group input:focus {
  border-color: var(--azure);
  background: white;
  outline: none;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.success-step {
  text-align: center;
  padding: 20px 0;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #f0fdf4;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 25px;
}

.success-step h4 {
  font-size: 1.5rem;
  color: var(--ocean);
  margin-bottom: 10px;
}

.success-step p {
  color: #64748b;
  line-height: 1.6;
}

.footer-total {
    text-align: center;
}

/* Advanced Booking Flow Styles */
.wizard-nav {
  display: flex;
  justify-content: space-between;
  padding: 20px 30px;
  background: white;
  border-bottom: 2px solid #f1f5f9;
  position: relative;
}

.wizard-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  opacity: 0.4;
  transition: all 0.3s ease;
  flex: 1;
}

.wizard-nav-item.active {
  opacity: 1;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cbd5e1;
  border: 2px solid white;
  box-shadow: 0 0 0 2px #cbd5e1;
}

.wizard-nav-item.active .nav-dot {
  background: var(--azure);
  box-shadow: 0 0 0 2px var(--azure);
}

.nav-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ocean);
  letter-spacing: 0.05em;
}

.wizard-nav::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #f1f5f9;
}

/* Enhanced Calendar Header */
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.calendar-header h4 {
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ocean);
  margin: 0;
}

.cal-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: white;
  transition: all 0.2s ease;
  color: var(--ocean);
}

.cal-nav-btn:hover {
  background: #f8fafc;
  border-color: var(--azure);
  color: var(--azure);
}

/* Professional Ticket Card */
.ticket-section-label {
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
  padding: 4px 0 8px;
  border-bottom: 1px dashed #e2e8f0;
  margin-bottom: 4px;
}

.ticket-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px;
  background: white;
  border-radius: 20px;
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  margin-bottom: 12px;
}

.ticket-card:hover {
  border-color: var(--azure);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.ticket-card img {
  width: 70px;
  height: 70px;
  border-radius: 15px;
  object-fit: cover;
}

.ticket-details {
  flex: 1;
}

.ticket-details h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ocean);
  margin-bottom: 2px;
}

.ticket-details p {
  font-size: 0.8rem;
  color: #94a3b8;
}

.ticket-pricing {
  margin-top: 5px;
}

.price-main {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--ocean);
}

.price-old {
  font-size: 0.85rem;
  text-decoration: line-through;
  color: #cbd5e1;
  margin-left: 8px;
}

.discount-tag {
  background: #f0fdf4;
  color: #16a34a;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  margin-left: 8px;
}

.add-btn-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.btn-add {
  padding: 6px 16px;
  border: 2px solid var(--ocean);
  color: var(--ocean);
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.85rem;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-add.selected {
  background: var(--ocean);
  color: white;
}

/* Review/Billing Styling */
.billing-summary {
  background: #f8fafc;
  border-radius: 25px;
  padding: 25px;
  margin-bottom: 25px;
}

.summary-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.summary-loc {
  background: #fef9c3;
  color: #854d0e;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding-top: 20px;
  border-top: 1px dashed #cbd5e1;
}

.summary-item label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #94a3b8;
  display: block;
  margin-bottom: 4px;
}

.summary-item span {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ocean);
}

.payment-method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.pay-card {
  padding: 20px;
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pay-card:hover {
  border-color: var(--azure);
  background: #f0f9ff;
}

.pay-card i {
  font-size: 1.5rem;
  margin-bottom: 10px;
  display: block;
}

.pay-card.active {
  border-color: var(--azure);
  box-shadow: 0 5px 15px rgba(14, 165, 233, 0.1);
}

/* Mobile Nav Styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
  }
  
  .menu-toggle .bar {
    width: 30px;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition-smooth);
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--blue-deep);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    z-index: 1001;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    font-size: 1.5rem;
    margin: 15px 0;
  }
  
  .menu-toggle.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
  .menu-toggle.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
}
