/* ==========================================================================
   CNXLanternFest 2026 - Premium White Theme Styling Sheet
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&display=swap');

/* CSS Variables – Light / White Theme */
:root {
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;

  --bg-deep: #FDFAF5;
  --bg-section-alt: #F5EFE6;
  --bg-card: rgba(255, 255, 255, 0.92);
  --bg-card-hover: rgba(255, 255, 255, 1);
  --border-glass: rgba(0, 0, 0, 0.08);
  --border-gold: rgba(192, 140, 30, 0.4);

  --primary-gold: #C08022;
  --primary-gold-glow: #D4933A;
  --accent-amber: #E07B18;
  --accent-pink: #D44070;

  --text-dark: #1C1A15;
  --text-body: #3D3830;
  --text-muted: #7A6E5E;
  --text-light: #1C1A15;

  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-glow: 0 8px 32px 0 rgba(192, 128, 34, 0.18);
  --shadow-card: 0 4px 24px 0 rgba(0, 0, 0, 0.08);

  --max-width: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

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

.interactive-bg-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  background: linear-gradient(160deg, #FDFAF5 0%, #F8F0E3 60%, #FDF5E9 100%);
  overflow: hidden;
}

.stars {
  position: absolute;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 15% 20%, rgba(192,128,34,0.06) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(224,123,24,0.05) 0%, transparent 35%);
  animation: softPulse 8s ease-in-out infinite alternate;
}

@keyframes softPulse {
  from { opacity: 0.7; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.03); }
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #F5EFE6; }
::-webkit-scrollbar-thumb { background: rgba(192,128,34,0.35); border-radius: 5px; border: 2px solid #F5EFE6; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-gold); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-dark);
}

.section-title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 3.5rem;
  background: linear-gradient(135deg, var(--text-dark) 20%, var(--primary-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 30%;
  width: 40%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
  border-radius: 2px;
}

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

.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(253, 250, 245, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(192, 128, 34, 0.15);
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 0.5rem 0;
  background: rgba(253, 250, 245, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  font-size: 1.8rem;
  animation: floatLight 3s ease-in-out infinite;
}

@keyframes floatLight {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: var(--text-body);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition-smooth);
  position: relative;
  padding: 0.5rem 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-gold);
  transition: var(--transition-smooth);
}

nav a:hover { color: var(--primary-gold); }
nav a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lang-selector { position: relative; }

.lang-btn {
  background: rgba(192, 128, 34, 0.08);
  border: 1px solid rgba(192, 128, 34, 0.25);
  color: var(--text-body);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  transition: var(--transition-smooth);
}

.lang-btn:hover {
  background: rgba(192, 128, 34, 0.15);
  border-color: var(--primary-gold);
}

.lang-dropdown {
  position: absolute;
  top: 105%;
  right: 0;
  background: #ffffff;
  border: 1px solid rgba(192, 128, 34, 0.2);
  border-radius: 12px;
  list-style: none;
  min-width: 120px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: var(--transition-smooth);
  z-index: 1001;
  overflow: hidden;
}

.lang-selector:hover .lang-dropdown,
.lang-selector.active .lang-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.lang-dropdown li {
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-weight: 500;
  color: var(--text-body);
}

.lang-dropdown li:hover {
  background: rgba(192, 128, 34, 0.08);
  color: var(--primary-gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: var(--font-body);
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-amber) 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 16px rgba(192, 128, 34, 0.35);
}

.btn-primary:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(192, 128, 34, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
  background: rgba(192, 128, 34, 0.08);
}

.btn-small {
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
}

.btn-outline {
  background: transparent;
  color: var(--text-body);
  border: 2px solid var(--border-glass);
}

.btn-outline:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 1.8rem;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
  background: linear-gradient(rgba(4, 4, 15, 0.35), rgba(6, 6, 19, 0.75)), url('assets/hero_lanterns_bg.png') center/cover no-repeat;
}

.hero-content {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.hero-subtitle {
  font-size: 1.35rem;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 0 0 12px rgba(226, 177, 60, 0.5);
}

.hero-title {
  font-size: 5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 40%, var(--primary-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-heading);
  filter: drop-shadow(0 2px 20px rgba(0,0,0,0.4));
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(220, 210, 195, 0.9);
  margin-bottom: 2.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  font-weight: 400;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.countdown-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.countdown-box {
  background: rgba(12, 10, 30, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 177, 60, 0.2);
  border-radius: 16px;
  padding: 1.2rem 1.8rem;
  min-width: 110px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  transition: var(--transition-smooth);
}

.countdown-box:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.countdown-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  line-height: 1;
}

.countdown-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: rgba(180, 165, 140, 0.85);
  margin-top: 0.25rem;
  letter-spacing: 1px;
}

#lantern-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

section {
  padding: 7rem 0;
  position: relative;
}

/* History */
.history-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.history-text h3 {
  font-size: 2rem;
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
}

.history-text p {
  color: var(--text-body);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.history-interactive {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.history-stat {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.85);
  border-left: 4px solid var(--primary-gold);
  border-radius: 0 16px 16px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition-smooth);
}

.history-stat:hover {
  box-shadow: var(--shadow-glow);
  transform: translateX(4px);
}

.history-stat-icon { font-size: 2.5rem; }

.history-stat-info h4 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.history-stat-info p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Activities – alternate section */
#activities {
  background: var(--bg-section-alt) !important;
  border-top: 1px solid rgba(192, 128, 34, 0.12) !important;
  border-bottom: 1px solid rgba(192, 128, 34, 0.12) !important;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.activity-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
}

.activity-img-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

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

.activity-card:hover .activity-img { transform: scale(1.08); }

.activity-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--primary-gold);
  color: var(--primary-gold);
  padding: 0.35rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.activity-content {
  padding: 2rem;
  flex-grow: 1;
}

.activity-content h3 {
  font-size: 1.6rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.activity-content p {
  color: var(--text-body);
  font-size: 0.95rem;
}

/* Package */
.package-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: stretch;
}

.package-card {
  border: 2px solid var(--border-gold);
  background: radial-gradient(circle at top right, rgba(192,128,34,0.07), transparent 60%), #ffffff;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.package-card::before {
  content: 'RECOMMENDED';
  position: absolute;
  top: 25px;
  right: -55px;
  background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-amber) 100%);
  color: white;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.5rem 3rem;
  transform: rotate(45deg);
  letter-spacing: 1px;
}

.package-header { margin-bottom: 2rem; }

.package-tag {
  color: var(--primary-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.package-title {
  font-size: 2.2rem;
  margin: 0.5rem 0;
  color: var(--text-dark);
}

.package-price {
  font-size: 3.5rem;
  font-family: var(--font-heading);
  color: var(--primary-gold);
  font-weight: 800;
}

.package-price span {
  font-size: 1.2rem;
  font-family: var(--font-body);
  color: var(--text-muted);
  font-weight: 400;
}

.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
  color: var(--text-body);
}

.package-features li::before {
  content: '✦';
  color: var(--primary-gold);
  font-size: 1.2rem;
}

.transport-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
}

.transport-info h3 {
  font-size: 1.8rem;
  color: var(--primary-gold);
  margin-bottom: 1.25rem;
}

.transport-info p {
  color: var(--text-body);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

/* Gallery section alternate */
#gallery {
  background: var(--bg-section-alt) !important;
  border-top: 1px solid rgba(192, 128, 34, 0.12) !important;
  border-bottom: 1px solid rgba(192, 128, 34, 0.12) !important;
}

/* Booking */
.booking-section {
  background: var(--bg-section-alt);
}

.booking-wizard {
  max-width: 850px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid rgba(192,128,34,0.15);
}

.wizard-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

.wizard-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(0,0,0,0.08);
  z-index: 1;
}

.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  position: relative;
  flex: 1;
}

.step-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #F5EFE6;
  border: 2px solid rgba(0,0,0,0.12);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.step-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
}

.step-indicator.active .step-circle {
  border-color: var(--primary-gold);
  color: #fff;
  background: var(--primary-gold);
  box-shadow: 0 0 16px rgba(192, 128, 34, 0.35);
}

.step-indicator.active .step-label { color: var(--primary-gold); }

.step-indicator.completed .step-circle {
  background: var(--accent-amber);
  border-color: var(--accent-amber);
  color: #fff;
}

.step-indicator.completed .step-label { color: var(--text-body); }

.wizard-panel {
  display: none;
  animation: fadeIn 0.4s ease-out;
}

.wizard-panel.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width { grid-column: span 2; }

.form-group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-body);
}

.form-group label span { color: var(--accent-pink); }

.form-control {
  background: #FDFAF5;
  border: 1.5px solid rgba(0,0,0,0.12);
  padding: 0.9rem 1.2rem;
  border-radius: 10px;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: var(--transition-smooth);
}

.form-control::placeholder { color: rgba(0,0,0,0.3); }

.form-control:focus {
  border-color: var(--primary-gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(192, 128, 34, 0.12);
}

.ticket-quantity-selector {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: #F5EFE6;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(192, 128, 34, 0.2);
  width: fit-content;
}

.qty-btn {
  background: rgba(192, 128, 34, 0.12);
  border: none;
  color: var(--primary-gold);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  font-weight: 700;
}

.qty-btn:hover {
  background: var(--primary-gold);
  color: #fff;
}

.qty-val {
  font-size: 1.4rem;
  font-weight: 700;
  min-width: 30px;
  text-align: center;
  color: var(--text-dark);
}

.order-summary {
  background: linear-gradient(135deg, rgba(192,128,34,0.06), rgba(224,123,24,0.04));
  border: 1.5px dashed var(--border-gold);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-details h4 { font-size: 1.2rem; color: var(--primary-gold); }
.summary-details p { color: var(--text-muted); font-size: 0.9rem; }
.summary-price { font-size: 1.8rem; font-weight: 800; color: var(--primary-gold); }

.wizard-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  gap: 1rem;
}

.wizard-buttons .btn { min-width: 150px; }

.payment-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.payment-method {
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  background: #FDFAF5;
}

.payment-method.active,
.payment-method:hover {
  border-color: var(--primary-gold);
  background: rgba(192, 128, 34, 0.06);
  box-shadow: 0 4px 16px rgba(192,128,34,0.12);
}

.payment-method-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.payment-method-title { font-weight: 600; font-size: 1rem; color: var(--text-body); }

.payment-details-panel {
  display: none;
  background: #FDFAF5;
  border: 1.5px solid rgba(192,128,34,0.2);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  animation: fadeIn 0.3s ease-out;
}

.payment-details-panel.active { display: block; }

.promptpay-qr-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.promptpay-qr-box p { color: var(--text-muted); }

.pp-logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: #103b68;
  background: white;
  padding: 0.25rem 1.5rem;
  border-radius: 8px;
  letter-spacing: -1px;
  border: 1px solid #eee;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pp-logo span { color: #ea5b0c; }

.qr-placeholder-wrapper {
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  width: 230px;
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(192,128,34,0.15);
}

#pp-qr-canvas { width: 100% !important; height: 100% !important; }

.qr-timer {
  color: var(--accent-pink);
  font-weight: 700;
  font-size: 1rem;
  background: rgba(212,64,112,0.08);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(212,64,112,0.2);
}

.credit-card-wrapper {
  margin-bottom: 2rem;
  perspective: 1000px;
}

.credit-card {
  width: 100%;
  max-width: 380px;
  height: 220px;
  background: linear-gradient(135deg, #2a1f6e 0%, #1a1248 100%);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  margin: 0 auto;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 12px 35px rgba(26,18,72,0.35);
  position: relative;
  overflow: hidden;
}

.credit-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(226,177,60,0.2);
  border-radius: 50%;
  filter: blur(20px);
}

.card-chip {
  width: 45px;
  height: 35px;
  background: linear-gradient(135deg, #e5c060 0%, #b28828 100%);
  border-radius: 6px;
}

.card-number-display {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.4rem;
  letter-spacing: 3px;
  margin: 1.5rem 0;
  word-spacing: 4px;
  color: #fff;
}

.card-info-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: #fff;
}

.card-holder-display {
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: #fff;
}

.card-expiry-display {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.1rem;
  color: #fff;
}

.card-provider-logo {
  font-size: 1.5rem;
  font-weight: 800;
  font-style: italic;
  color: var(--primary-gold);
}

.ticket-success-wrapper {
  text-align: center;
  padding: 1rem 0;
}

.success-badge {
  font-size: 4rem;
  color: #27AE60;
  margin-bottom: 1.5rem;
  animation: popSuccess 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popSuccess {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

.success-title { font-size: 2.2rem; color: var(--primary-gold); margin-bottom: 0.5rem; }
.success-msg { color: var(--text-muted); margin-bottom: 3rem; }

.ticket-mockup {
  background: #ffffff;
  border: 1px solid rgba(192,128,34,0.2);
  border-radius: 16px;
  max-width: 550px;
  margin: 0 auto 3rem auto;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  position: relative;
}

.ticket-header-strip {
  background: linear-gradient(90deg, var(--primary-gold), var(--accent-amber));
  height: 8px;
  width: 100%;
}

.ticket-main {
  padding: 2.5rem 2.5rem 1.5rem 2.5rem;
  border-bottom: 2px dashed rgba(0,0,0,0.1);
  text-align: left;
}

.ticket-main-title {
  font-size: 1.6rem;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.ticket-ref-id {
  font-family: monospace;
  background: #F5EFE6;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--text-dark);
  display: inline-block;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(192,128,34,0.2);
}

.ticket-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.ticket-detail-item label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
  letter-spacing: 0.5px;
}

.ticket-detail-item span {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
}

.ticket-bottom {
  padding: 1.5rem 2.5rem 2.5rem 2.5rem;
  display: block;
}

.ticket-qr-container {
  background: white;
  padding: 0.75rem;
  border-radius: 12px;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,0.1);
}

.ticket-qr-canvas { width: 100% !important; height: 100% !important; }

.ticket-policy { text-align: left; width: 100%; }
.ticket-policy h4 { font-size: 1rem; color: var(--primary-gold); margin-bottom: 0.25rem; }
.ticket-policy p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

.individual-tickets-section {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 2px dashed rgba(0,0,0,0.08);
}

.individual-tickets-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.ticket-ids-list { display: flex; flex-direction: column; gap: 0.75rem; }

.individual-ticket-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #FDFAF5;
  border: 1px solid rgba(192,128,34,0.2);
  border-radius: 10px;
  padding: 0.75rem 1rem;
}

.itc-label { font-size: 0.75rem; color: var(--text-muted); min-width: 80px; flex-shrink: 0; }
.itc-id { font-family: 'Courier New', monospace; font-weight: 700; color: var(--accent-pink); letter-spacing: 0.08em; font-size: 0.95rem; flex: 1; }
.itc-qr { border-radius: 6px; border: 2px solid rgba(192,128,34,0.3); background: #fff; flex-shrink: 0; width: 70px !important; height: 70px !important; padding: 3px; box-sizing: border-box; }

/* Modals */
.history-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(28, 26, 21, 0.60);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.history-modal-overlay.active { display: flex; }

.history-modal {
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  width: 100%;
  max-width: 650px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  padding: 2.5rem;
  position: relative;
  animation: modalPop 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.close-modal-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(0,0,0,0.06);
  border: none;
  color: var(--text-body);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-smooth);
}

.close-modal-btn:hover { background: var(--accent-pink); color: white; }

.history-modal h3 { font-size: 2rem; color: var(--primary-gold); margin-bottom: 2rem; text-align: center; }

.bookings-history-list { display: flex; flex-direction: column; gap: 1.5rem; }

.empty-history-msg { text-align: center; color: var(--text-muted); padding: 3rem 0; font-size: 1.1rem; }

.history-ticket-item {
  border: 1px solid rgba(0,0,0,0.08);
  background: #FDFAF5;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

.history-ticket-item:hover { border-color: var(--primary-gold); box-shadow: 0 4px 16px rgba(192,128,34,0.12); }
.history-ticket-meta h4 { font-size: 1.2rem; color: var(--primary-gold); }
.history-ticket-meta p { color: var(--text-muted); font-size: 0.9rem; }
.history-ticket-actions { display: flex; gap: 0.75rem; }

/* Lookup Modal */
.lookup-modal { max-width: 560px !important; }
.lookup-modal-header { text-align: center; margin-bottom: 2rem; }
.lookup-icon { font-size: 3rem; margin-bottom: 0.75rem; display: block; }
.lookup-subtitle { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-top: 0.5rem; }
.lookup-form-group { margin-bottom: 1.25rem; }

.lookup-form-group label {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.lookup-input {
  width: 100%;
  padding: 0.875rem 1rem;
  background: #FDFAF5;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  color: var(--text-dark);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition-smooth);
  box-sizing: border-box;
}

.lookup-input:focus {
  outline: none;
  border-color: var(--primary-gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(192,128,34,0.12);
}

.lookup-input::placeholder { color: rgba(0,0,0,0.3); }

.lookup-error {
  background: rgba(212,64,112,0.06);
  border: 1px solid rgba(212,64,112,0.25);
  border-radius: 8px;
  color: #C0305A;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.btn-lookup-submit { width: 100%; padding: 1rem; font-size: 1.05rem; margin-top: 0.5rem; }

.lookup-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(192,128,34,0.15);
  border-top-color: var(--primary-gold);
  border-radius: 50%;
  animation: lookupSpin 0.8s linear infinite;
  margin: 0 auto;
}

@keyframes lookupSpin { to { transform: rotate(360deg); } }

.lookup-result-card {
  background: #FDFAF5;
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 1.75rem;
  margin-bottom: 1.25rem;
}

.lookup-result-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(192,128,34,0.15);
}

.lookup-badge {
  background: rgba(39,174,96,0.1);
  border: 1px solid rgba(39,174,96,0.3);
  color: #1E8449;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

.lookup-refid {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-pink);
  letter-spacing: 0.08em;
  font-family: 'Courier New', monospace;
}

.lookup-result-grid { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.lookup-result-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.95rem; }
.lookup-result-label { color: var(--text-muted); font-size: 0.875rem; }
.lookup-result-value { color: var(--text-dark); font-weight: 500; text-align: right; }

.lookup-qr-section {
  text-align: center;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(192,128,34,0.15);
}

.lookup-qr-label { color: var(--primary-gold); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; font-weight: 600; }
.lookup-qr-canvas { border-radius: 12px; border: 2px solid var(--border-gold); padding: 8px; background: #fff; display: block; margin: 0 auto 0.75rem; }
.lookup-qr-reftext { font-size: 0.9rem; color: var(--accent-pink); letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.lookup-qr-hint { color: var(--text-muted); font-size: 0.8rem; }
.lookup-again-btn { width: 100%; padding: 0.875rem; }

.lookup-all-tickets { padding-top: 1.25rem; border-top: 1px solid rgba(192,128,34,0.15); margin-top: 0.5rem; }
.lookup-tickets-grid { display: flex; flex-direction: column; gap: 1rem; margin: 0.75rem 0 1rem; max-height: 340px; overflow-y: auto; padding-right: 4px; }
.lookup-tickets-grid::-webkit-scrollbar { width: 4px; }
.lookup-tickets-grid::-webkit-scrollbar-track { background: transparent; }
.lookup-tickets-grid::-webkit-scrollbar-thumb { background: rgba(192,128,34,0.25); border-radius: 2px; }

.lookup-ticket-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid rgba(192,128,34,0.18);
  border-radius: 12px;
  padding: 0.875rem 1rem;
  transition: border-color 0.2s;
}

.lookup-ticket-card:hover { border-color: var(--primary-gold); box-shadow: 0 2px 12px rgba(192,128,34,0.1); }
.ltc-label { font-size: 0.75rem; color: var(--text-muted); min-width: 85px; flex-shrink: 0; }
.ltc-id { font-family: 'Courier New', monospace; font-weight: 700; color: var(--accent-pink); letter-spacing: 0.07em; font-size: 0.9rem; flex: 1; word-break: break-all; }
.ltc-qr { border-radius: 8px; border: 2px solid rgba(192,128,34,0.3); background: #fff; flex-shrink: 0; width: 60px !important; height: 60px !important; padding: 3px; box-sizing: border-box; }

/* Footer */
footer {
  background: #F0E9DC;
  border-top: 1px solid rgba(192,128,34,0.2);
  padding: 4rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand .logo { margin-bottom: 1.25rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1rem; }
.footer-links h4, .footer-contact h4 { font-size: 1.2rem; color: var(--primary-gold); margin-bottom: 1.5rem; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; transition: var(--transition-smooth); font-weight: 500; }
.footer-links a:hover { color: var(--primary-gold); padding-left: 5px; }
.footer-contact p { color: var(--text-muted); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.footer-bottom { border-top: 1px solid rgba(0,0,0,0.08); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; color: var(--text-muted); font-size: 0.9rem; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
  background: #fff;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  height: 250px;
  transition: var(--transition-smooth);
}

.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-smooth); }
.gallery-item:hover { border-color: var(--border-gold); box-shadow: var(--shadow-glow); transform: translateY(-4px); }
.gallery-item:hover img { transform: scale(1.08); }

.gallery-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(28, 22, 10, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-smooth);
  padding: 1.5rem;
  text-align: center;
}

.gallery-item:hover .gallery-hover { opacity: 1; }
.gallery-zoom { font-size: 2rem; color: var(--primary-gold); margin-bottom: 0.75rem; animation: pulseZoom 2s infinite ease-in-out; }

@keyframes pulseZoom {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.gallery-hover p { color: #ffffff; font-size: 1rem; font-weight: 500; font-family: var(--font-body); }

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(28, 22, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-overlay.active { display: flex; }

.lightbox-content-wrapper {
  position: relative;
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: modalPop 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-content-wrapper img { max-width: 100%; max-height: 75vh; border-radius: 16px; border: 2px solid var(--border-gold); box-shadow: 0 10px 40px rgba(0,0,0,0.5); object-fit: contain; }
.lightbox-caption { margin-top: 1.5rem; color: var(--primary-gold); font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; text-align: center; }

/* Transport Timeline */
.transport-timeline { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; position: relative; }

.transport-timeline::before {
  content: '';
  position: absolute;
  top: 10px;
  bottom: 25px;
  left: 17px;
  width: 2px;
  background: rgba(192,128,34,0.2);
  z-index: 1;
}

.timeline-step { display: flex; gap: 1.5rem; position: relative; }

.timeline-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--primary-gold);
  color: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(192,128,34,0.15);
  flex-shrink: 0;
}

.timeline-content {
  flex: 1;
  background: #FDFAF5;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  transition: var(--transition-smooth);
}

.timeline-step:hover .timeline-content {
  border-color: var(--border-gold);
  background: rgba(192,128,34,0.04);
  box-shadow: 0 4px 16px rgba(192,128,34,0.1);
}

.timeline-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; flex-wrap: wrap; gap: 0.5rem; }

.timeline-time {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-amber);
  background: rgba(224,123,24,0.1);
  padding: 0.2rem 0.8rem;
  border-radius: 30px;
}

.timeline-title { font-size: 1.2rem; color: var(--primary-gold); font-weight: 600; margin: 0; }
.timeline-desc { font-size: 0.95rem; color: var(--text-body); margin: 0; }

@media (max-width: 768px) {
  .timeline-header { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
}

/* Email notification & modals */
.email-notification-banner {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(192,128,34,0.06);
  border: 1px solid rgba(192,128,34,0.2);
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  margin: 1.5rem auto;
  max-width: 600px;
  width: 100%;
  color: var(--text-body);
  font-size: 0.95rem;
  animation: fadeIn 0.5s ease;
}

.email-notification-banner .email-icon { font-size: 1.2rem; color: var(--primary-gold); }

.btn-info {
  background: transparent;
  color: var(--accent-pink);
  border: 2px solid var(--accent-pink);
}

.btn-info:hover {
  background: rgba(212,64,112,0.08);
  transform: scale(1.03);
}

.email-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(28, 22, 10, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.email-modal-overlay.active { display: flex; }

.email-modal {
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  width: 100%;
  max-width: 700px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  position: relative;
  overflow: hidden;
  animation: modalPop 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.email-client-header {
  background: #F5EFE6;
  padding: 1.25rem 2.5rem 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.email-client-dots { display: flex; gap: 6px; }
.email-client-dots .dot { width: 12px; height: 12px; border-radius: 50%; }
.email-client-dots .dot.red { background: #ff5f56; }
.email-client-dots .dot.yellow { background: #ffbd2e; }
.email-client-dots .dot.green { background: #27c93f; }
.email-client-title { font-family: var(--font-body); font-size: 0.9rem; color: var(--text-muted); font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; }

.email-meta-details { background: #FDFAF5; padding: 1rem 1.5rem; border-bottom: 1px solid rgba(0,0,0,0.06); display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.9rem; }
.email-meta-row { display: flex; gap: 0.5rem; color: var(--text-body); }
.email-meta-row .meta-label { color: var(--text-muted); width: 60px; flex-shrink: 0; }
.email-meta-row .meta-value { color: var(--text-dark); word-break: break-all; }

.email-body-container { flex: 1; overflow-y: auto; padding: 2rem 1.5rem; background: #F8F0E3; }

.email-newsletter-card {
  background: #ffffff;
  border: 1px solid rgba(192,128,34,0.15);
  border-radius: 12px;
  max-width: 580px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.email-newsletter-card .email-banner {
  background: linear-gradient(135deg, #C08022 0%, #E07B18 100%);
  padding: 2rem 1.5rem;
  text-align: center;
}

.email-newsletter-card .email-banner h2 { font-family: var(--font-heading); color: #ffffff; font-size: 1.8rem; margin-bottom: 0.25rem; }
.email-newsletter-card .email-banner p { font-family: var(--font-body); font-size: 0.9rem; color: rgba(255,255,255,0.85); letter-spacing: 2px; text-transform: uppercase; }

.email-inner-content { padding: 2rem 1.5rem; }
.email-inner-content p { color: var(--text-body); }

.email-ticket-box { background: #FDFAF5; border: 1px dashed rgba(192,128,34,0.3); border-radius: 8px; padding: 1.25rem; margin: 1.5rem 0; }
.email-table { width: 100%; border-collapse: collapse; }
.email-table td { padding: 0.4rem 0; font-size: 0.95rem; }
.email-table .table-label { color: var(--text-muted); width: 40%; }
.email-table .table-value { color: var(--text-dark); text-align: right; }
.email-itinerary-box { margin: 1.5rem 0; }

.email-timeline { display: flex; flex-direction: column; gap: 1.25rem; position: relative; padding-left: 1.5rem; margin-top: 1rem; }
.email-timeline::before { content: ''; position: absolute; top: 5px; bottom: 5px; left: 5px; width: 1.5px; background: rgba(192,128,34,0.2); }
.email-timeline-item { position: relative; }
.email-timeline-item::before { content: ''; position: absolute; top: 5px; left: -22px; width: 9px; height: 9px; border-radius: 50%; background: var(--primary-gold); border: 2px solid #ffffff; box-shadow: 0 0 5px rgba(192,128,34,0.4); }
.email-timeline-item .time { font-size: 0.85rem; color: var(--accent-amber); font-weight: 700; margin-bottom: 0.15rem; }
.email-timeline-item .desc { font-size: 0.9rem; line-height: 1.5; color: var(--text-body); }

.email-qr-section { display: flex; flex-direction: column; align-items: center; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(0,0,0,0.07); }
.email-qr-wrapper { background: white; padding: 0.75rem; border-radius: 8px; box-shadow: 0 4px 16px rgba(0,0,0,0.1); display: flex; justify-content: center; align-items: center; border: 1px solid rgba(192,128,34,0.2); }
.email-qr-wrapper canvas { display: block; }
.email-footer { background: #F5EFE6; padding: 1.25rem; text-align: center; font-size: 0.75rem; color: var(--text-muted); border-top: 1px solid rgba(0,0,0,0.06); }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

@media print { .email-modal-overlay { display: none !important; } }

/* Map Card */
.map-image-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  margin-bottom: 1.75rem;
  cursor: pointer;
  max-height: 200px;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-card);
}

.map-thumbnail { width: 100%; height: 200px; object-fit: cover; object-position: center 25%; transition: var(--transition-smooth); display: block; }

.map-overlay-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(28, 22, 10, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.map-overlay-hover span {
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--primary-gold);
  color: var(--primary-gold);
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.map-image-card:hover { border-color: var(--primary-gold); box-shadow: var(--shadow-glow); transform: translateY(-2px); }
.map-image-card:hover .map-thumbnail { transform: scale(1.03); }
.map-image-card:hover .map-overlay-hover { opacity: 1; background: rgba(28, 22, 10, 0.45); }

/* Responsive */
@media (max-width: 1024px) {
  .hero-title { font-size: 4rem; }
  .history-layout, .package-layout { grid-template-columns: 1fr; gap: 3rem; }
  .activities-grid { gap: 2rem; }
}

@media (max-width: 768px) {
  header { padding: 0.5rem 0; }
  .menu-toggle { display: block; }

  nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: #ffffff;
    z-index: 999;
    transition: var(--transition-smooth);
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border-right: 3px solid rgba(192,128,34,0.2);
  }

  nav.active { left: 0; }
  nav ul { flex-direction: column; align-items: flex-start; gap: 2.5rem; }
  nav a { font-size: 1.3rem; }
  .hero-title { font-size: 3rem; }
  .hero-subtitle { font-size: 1.2rem; letter-spacing: 2px; }
  .hero-cta { flex-direction: column; align-items: center; gap: 1rem; }
  .hero-cta .btn { width: 100%; max-width: 300px; }
  .countdown-container { flex-wrap: wrap; gap: 1rem; }
  .countdown-box { min-width: 90px; padding: 1rem; }
  .countdown-number { font-size: 2rem; }
  .section-title { font-size: 2.2rem; }
  .activities-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full-width { grid-column: span 1; }
  .payment-selector { grid-template-columns: 1fr; }
  .ticket-bottom { flex-direction: column-reverse; gap: 1.5rem; align-items: flex-start; }
  .ticket-qr-container { align-self: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
}

/* Print */
@media print {
  body * { visibility: hidden; }
  #ticket-print-area, #ticket-print-area * { visibility: visible; }
  #ticket-print-area { position: absolute; left: 0; top: 0; width: 100%; background: white !important; color: black !important; border: 1px solid #ccc; box-shadow: none; }
  .ticket-mockup { background: white !important; color: black !important; max-width: 100%; border: 1px solid #aaa; border-radius: 0; }
  .ticket-header-strip { background: #C08022 !important; }
  .ticket-main-title { color: #C08022 !important; }
  .ticket-ref-id { background: #f5f5f5 !important; color: #000 !important; border: 1px solid #ccc; }
  .ticket-detail-item label { color: #555 !important; }
  .ticket-detail-item span { color: #000 !important; }
  .ticket-bottom { border-top: 1px dashed #ccc !important; }
  .ticket-policy h4 { color: #C08022 !important; }
  .ticket-policy p { color: #555 !important; }
  .ticket-qr-container { border: 1px solid #ccc !important; }
}
