/* ==========================================================================
   TripcareX Premium Web Application Stylesheet
   Design Language: Deep Midnight, Electric Gradients, Glowing Cyan Accent, Glassmorphic Textures
   ========================================================================== */

/* --- Import Premium Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* --- CSS Variables & Custom Theme --- */
:root {
  --bg-main: #070d19;
  --bg-deep: #03070f;
  --bg-surface: rgba(15, 23, 42, 0.45);
  --bg-surface-hover: rgba(30, 41, 59, 0.7);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(6, 182, 212, 0.4);
  
  --primary-gradient: linear-gradient(135deg, #7c3aed, #06b6d4);
  --primary: #06b6d4;
  --primary-hover: #0891b2;
  --secondary: #8b5cf6;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dark: #0f172a;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -4px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.5);
  --glow-cyan: 0 0 15px rgba(6, 182, 212, 0.3);
}

/* --- Base & Scrollbar Configuration --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

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

/* Custom Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

button, input, select, textarea {
  font-family: inherit;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 15px rgba(6, 182, 212, 0.2); }
  50% { box-shadow: 0 0 25px rgba(6, 182, 212, 0.5); }
  100% { box-shadow: 0 0 15px rgba(6, 182, 212, 0.2); }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.float-anim {
  animation: float 6s ease-in-out infinite;
}

.glow-anim {
  animation: pulseGlow 3s infinite;
}

.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.slide-up {
  animation: slideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ==========================================================================
   Glassmorphic & Typography Utility Classes
   ========================================================================== */
.glass {
  background: var(--bg-surface);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
}

.glass-card {
  background: var(--bg-surface);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(6, 182, 212, 0.25);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(6, 182, 212, 0.1);
  background: var(--bg-surface-hover);
}

.text-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--text-main);
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  font-weight: 600;
  font-family: var(--font-heading);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  font-weight: 600;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   Header / Navigation Bar
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 13, 25, 0.6);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.4s ease;
}

header.scrolled {
  background: rgba(3, 7, 15, 0.9);
  padding: 8px 0;
  box-shadow: var(--shadow-lg);
}

.header-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 48px;
  width: auto;
  border-radius: 4px;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
}

.logo-text span {
  font-size: 16px;
  font-weight: 500;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
  text-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.auth-slot {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* User account bubble */
.user-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  padding: 6px 16px 6px 8px;
  border-radius: 30px;
  border: 1px solid var(--border-color);
}

.user-avatar {
  width: 32px;
  height: 32px;
  background: var(--primary-gradient);
  color: var(--text-main);
  font-family: var(--font-heading);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 13px;
}

.user-info {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-size: 13px;
  font-weight: 600;
}

.btn-logout {
  font-size: 11px;
  color: var(--text-muted);
  cursor: pointer;
  align-self: flex-start;
  transition: color 0.3s ease;
}

.btn-logout:hover {
  color: var(--danger);
}

.mobile-nav-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
}

/* ==========================================================================
   Hero / Immersive Banner Section
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top right, rgba(124, 58, 237, 0.12), transparent),
              radial-gradient(circle at bottom left, rgba(6, 182, 212, 0.08), transparent),
              var(--bg-main);
  padding-top: 100px;
  overflow: hidden;
}

.hero-overlay-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  opacity: 0.6;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.hero-content {
  text-align: left;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.2);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 800;
}

.hero-title span {
  display: block;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visuals {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-globe-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  z-index: 1;
}

.hero-card-stack {
  position: relative;
  width: 320px;
  height: 420px;
  z-index: 2;
}

.hero-main-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.8));
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-main-card img {
  width: 100%;
  height: 60%;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.hero-card-details {
  padding: 20px;
}

.hero-card-details h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.hero-card-badge {
  display: inline-block;
  background: var(--primary-gradient);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero-card-metric {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
}

.hero-floating-badge {
  position: absolute;
  bottom: 40px;
  left: -40px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}

.badge-icon {
  width: 40px;
  height: 40px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   About TripcareX Section
   ========================================================================== */
.section {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 38px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-desc {
  color: var(--text-muted);
  font-size: 15px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-box {
  padding: 24px;
}

.feature-box-icon {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 16px;
}

.feature-box h4 {
  font-size: 17px;
  margin-bottom: 8px;
}

.feature-box p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.about-visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-stat-card {
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 160px;
}

.about-stat-card .num {
  font-size: 40px;
  font-weight: 800;
  font-family: var(--font-heading);
  margin-bottom: 6px;
}

.about-stat-card .lbl {
  font-size: 13px;
  color: var(--text-muted);
}

/* ==========================================================================
   Trip Places / Package Grid
   ========================================================================== */
.places-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.place-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.place-img-container {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.place-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.place-rating-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border-color);
}

.place-rating-badge i {
  color: var(--warning);
}

.place-tag-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary-gradient);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.place-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.place-title {
  font-size: 22px;
  margin-bottom: 8px;
}

.place-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.place-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.place-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.place-info-item i {
  color: var(--primary);
}

.place-price-info {
  display: flex;
  flex-direction: column;
}

.place-price-lbl {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.place-price-val {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
}

.place-actions {
  display: flex;
  gap: 12px;
}

.place-actions button {
  width: 100%;
  justify-content: center;
}

/* ==========================================================================
   Previous Trips Gallery
   ========================================================================== */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 8px 20px;
  border-radius: 30px;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary-gradient);
  color: var(--text-main);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.2);
}

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

.gallery-item {
  position: relative;
  height: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(3, 7, 15, 0.9), transparent 80%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  font-size: 18px;
  margin-bottom: 4px;
}

.gallery-overlay p {
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
}

/* ==========================================================================
   Customer Feedback / Testimonials
   ========================================================================== */
.testimonials-container {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card {
  min-width: 100%;
  padding: 40px;
  text-align: center;
  box-sizing: border-box;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 24px;
  border: 2px solid var(--primary);
  object-fit: cover;
  box-shadow: var(--glow-cyan);
}

.testimonial-quote {
  font-size: 20px;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--text-main);
  position: relative;
}

.testimonial-quote::before {
  content: '“';
  font-size: 64px;
  color: rgba(6, 182, 212, 0.15);
  position: absolute;
  top: -30px;
  left: 20px;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.testimonial-rating {
  color: var(--warning);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.control-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.control-btn:hover {
  background: var(--primary-gradient);
  border-color: transparent;
  transform: scale(1.05);
}

/* ==========================================================================
   Interactive Booking Portal
   ========================================================================== */
.booking-section {
  background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-deep) 100%);
  border-top: 1px solid var(--border-color);
}

.booking-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.booking-wizard-card {
  padding: 30px;
}

.booking-title-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
}

.booking-title-bar h3 {
  font-size: 26px;
}

.booking-badge {
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.25);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
}

/* Multi-step Navigation Indicators */
.step-indicators {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}

.step-indicators::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--border-color);
  z-index: 1;
}

.step-indicator-bar {
  position: absolute;
  top: 14px;
  left: 0;
  height: 2px;
  background: var(--primary-gradient);
  z-index: 2;
  width: 0%;
  transition: width 0.4s ease;
}

.step-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  z-index: 3;
  color: var(--text-muted);
  transition: all 0.4s ease;
}

.step-dot.active {
  border-color: var(--primary);
  color: var(--text-main);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
}

.step-dot.completed {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text-dark);
}

/* Wizard Steps styling */
.wizard-step {
  display: none;
}

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

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

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.form-control {
  width: 100%;
  background: rgba(3, 7, 15, 0.5);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: var(--glow-cyan);
}

.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Custom Booking Checklist Grid */
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 10px;
}

.checklist-item {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  background: rgba(3, 7, 15, 0.3);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.checklist-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.checklist-item input[type="checkbox"] {
  display: none;
}

.checklist-custom-box {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  margin-right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.checklist-custom-box i {
  font-size: 10px;
  color: var(--text-dark);
  display: none;
}

.checklist-item input[type="checkbox"]:checked + .checklist-custom-box {
  background: var(--primary);
  border-color: var(--primary);
}

.checklist-item input[type="checkbox"]:checked + .checklist-custom-box i {
  display: block;
}

.checklist-item.selected-card {
  border-color: var(--primary);
  background: rgba(6, 182, 212, 0.04);
}

.checklist-label-group {
  display: flex;
  flex-direction: column;
}

.checklist-lbl-title {
  font-size: 14px;
  font-weight: 600;
}

.checklist-lbl-desc {
  font-size: 12px;
  color: var(--text-muted);
}

/* Custom Visual Selectors for Transport / Rooms */
.visual-selector-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.visual-select-card {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  background: rgba(3, 7, 15, 0.3);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.visual-select-card input[type="radio"] {
  display: none;
}

.visual-select-card i {
  font-size: 32px;
  color: var(--text-muted);
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.visual-select-card h4 {
  font-size: 15px;
  margin-bottom: 6px;
}

.visual-select-card p {
  font-size: 12px;
  color: var(--text-muted);
}

.visual-select-card:hover {
  background: rgba(255, 255, 255, 0.02);
}

.visual-select-card.active {
  border-color: var(--primary);
  background: rgba(6, 182, 212, 0.04);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.1);
}

.visual-select-card.active i {
  color: var(--primary);
  text-shadow: 0 0 10px rgba(6, 182, 212, 0.2);
}

/* Map Elements styling */
.map-outer-container {
  margin-bottom: 24px;
}

.map-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.map-container {
  width: 100%;
  height: 280px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background: var(--bg-deep);
  z-index: 10;
}

.map-distance-notice {
  font-size: 12px;
  color: var(--primary);
  background: rgba(6, 182, 212, 0.05);
  border: 1px solid rgba(6, 182, 212, 0.15);
  padding: 6px 12px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Wizard Control Buttons */
.wizard-controls {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}

/* Live Receipt/Invoice panel */
.booking-invoice-slip {
  position: sticky;
  top: 110px;
  padding: 30px;
}

.invoice-header {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
  margin-bottom: 20px;
  text-align: center;
}

.invoice-header h4 {
  font-size: 20px;
}

.invoice-header p {
  font-size: 12px;
  color: var(--text-muted);
}

.invoice-tour-info {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--border-color);
  margin-bottom: 20px;
}

.invoice-tour-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text-main);
}

.invoice-tour-text {
  display: flex;
  flex-direction: column;
}

.invoice-tour-name {
  font-size: 16px;
  font-weight: 700;
}

.invoice-tour-days {
  font-size: 12px;
  color: var(--text-muted);
}

.invoice-details-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.invoice-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 13px;
}

.invoice-row-lbl {
  color: var(--text-muted);
  max-width: 60%;
}

.invoice-row-val {
  font-weight: 600;
  text-align: right;
}

.invoice-total-summary {
  border-top: 1px dashed var(--border-color);
  padding-top: 20px;
  margin-bottom: 24px;
}

.invoice-grand-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.invoice-grand-lbl {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-heading);
}

.invoice-grand-val {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
  text-shadow: 0 0 10px rgba(6, 182, 212, 0.2);
}

.invoice-notice {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.02);
  padding: 10px;
  border-radius: 4px;
}

/* Booking Status and Lock Panel */
.auth-lock-card {
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: var(--radius-sm);
  background: rgba(239, 68, 68, 0.03);
  text-align: center;
  border-color: rgba(239, 68, 68, 0.2);
  margin-top: 20px;
}

.auth-lock-card i {
  font-size: 32px;
  color: var(--danger);
  margin-bottom: 12px;
}

.auth-lock-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.auth-lock-card p {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* ==========================================================================
   Modals & Dynamic Form Backdrops
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 7, 15, 0.85);
  backdrop-filter: blur(16px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content-card {
  width: 100%;
  max-width: 440px;
  padding: 40px;
  position: relative;
  transform: translateY(40px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.modal-overlay.active .modal-content-card {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close-btn:hover {
  color: var(--text-main);
}

.modal-title {
  font-size: 28px;
  margin-bottom: 8px;
  text-align: center;
}

.modal-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 30px;
}

.modal-switch-text {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 20px;
}

.modal-switch-text a {
  color: var(--primary);
  font-weight: 600;
}

.modal-switch-text a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Printable Boarding Pass Modal
   ========================================================================== */
.ticket-modal-card {
  max-width: 650px;
  padding: 0;
  overflow: hidden;
  border: none;
  background: transparent;
  box-shadow: none;
}

.ticket-wrapper {
  background: var(--bg-surface);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.ticket-header {
  background: var(--primary-gradient);
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-main);
  position: relative;
}

.ticket-header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ticket-header-logo img {
  height: 38px;
}

.ticket-header-title {
  text-align: right;
}

.ticket-header-title h3 {
  font-size: 18px;
  letter-spacing: 0.1em;
}

.ticket-header-title p {
  font-size: 11px;
  opacity: 0.8;
}

/* Perforation design between ticket components */
.ticket-body {
  padding: 30px;
  background: rgba(3, 7, 15, 0.4);
}

.ticket-perforation-divider {
  display: flex;
  align-items: center;
  position: relative;
  height: 20px;
  margin: 10px 0;
}

.ticket-perforation-divider::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background-image: linear-gradient(to right, var(--border-color) 40%, transparent 40%);
  background-size: 12px 1px;
}

.perforation-circle-left {
  width: 20px;
  height: 20px;
  background: var(--bg-main);
  border-radius: 50%;
  position: absolute;
  left: -40px;
  border-right: 1px solid var(--border-color);
  z-index: 100;
}

.perforation-circle-right {
  width: 20px;
  height: 20px;
  background: var(--bg-main);
  border-radius: 50%;
  position: absolute;
  right: -40px;
  border-left: 1px solid var(--border-color);
  z-index: 100;
}

.ticket-fields-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ticket-field {
  display: flex;
  flex-direction: column;
}

.ticket-field-lbl {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.ticket-field-val {
  font-size: 14px;
  font-weight: 600;
  margin-top: 4px;
}

.ticket-footer {
  padding: 30px;
  background: rgba(3, 7, 15, 0.6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed var(--border-color);
}

.ticket-price-block {
  display: flex;
  flex-direction: column;
}

.ticket-barcode {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.barcode-svg {
  width: 140px;
  height: 35px;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px;
  border-radius: 2px;
}

.barcode-text {
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.ticket-actions-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  padding: 0 10px;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-color);
  padding: 80px 24px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand h4 {
  font-size: 20px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--primary-gradient);
  color: var(--text-main);
  border-color: transparent;
  transform: translateY(-3px);
}

.footer-links h5 {
  font-size: 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-newsletter h5 {
  font-size: 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-newsletter p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex-grow: 1;
}

.footer-copyright {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-terms {
  display: flex;
  gap: 24px;
}

/* ==========================================================================
   Media Queries & Responsiveness
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-visuals {
    order: -1;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .booking-panel {
    grid-template-columns: 1fr;
  }
  
  .booking-invoice-slip {
    position: static;
  }
  
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 42px;
  }
  
  .section-title {
    font-size: 30px;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 77px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 77px);
    background: var(--bg-deep);
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    transition: left 0.4s ease;
    backdrop-filter: blur(16px);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .auth-slot {
    margin-left: 0;
  }
  
  .grid-2col, .visual-selector-row {
    grid-template-columns: 1fr;
  }
  
  .ticket-fields-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 34px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .ticket-fields-grid {
    grid-template-columns: 1fr;
  }
  
  .ticket-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .ticket-header-title {
    text-align: left;
  }
  
  .ticket-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .ticket-barcode {
    align-items: flex-start;
  }
}

/* ==========================================================================
   Print Style Sheet Override for Boarding Pass
   ========================================================================== */
@media print {
  body * {
    visibility: hidden;
  }
  #ticketPrintArea, #ticketPrintArea * {
    visibility: visible;
  }
  #ticketPrintArea {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: white !important;
    color: black !important;
    border: none !important;
  }
  .ticket-wrapper {
    background: white !important;
    color: black !important;
    border: 2px solid black !important;
    box-shadow: none !important;
  }
  .ticket-header {
    background: #000 !important;
    color: #fff !important;
  }
  .ticket-body {
    background: #fff !important;
    color: #000 !important;
  }
  .ticket-footer {
    background: #fff !important;
    color: #000 !important;
  }
  .ticket-field-lbl {
    color: #666 !important;
  }
  .ticket-field-val {
    color: #000 !important;
  }
  .perforation-circle-left, .perforation-circle-right {
    display: none;
  }
  .ticket-actions-row {
    display: none !important;
  }
}
