/* styles.css */
@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');

:root {
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Colors */
  --bg-dark: #0f1115;
  --bg-card: #181b22;
  --bg-input: #20242e;
  --accent-gold: #f59e0b;
  --accent-sunset-start: #ff7e5f;
  --accent-sunset-end: #feb47b;
  --success: #10b981;
  --info: #3b82f6;
  --error: #ef4444;
  --text-primary: #f3f4f6;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  --border: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(245, 158, 11, 0.5);

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-gold: 0 10px 25px -5px rgba(245, 158, 11, 0.3);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  line-height: 1.5;
}

/* Scrollbar styles */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-input);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Gradients */
.gradient-text {
  background: linear-gradient(135deg, var(--accent-sunset-start) 0%, var(--accent-sunset-end) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-bg {
  background: linear-gradient(135deg, var(--accent-sunset-start) 0%, var(--accent-sunset-end) 100%);
}

.glass-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  border-radius: 16px;
}

/* Layout */
header {
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background-color: rgba(15, 17, 21, 0.85);
  backdrop-filter: blur(8px);
  z-index: 100;
}

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

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

.view-selector {
  display: flex;
  background-color: var(--bg-input);
  border-radius: 12px;
  padding: 0.25rem;
  border: 1px solid var(--border);
}

.view-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.view-btn:hover {
  color: var(--text-primary);
}

.view-btn.active {
  background-color: var(--bg-card);
  color: var(--accent-gold);
  box-shadow: var(--shadow-sm);
}

main {
  flex: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* Demo Controller Widget */
.demo-controller {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(254, 180, 123, 0.02) 100%);
  border: 1px dashed var(--accent-gold);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.demo-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent-gold);
  margin-right: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.demo-btn {
  background-color: var(--bg-input);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.demo-btn:hover {
  background-color: var(--accent-gold);
  color: var(--bg-dark);
  border-color: var(--accent-gold);
}

.demo-btn-primary {
  background-color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  color: var(--bg-dark);
}

.demo-btn-primary:hover {
  opacity: 0.9;
  background-color: var(--accent-gold);
}

/* Views */
.view-panel {
  display: none;
  animation: fade-in 0.3s ease-out forwards;
}

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

/* Browse View */
.browse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.tour-card {
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
  border-color: rgba(245, 158, 11, 0.2);
}

.tour-img-container {
  height: 200px;
  position: relative;
  background-color: #2a2e3d;
  background-size: cover;
  background-position: center;
}

.tour-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-md);
}

.tour-pool-status {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(0deg, rgba(15, 17, 21, 0.95) 0%, rgba(15, 17, 21, 0) 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pool-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.pool-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  box-shadow: 0 0 8px var(--accent-gold);
}

.pool-dot.forming {
  background-color: var(--accent-gold);
  animation: pulse 1.5s infinite;
}

.pool-dot.confirmed {
  background-color: var(--success);
  box-shadow: 0 0 8px var(--success);
}

.pool-dot.full {
  background-color: var(--info);
  box-shadow: 0 0 8px var(--info);
}

.tour-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tour-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.tour-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.tour-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.tour-price-box .label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.tour-price-box .price {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--text-primary);
}

.tour-price-box .price-unit {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.tour-btn {
  background: var(--bg-input);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tour-btn:hover {
  background: linear-gradient(135deg, var(--accent-sunset-start) 0%, var(--accent-sunset-end) 100%);
  color: var(--bg-dark);
  border-color: transparent;
  transform: scale(1.03);
}

/* Booking View Layout */
.booking-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
}

.booking-step {
  display: none;
}

.booking-step.active {
  display: block;
  animation: step-appear 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.step-indicator-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  position: relative;
}

.step-indicator-bar::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--bg-input);
  z-index: 1;
}

.step-dot {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--bg-input);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-secondary);
  z-index: 2;
  position: relative;
  transition: all 0.3s ease;
}

.step-dot.active {
  background-color: var(--bg-card);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.2);
}

.step-dot.completed {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--bg-dark);
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

input, select, textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background-color: var(--bg-input);
  border: 1px solid var(--border);
  color: var(--text-primary);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.2s ease;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.input-with-hint {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.input-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
}

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

.btn-nav {
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
}

.btn-nav.btn-back {
  background-color: transparent;
  color: var(--text-secondary);
}

.btn-nav.btn-back:hover {
  color: var(--text-primary);
  background-color: var(--bg-input);
}

.btn-nav.btn-next {
  background-color: var(--accent-gold);
  color: var(--bg-dark);
  border: none;
  margin-left: auto;
}

.btn-nav.btn-next:hover {
  opacity: 0.93;
  transform: translateY(-1px);
}

.btn-nav:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* Phone OTP verification simulation input */
.otp-input-container {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin: 1.5rem 0;
}

.otp-box {
  width: 3.5rem;
  height: 3.5rem;
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  font-family: var(--font-heading);
  border-radius: 10px;
  background-color: var(--bg-input);
  border: 2px solid var(--border);
  color: var(--accent-gold);
  transition: all 0.2s ease;
}

.otp-box:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

.resend-otp {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.resend-otp:hover {
  color: var(--accent-gold);
}

/* Pickup options styling */
.pickup-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.pickup-option {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem;
  background-color: var(--bg-input);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pickup-option.selected {
  border-color: var(--accent-gold);
  background-color: rgba(245, 158, 11, 0.05);
}

.pickup-option .price-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent-gold);
  font-family: var(--font-heading);
}

.pickup-option h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  max-width: calc(100% - 2.5rem);
}

.pickup-option p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Remorque Seat Picker UI inside Form */
.remorque-seat-picker {
  margin-top: 1rem;
}

.seats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 320px;
  margin: 0 auto;
  position: relative;
  background: var(--bg-input);
  padding: 2rem 1.5rem;
  border-radius: 16px;
  border: 2px solid var(--border);
  box-shadow: inset 0 0 20px rgba(0,0,0,0.4);
}

.seats-grid::before {
  content: 'TUK-TUK CARRIAGE';
  position: absolute;
  top: 0.5rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.interactive-seat {
  height: 5rem;
  border: 2px dashed var(--text-muted);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.interactive-seat:hover:not(.occupied) {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: scale(1.05);
}

.interactive-seat.selected {
  border-style: solid;
  border-color: var(--accent-gold);
  background-color: rgba(245, 158, 11, 0.15);
  color: var(--accent-gold);
  font-weight: 700;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.25);
}

.interactive-seat.occupied {
  border-style: solid;
  border-color: var(--border);
  background-color: var(--bg-card);
  opacity: 0.6;
  cursor: not-allowed;
}

.bench-label {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.25rem;
  margin-top: 0.5rem;
}

/* Dashboard View Layout */
.dashboard-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

@media (max-width: 900px) {
  .dashboard-layout {
    grid-template-columns: 1fr;
  }
}

.dashboard-title-area {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.pool-status-tag {
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.status-forming {
  background-color: rgba(245, 158, 11, 0.15);
  color: var(--accent-gold);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.status-full {
  background-color: rgba(59, 130, 246, 0.15);
  color: var(--info);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.status-confirmed {
  background-color: rgba(16, 185, 129, 0.15);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-cancelled {
  background-color: rgba(239, 68, 68, 0.15);
  color: var(--error);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* The Remorque Graphic - Premium Custom Drawing */
.remorque-card {
  padding: 2.5rem 1.5rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.remorque-frame {
  max-width: 460px;
  margin: 0 auto;
  background-color: rgba(20, 22, 28, 0.8);
  border: 3px solid #f59e0b; /* Metallic golden framing */
  border-radius: 24px;
  position: relative;
  padding: 3.5rem 2rem 2.5rem 2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), inset 0 0 30px rgba(0,0,0,0.6);
  animation: carriage-bob 4s ease-in-out infinite;
}

/* Remorque canopy & wheels */
.remorque-frame::before {
  content: 'KAMPOT TOGETHER';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-gold);
  color: var(--bg-dark);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.7rem;
  padding: 0.2rem 1.5rem;
  border-radius: 0 0 10px 10px;
  letter-spacing: 0.1em;
}

.remorque-wheels {
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: -15px;
  left: 3rem;
  right: 3rem;
}

.wheel {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(circle, #333 40%, #111 41%, #555 50%, #222 55%);
  border: 4px solid #111;
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);
  animation: wheel-wobble 4s ease-in-out infinite;
}

.remorque-cab {
  position: absolute;
  top: -3.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 50px;
  background: linear-gradient(180deg, var(--accent-gold) 0%, rgba(20, 22, 28, 0.8) 100%);
  border: 3px solid var(--accent-gold);
  border-bottom: none;
  border-radius: 50px 50px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.remorque-bench {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.remorque-bench::after {
  content: '';
  position: absolute;
  bottom: -0.85rem;
  left: 0;
  right: 0;
  height: 6px;
  background-color: #3f3f46;
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.bench-title-bar {
  position: absolute;
  top: -1.8rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.passenger-seat {
  flex: 1;
  background-color: rgba(32, 36, 46, 0.6);
  border: 2px dashed rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  height: 6.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.passenger-seat.occupied {
  background-color: var(--bg-card);
  border: 2px solid var(--accent-gold);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  animation: seat-pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.passenger-seat.empty {
  cursor: pointer;
}

.passenger-seat.empty:hover {
  border-color: var(--accent-gold);
  background-color: rgba(245, 158, 11, 0.05);
}

.passenger-seat.empty:hover .placeholder-add {
  transform: scale(1.1);
  color: var(--accent-gold);
}

.placeholder-add {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: all 0.2s ease;
  gap: 0.35rem;
}

.placeholder-add-icon {
  font-size: 1.5rem;
  animation: pulse-icon 2s infinite;
}

/* Occupied passenger card styles */
.passenger-avatar {
  width: 2.2rem;
  height: 2.2rem;
  background: linear-gradient(135deg, var(--accent-sunset-start) 0%, var(--accent-sunset-end) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 0.35rem;
}

.passenger-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.passenger-flag {
  font-size: 0.95rem;
}

.passenger-meta {
  font-size: 0.65rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 0.15rem;
}

.passenger-verified-badge {
  position: absolute;
  top: 0.35rem;
  right: 0.35rem;
  font-size: 0.8rem;
  color: var(--success);
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.passenger-seat.verified .passenger-verified-badge {
  opacity: 1;
  transform: scale(1);
}

.passenger-seat.verified {
  border-color: var(--success);
}

/* Sunset Progress Bar */
.progress-card {
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.progress-track {
  height: 12px;
  background-color: var(--bg-input);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.progress-bar {
  height: 100%;
  border-radius: 6px;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.progress-milestones {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Double Opt-In Verification Checklist UI */
.checklist-card {
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.checklist-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--info);
}

.checklist-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.checklist-item:last-child {
  border-bottom: none;
}

.checklist-user {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checklist-status-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 10px;
}

.badge-pending {
  background-color: rgba(245, 158, 11, 0.1);
  color: var(--accent-gold);
}

.badge-confirmed {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--success);
}

.checklist-action-box {
  margin-top: 1.5rem;
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.btn-confirm-attendance {
  background-color: var(--info);
  color: var(--text-primary);
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

.btn-confirm-attendance:hover {
  background-color: #2563eb;
  transform: translateY(-1px);
}

/* Active Ticker */
.ticker-card {
  padding: 1.5rem;
}

.ticker-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.ticker-feed {
  height: 150px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding-right: 0.5rem;
}

.ticker-item {
  background-color: var(--bg-input);
  border: 1px solid var(--border);
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: slide-right 0.3s ease-out forwards;
}

.ticker-content {
  color: var(--text-primary);
}

.ticker-time {
  color: var(--text-muted);
  font-size: 0.7rem;
}

/* Booking Details / Confirmation Card */
.details-card {
  padding: 1.5rem;
}

.details-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}

.details-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
}

.details-label {
  color: var(--text-secondary);
}

.details-value {
  font-weight: 600;
}

.details-value.total {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-gold);
  font-family: var(--font-heading);
}

/* Driver Assignment display */
.driver-card {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(20, 22, 28, 0.8) 100%);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 1rem;
  border-radius: 12px;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.driver-avatar {
  font-size: 2rem;
  background-color: rgba(16, 185, 129, 0.2);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.driver-info h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.driver-info p {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* WhatsApp Overlay Simulation Panel */
.wa-simulation-overlay {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 340px;
  background-color: #075e54; /* Classic WhatsApp Green */
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  overflow: hidden;
  transform: translateY(-150%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.wa-simulation-overlay.active {
  transform: translateY(0);
}

.wa-header {
  padding: 0.75rem 1rem;
  background-color: #128c7e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
}

.wa-header-icon {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.wa-body {
  padding: 1rem;
  font-size: 0.85rem;
  line-height: 1.4;
  white-space: pre-wrap;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.wa-footer {
  padding: 0.5rem 1rem;
  background-color: rgba(0,0,0,0.1);
  display: flex;
  justify-content: flex-end;
}

.wa-close-btn {
  background: none;
  border: none;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.75rem;
  text-transform: uppercase;
}

/* Admin Dashboard View */
.admin-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

@media (max-width: 900px) {
  .admin-grid {
    grid-template-columns: 1fr;
  }
}

.admin-card {
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.admin-table-container {
  overflow-x: auto;
  margin-top: 1rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

th, td {
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
}

th {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  font-size: 0.75rem;
}

tr:hover td {
  background-color: rgba(255,255,255,0.01);
}

.admin-select {
  width: auto;
  padding: 0.35rem 0.5rem;
  font-size: 0.8rem;
  border-radius: 4px;
}

.admin-badge {
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Keyframe Animations */
@keyframes carriage-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes wheel-wobble {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(180deg) scaleY(0.97); }
}

@keyframes logo-bob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-3px) rotate(5deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

@keyframes pulse-icon {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

@keyframes step-appear {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes seat-pop {
  0% { transform: scale(0.7); opacity: 0.5; }
  70% { transform: scale(1.05); }
  100% { transform: scale(1); opacity: 1; }
}

/* Info Bar Alert styling */
.info-alert {
  padding: 0.85rem 1.25rem;
  background-color: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.info-alert-icon {
  font-size: 1.25rem;
  color: var(--info);
}

.country-grid-selector {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.country-chip {
  padding: 0.5rem;
  background-color: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 6px;
  text-align: center;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.country-chip:hover {
  border-color: var(--accent-gold);
}

.country-chip.selected {
  border-color: var(--accent-gold);
  background-color: rgba(245, 158, 11, 0.1);
  font-weight: 600;
}

/* ====================================================
   Leaflet Map & Autocomplete UX Customization
   ==================================================== */

/* Map container — crosshair cursor hints that clicking pins a location */
#hotel-map {
  cursor: crosshair;
}

/* Browsable hotel/guesthouse POI markers (sourced live from OpenStreetMap) */
.hotel-poi-marker {
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  cursor: pointer;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.45));
  transition: transform 0.15s ease;
}
.hotel-poi-marker:hover {
  transform: scale(1.25);
}

/* Override Leaflet attribution to be less intrusive */
.leaflet-control-attribution {
  font-size: 0.6rem !important;
  opacity: 0.7;
}

/* Custom popup for the interactive map-click confirmation flow */
.custom-map-popup {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 170px;
}
.custom-map-popup h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.custom-map-popup p {
  color: #555;
  font-size: 0.75rem;
  margin: 0;
  line-height: 1.4;
}
.btn-popup-confirm {
  background: linear-gradient(135deg, var(--accent-sunset-start) 0%, var(--accent-sunset-end) 100%);
  color: #fff;
  border: none;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  text-align: center;
  margin-top: 0.35rem;
}
.btn-popup-confirm:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}
.btn-popup-confirm:active {
  transform: translateY(0);
}

/* Floating overlay actions on map wrapper */
.map-floating-btn {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: #333;
  padding: 0.45rem 0.75rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.map-floating-btn:hover {
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

.map-floating-btn:active {
  transform: translateY(0);
}

/* Autocomplete search results container & rows */
#hotel-search-results {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-lg), 0 10px 30px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
  margin-top: 6px;
}

.search-result-row {
  padding: 0.8rem 1rem;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  transition: background-color 0.2s ease;
}
.search-result-row:last-child {
  border-bottom: none;
}
.search-result-row:hover {
  background-color: rgba(255, 255, 255, 0.04);
}
.search-result-row .result-title {
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.search-result-row .result-address {
  font-size: 0.7rem;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0.15rem;
}

