:root {
  --primary: #094493;
  --primary-dark: #0a2a65;
  --accent: #d80909;
  --accent-hover: #b30000;
  --grey-light: #e5e7eb;
  --bg: #f8fafc;
  --surface: #ffffff;
  --text-main: #1f2937;
  --text-muted: #6b7280;
  --text-light: #ffffff;
  --gold: #c9a227;
  --gold-light: #f0d060;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

input, select, button, textarea {
  font-family: 'Albert Sans', ui-sans-serif, system-ui, sans-serif;
}

body {
  font-family: 'Albert Sans', ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 16px;
  color: var(--text-main);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(9, 68, 147, 0.08);
  box-shadow: 0 2px 24px rgba(9, 68, 147, 0.07);
  transition: all var(--transition);
}

.navbar.scrolled { box-shadow: 0 4px 32px rgba(9, 68, 147, 0.13); }

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--primary-dark);
  text-decoration: none;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  clip-path: polygon(10% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%, 0% 10%);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.2px;
  transition: color var(--transition);
  position: relative;
}

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

.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

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

.icon-btn {
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1rem;
  cursor: pointer;
  padding: 0.45rem 0.6rem;
  border-radius: 6px;
  transition: all var(--transition);
}

.icon-btn:hover { background: var(--bg); color: var(--primary); }

.user-menu { position: relative; }

.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  background: white;
  border: 1px solid rgba(9, 68, 147, 0.1);
  min-width: 260px;
  box-shadow: 0 20px 60px rgba(9, 68, 147, 0.15), 0 4px 16px rgba(0,0,0,0.08);
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.97);
  transition: all var(--transition);
  z-index: 1000;
}

.dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 18px;
  width: 12px;
  height: 12px;
  background: white;
  border-top: 1px solid rgba(9, 68, 147, 0.1);
  border-left: 1px solid rgba(9, 68, 147, 0.1);
  transform: rotate(45deg);
  z-index: 1;
}

.dropdown.open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }

/* Dropdown header */
.dropdown-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 1.1rem 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: 12px 12px 0 0;
}

.dropdown-avatar {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.dropdown-body { padding: 0.5rem 0; overflow: hidden; border-radius: 0 0 12px 12px; }

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.8rem 1.35rem;
  text-decoration: none;
  color: var(--text-main);
  transition: background var(--transition);
}

.dropdown-item:hover { background: var(--bg); }

.dropdown-item-icon {
  width: 36px;
  height: 36px;
  background: rgba(9, 68, 147, 0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 14px;
  flex-shrink: 0;
  transition: all var(--transition);
}

.dropdown-item:hover .dropdown-item-icon { background: var(--primary); color: white; }

.dropdown-item-text { display: flex; flex-direction: column; gap: 1px; }
.dropdown-item-text strong { font-size: 14px; font-weight: 700; color: var(--primary-dark); }
.dropdown-item-text small { font-size: 12px; color: var(--text-muted); }

/* User icon button active state */
.user-icon-btn { font-size: 1.25rem !important; }

.btn-book-nav {
    background: var(--accent);
    color: white;
    border: none;
    padding: 0.55rem 1.25rem;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background var(--transition);
    text-decoration: none; /* Removes underline from nav link */
    display: inline-block;
}

.btn-book-nav:hover { background: var(--accent-hover); }

.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--primary-dark) 0%, var(--primary) 55%, #1560b0 100%);
  position: relative;
  overflow: hidden;
  padding: 130px 0 80px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 75% 40%, rgba(201, 162, 39, 0.12) 0%, transparent 60%), radial-gradient(ellipse 50% 50% at 10% 80%, rgba(216, 9, 9, 0.1) 0%, transparent 50%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255, 255, 255, 0.015) 40px, rgba(255, 255, 255, 0.015) 42px);
  pointer-events: none;
}

.hero-kente {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: repeating-linear-gradient(90deg, var(--gold) 0px, var(--gold) 30px, var(--accent) 30px, var(--accent) 60px, #111827 60px, #111827 90px, var(--gold) 90px, var(--gold) 120px);
}

.hero-container { max-width: 1280px; margin: 0 auto; width: 100%; padding: 0 2rem; position: relative; z-index: 1;  }
.hero-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; width: 100%; }
.hero-content { width: 100%; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 162, 39, 0.18);
  border: 1px solid rgba(201, 162, 39, 0.35);
  color: var(--gold-light);
  padding: 0.35rem 1rem;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.hero h1 { font-size: clamp(2.8rem, 5vw, 4.5rem); font-weight: 900;  line-height: 1; color: white; letter-spacing: -2px; margin-bottom: 1.5rem; }
.hero h1 em { font-style: normal; color: var(--gold-light); display: block; }
.hero-subtitle { font-size: 16px; color: rgba(255, 255, 255, 0.85); line-height: 1.75; max-width: 500px; margin-bottom: 2.5rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary-hero {
    background: var(--accent);
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all var(--transition);
    border-radius: 3px;
    text-decoration: none; /* Removes the underline */
}

.btn-primary-hero:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(216, 9, 9, 0.3); }

.btn-outline-hero {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 0.9rem 2rem;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all var(--transition);
  border-radius: 3px;
  text-decoration: none;
}

.btn-outline-hero:hover { border-color: white; background: rgba(255, 255, 255, 0.1); }

.hero-stats { display: flex; gap: 2.5rem; margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid rgba(255, 255, 255, 0.15); }
.hero-stat strong { display: block; font-size: 1.75rem; font-weight: 900; color: var(--gold-light); letter-spacing: -0.5px; }
.hero-stat span { font-size: 13px; color: rgba(255, 255, 255, 0.7); }

.booking-card {
  background: white;
  border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  width: 100%;
}

.booking-card-header {
  background: var(--primary-dark);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.booking-card-header h3 { color: white; font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.booking-card-header span {
  background: var(--gold);
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.booking-form-inner { padding: 1.75rem; display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; width: 100%; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; width: 100%; }

.form-field label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.form-field label i { color: var(--primary); font-size: 10px; }

.form-field select, .form-field input {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--grey-light);
  font-family: inherit;
  font-size: 16px;
  color: var(--text-main);
  background: var(--bg);
  border-radius: 4px;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
}

.form-field select:focus, .form-field input:focus { outline: none; border-color: var(--primary); }
.form-field.full { grid-column: 1 / -1; }

.btn-search {
  width: 100%;
  background: var(--primary);
  color: white;
  border: none;
  padding: 1rem;
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all var(--transition);
}

.btn-search:hover { background: var(--primary-dark); transform: translateY(-1px); }

.trust-bar { background: var(--primary-dark); padding: 1.25rem 0; width: 100%; }
.trust-inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; width: 100%; }
.trust-item { display: flex; align-items: center; gap: 0.6rem; color: rgba(255, 255, 255, 0.85); font-size: 14px; font-weight: 500; }
.trust-item i { color: var(--gold); font-size: 1rem; }
.trust-divider { width: 1px; height: 20px; background: rgba(255, 255, 255, 0.15); }

.section-label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); margin-bottom: 0.75rem; }
.section-title { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 900; color: var(--primary-dark); letter-spacing: -0.5px; line-height: 1.1; }
.section-desc { color: var(--text-muted); font-size: 17px; line-height: 1.75; max-width: 580px; }

.features { padding: 6rem 0; background: white; width: 100%; }
.features-grid { display: grid; grid-template-columns: 5fr 6fr; gap: 5rem; align-items: center; width: 100%; }
.feature-image-wrap { position: relative; width: 100%; }
.feature-image-wrap img { width: 100%; height: 620px; object-fit: cover; display: block; border-radius: 10px; }

/* Subtle dark overlay so badge text always pops */
.feature-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: linear-gradient(to top, rgba(4,15,45,0.55) 0%, transparent 45%);
  pointer-events: none;
}

.feature-badge-overlay {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: white;
  padding: 1.1rem 1.4rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  z-index: 2;
}

.feature-badge-overlay strong { display: block; font-size: 2rem; font-weight: 900; color: var(--primary-dark); line-height: 1; }
.feature-badge-overlay span { font-size: 15px; color: var(--text-muted); font-weight: 600; }

.feature-content { width: 100%; }
.feature-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0; width: 100%; }
.feature-item { padding: 1.5rem 0; border-bottom: 1px solid var(--grey-light); display: flex; gap: 1.25rem; width: 100%; }
.feature-item:last-child { border-bottom: none; }

.feature-num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: var(--primary);
  color: white;
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.feature-item h4 { font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; color: var(--primary-dark); margin-bottom: 0.4rem; }
.feature-item p { font-size: 15px; color: var(--text-muted); line-height: 1.75; }

/* ============================
DESTINATION CARDS — REDESIGNED
============================ */
.destinations { padding: 6rem 0; background: var(--bg); width: 100%; }
.destinations-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1.5rem; width: 100%; }

/* Asymmetric 2-col grid: tall featured left, 2×2 right */
.destinations-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  width: 100%;
}

/* ── Featured card (left, spans 2 rows) ── */
.dest-card-featured {
  grid-row: span 2;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.dest-card-featured img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease;
}

.dest-card-featured:hover img { transform: scale(1.04); }

/* ── Small cards (right 2 rows) ── */
.dest-card-sm {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  min-height: 248px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.dest-card-sm img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease;
}

.dest-card-sm:hover img { transform: scale(1.06); }

/* ── Shared dark overlay ── */
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(4, 15, 45, 0.93) 0%,
    rgba(4, 15, 45, 0.42) 45%,
    transparent 75%
  );
  z-index: 1;
  transition: opacity var(--transition);
}

/* ── Price chip — top right ── */
.dest-chip {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 0.28rem 0.7rem;
  border-radius: 3px;
  z-index: 3;
  text-transform: uppercase;
}

/* ── "Most Popular" gold badge — top left ── */
.dest-popular-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--primary-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 0.22rem 0.65rem;
  border-radius: 3px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* ── Card content area ── */
.dest-content {
  position: relative;
  z-index: 2;
  padding: 1.1rem 1.25rem 1.25rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.dest-info { flex: 1; min-width: 0; }

/* Route display: City → City */
.dest-route {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
  flex-wrap: nowrap;
}

.dest-city-from {
  color: white;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dest-card-featured .dest-city-from,
.dest-card-featured .dest-city-to { font-size: 1.4rem; }

.dest-arrow { color: var(--gold-light); font-size: 0.8rem; flex-shrink: 0; }

.dest-city-to {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Price inline — featured card only */
.dest-price-inline {
  display: block;
  margin-top: 0.45rem;
  color: var(--gold-light);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.3px;
}

.dest-price-inline small {
  font-size: 11.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  margin-left: 0.3rem;
  letter-spacing: 0;
}

/* Duration + departures row */
.dest-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.dest-duration {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.dest-duration i { font-size: 10px; }

.dest-departures {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  padding-left: 0.65rem;
  border-left: 1px solid rgba(255,255,255,0.2);
}

/* ── Book button — frosted ghost style ── */
.dest-btn {
  flex-shrink: 0;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.32);
  color: white;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  backdrop-filter: blur(4px);
  font-family: inherit;
}

.dest-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(216,9,9,0.35);
}

/* ============================
SCHEDULE — REDESIGNED
============================ */
.schedule { padding: 6rem 0; background: var(--bg); width: 100%; }

.schedule-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  width: 100%;
  margin-bottom: 2rem;
}

/* ── Day pill tabs ── */
.schedule-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  overflow-x: auto;
  padding-bottom: 4px;
  width: 100%;
  scrollbar-width: none;
}
.schedule-tabs::-webkit-scrollbar { display: none; }

.schedule-tab {
  padding: 0.55rem 1.1rem;
  background: white;
  border: 1.5px solid var(--grey-light);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  border-radius: 50px;
  letter-spacing: 0.2px;
  transition: all var(--transition);
  flex-shrink: 0;
}

.schedule-tab:hover { border-color: var(--primary); color: var(--primary); }
.schedule-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 4px 14px rgba(9,68,147,0.25);
}

/* ── Card wrapper ── */
.schedule-table {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 2px 24px rgba(9,68,147,0.07), 0 1px 4px rgba(0,0,0,0.04);
}

/* ── Header row ── */
.schedule-row-head {
  display: grid;
  grid-template-columns: 3fr 140px 130px 160px 160px;
  gap: 0;
  padding: 0.9rem 1.75rem;
  background: var(--primary-dark);
  align-items: center;
  width: 100%;
}

.schedule-row-head div {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.schedule-row-head .col-route  { color: rgba(255,255,255,0.85); }
.schedule-row-head .col-duration { justify-content: flex-start; }
.schedule-row-head .col-fare   { justify-content: flex-start; padding-left: 0 !important; margin-left: 0 !important; }
.schedule-row-head .col-seats  { justify-content: flex-start; }
.schedule-row-head .col-action { justify-content: flex-end; }
.schedule-row-head:hover { background: var(--primary-dark); }

/* ── Data rows ── */
.schedule-row {
  display: grid;
  grid-template-columns: 3fr 140px 130px 160px 160px;
  gap: 0;
  padding: 1.4rem 1.75rem;
  border-bottom: 1px solid rgba(9,68,147,0.07);
  align-items: center;
  transition: background var(--transition);
  width: 100%;
}

.schedule-row:last-child { border-bottom: none; }
.schedule-row:hover { background: #f5f8ff; }

/* ── Route column ── */
.col-route { display: flex; align-items: center; }

.route-pair {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
}

/* Origin city block */
.city-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 90px;
}

.city-block strong {
  font-size: 15px;
  font-weight: 900;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  line-height: 1;
}

.city-block .dep-time {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.city-block .dep-time i { color: var(--primary); font-size: 10px; }

/* Travel line between cities */
.route-connector {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0 0.75rem;
  position: relative;
}

.route-connector::before {
  content: '';
  flex: 1;
  height: 1.5px;
  background: linear-gradient(to right, var(--grey-light), rgba(9,68,147,0.2), var(--grey-light));
}

.route-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin: 0 0.35rem;
  box-shadow: 0 0 0 2px rgba(9,68,147,0.15);
}

.route-connector::after {
  content: '';
  flex: 1;
  height: 1.5px;
  background: linear-gradient(to right, rgba(9,68,147,0.2), var(--grey-light));
}

/* ── Duration column ── */
.col-duration {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
}
.col-duration i { color: var(--primary); font-size: 12px; }

/* ── Fare column ── */
.col-fare {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding-left: 0;
  align-items: flex-start;
}
.col-fare .fare-amount {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.3px;
  line-height: 1;
}
.col-fare .fare-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Seats column ── */
.col-seats { display: flex; align-items: center; gap: 0.55rem; }

.seats-pip {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.seats-pip.few   { background: var(--accent); box-shadow: 0 0 0 3px rgba(216,9,9,0.12); }
.seats-pip.some  { background: #f59e0b;       box-shadow: 0 0 0 3px rgba(245,158,11,0.12); }
.seats-pip.plenty{ background: #16a34a;       box-shadow: 0 0 0 3px rgba(22,163,74,0.12); }

.col-seats .seats-count {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--primary-dark);
  line-height: 1;
}
.col-seats .seats-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  display: block;
  line-height: 1;
}

.seats-text { display: flex; flex-direction: column; gap: 2px; }

/* ── Action column ── */
.col-action { display: flex; justify-content: flex-end; }

.btn-ticket {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.6rem 1.4rem;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(9,68,147,0.25);
}

.btn-ticket:hover {
  background: var(--accent);
  box-shadow: 0 6px 18px rgba(216,9,9,0.3);
  transform: translateY(-1px);
}

.how-it-works { padding: 6rem 0; background: var(--primary-dark); position: relative; overflow: hidden; width: 100%; }

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 25px, var(--accent) 25px, var(--accent) 50px, #111 50px, #111 75px);
}

.how-it-works .section-label { color: var(--gold-light); }
.how-it-works .section-title { color: white; }
.how-header { text-align: center; width: 100%; margin-bottom: 1rem; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; position: relative; width: 100%; }
.steps-grid::before { content: ''; position: absolute; top: 32px; left: 10%; right: 10%; height: 1px; background: rgba(255, 255, 255, 0.1); }
.step-card { text-align: center; position: relative; width: 100%; }

.step-num {
  width: 68px;
  height: 68px;
  margin: 0 auto 1.5rem;
  background: #fff;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.step-card:hover .step-num { background: var(--gold); border-color: var(--gold); }
.step-card:hover .step-num i,
.step-card:hover .step-num svg { color: #fff; stroke: #fff; }
.step-num i { font-size: 1.4rem; color: var(--primary); }
.step-num svg { color: var(--primary); stroke: var(--primary); }

.step-num .num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  background: var(--accent);
  color: white;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.step-card h4 { color: white; font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.3px; margin-bottom: 0.5rem; }
.step-card p { color: rgba(255, 255, 255, 0.65); font-size: 17px; line-height: 1.7; }

.easy { padding: 6rem 0; background: var(--bg); width: 100%; }
.easy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; width: 100%; }
.easy-content { width: 100%; }
.easy-content h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 900; color: var(--primary-dark); letter-spacing: -1px; line-height: 1.05; margin-bottom: 1.25rem; }
.easy-content h2 span { color: var(--gold); }
.easy-content p { font-size: 17px; color: var(--text-muted); line-height: 1.75; margin-bottom: 2rem; }
.easy-features { display: flex; flex-direction: column; gap: 1.5rem; width: 100%; }
.easy-feat { display: flex; gap: 1rem; align-items: flex-start; width: 100%; }
.easy-feat-icon { width: 44px; height: 44px; flex-shrink: 0; background: rgba(9, 68, 147, 0.08); display: flex; align-items: center; justify-content: center; border-radius: 4px; }
.easy-feat-icon i { color: var(--primary); font-size: 1.1rem; }
.easy-feat h4 { font-size: 17px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.3px; color: var(--primary-dark); margin-bottom: 0.35rem; } 
.easy-feat p { font-size: 16px; color: var(--text-muted); line-height: 1.6; }
.easy-visual { width: 100%; }

.ticket-visual {
  background: var(--primary);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: 0 24px 64px rgba(9, 68, 147, 0.25);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.ticket-visual::before { content: ''; position: absolute; top: -80px; right: -80px; width: 280px; height: 280px; border-radius: 50%; background: rgba(255, 255, 255, 0.05); }
.ticket-card { background: white; border-radius: 6px; padding: 1.5rem; margin-bottom: 1.25rem; position: relative; z-index: 1; width: 100%; }
.ticket-card h4 { color: var(--primary-dark); font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.ticket-route { display: flex; align-items: center; gap: 0.75rem; font-weight: 700; color: var(--text-main); font-size: 17px; }
.ticket-route i { color: var(--accent); }
.ticket-meta { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.75rem; margin-top: 1rem; width: 100%; }
.ticket-meta-item { font-size: 16px; }
.ticket-meta-item span { color: var(--text-muted); display: block; }
.ticket-meta-item strong { color: var(--primary-dark); font-weight: 700; }
.ticket-price { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 1; width: 100%; }
.ticket-price-num { font-size: 2.5rem; font-weight: 900; color: var(--gold-light); }
.ticket-price small { display: block; color: rgba(255, 255, 255, 0.7); font-size: 17px; }

.btn-book-ticket {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
  letter-spacing: 0.3px;
  transition: all var(--transition);
}

.btn-book-ticket:hover { background: var(--primary); color: white; }

.faq { padding: 6rem 0; background: white; width: 100%; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; width: 100%; }
.faq-left { width: 100%; }

.faq-visual {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 8px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 16px 48px rgba(9, 68, 147, 0.2);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.faq-visual::before { content: ''; position: absolute; bottom: -40px; right: -40px; width: 160px; height: 160px; border-radius: 50%; background: rgba(255, 255, 255, 0.06); }
.faq-visual i { font-size: 5rem; color: rgba(255, 255, 255, 0.2); margin-bottom: 1.5rem; display: block; }
.faq-destinations { display: flex; justify-content: center; gap: 0.6rem; flex-wrap: wrap; margin-top: 1.5rem; width: 100%; }
.faq-dest-tag { background: rgba(255, 255, 255, 0.12); color: white; font-size: 17px; font-weight: 700; padding: 0.3rem 0.75rem; border-radius: 20px; letter-spacing: 0.3px; }
.faq-right { width: 100%; }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; width: 100%; }
.faq-item { border: 1px solid var(--grey-light); border-radius: 6px; overflow: hidden; transition: border-color var(--transition); width: 100%; }
.faq-item.open { border-color: var(--primary); }
.faq-q { padding: 1.1rem 1.35rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 600; font-size: 16px; color: var(--primary-dark); background: white; transition: background var(--transition); width: 100%; }
.faq-item.open .faq-q { background: rgba(9, 68, 147, 0.03); }
.faq-q i { color: var(--primary); font-size: 16px; transition: transform var(--transition); }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { padding: 0 1.35rem 1.1rem; color: var(--text-muted); font-size: 16px; line-height: 1.75; display: none; width: 100%; }
.faq-item.open .faq-a { display: block; }

.socials { display: flex; gap: 0.6rem; }
.socials a { width: 36px; height: 36px; border-radius: 6px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; font-size: 14px; transition: all var(--transition); }
.socials a:hover { background: var(--accent); transform: translateY(-2px); }

.payment-badges { display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; }
.pay-badge { background: rgba(255,255,255,0.1); padding: 0.3rem 0.65rem; font-size: 12px; font-weight: 700; border-radius: 3px; letter-spacing: 0.3px; }

.popup-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.65); display: flex; align-items: center; justify-content: center; z-index: 9999; opacity: 0; visibility: hidden; transition: all var(--transition); width: 100%; }
.popup-overlay.open { opacity: 1; visibility: visible; }
.popup { background: white; width: 90%; max-width: 480px; border-radius: 8px; overflow: hidden; box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3); transform: scale(0.9); transition: transform var(--transition); position: relative; }
.popup-overlay.open .popup { transform: scale(1); }
.popup-header { background: var(--primary); padding: 2.5rem; text-align: center; position: relative; overflow: hidden; width: 100%; }
.popup-header::before { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; background: rgba(255, 255, 255, 0.08); }
.popup-header i { font-size: 3.5rem; color: rgba(255, 255, 255, 0.25); position: relative; z-index: 1; }
.popup-close { position: absolute; top: 0.75rem; right: 0.75rem; width: 30px; height: 30px; background: rgba(255, 255, 255, 0.2); border: none; color: white; font-size: 1rem; cursor: pointer; border-radius: 50%; z-index: 10; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.popup-close:hover { background: rgba(255, 255, 255, 0.3); }
.popup-body { padding: 2rem; text-align: center; width: 100%; }
.popup-body h2 { font-size: 1.6rem; font-weight: 900; color: var(--primary-dark); margin-bottom: 0.75rem; }
.popup-body p { color: var(--text-muted); font-size: 16px; line-height: 1.7; margin-bottom: 0.75rem; }
.promo-code { background: var(--bg); border: 2px dashed var(--primary); border-radius: 4px; padding: 0.65rem 1.25rem; font-size: 1.1rem; font-weight: 900; color: var(--primary-dark); letter-spacing: 2px; margin: 1rem 0; display: inline-block; }
.btn-popup {
    width: 100%;
    background: var(--accent);
    color: white;
    border: none;
    padding: 1rem;
    font-family: inherit;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 4px;
    transition: background var(--transition);
    margin-top: 0.75rem;
    text-decoration: none; /* Removes underline from popup button */
    display: inline-block;
}
.btn-popup:hover { background: var(--accent-hover); }

.btn-gold {
    background: var(--gold);
    color: var(--primary-dark);
    border: none;
    padding: 0.85rem 1.75rem;
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all var(--transition);
    text-decoration: none; /* Removes underline from explore/contact buttons */
}

.btn-gold:hover {
  background: #b8911f;
  transform: translateY(-1px);
}

.btn-blue { background: var(--primary); color: white; border: 2px solid var(--primary); padding: 0.85rem 1.75rem; font-family: inherit; font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; cursor: pointer; border-radius: 3px; display: inline-flex; align-items: center; gap: 0.6rem; transition: all var(--transition); text-decoration: none; }
.btn-blue:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); }

/* ============================
HAMBURGER BUTTON — MODERN PILL
============================ */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: background var(--transition);
  flex-shrink: 0;
  margin-left: auto;
}

.mobile-menu-btn:hover { background: rgba(9,68,147,0.07); }

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.mobile-menu-btn span:nth-child(3) { width: 15px; align-self: flex-start; margin-left: 3px; }

.mobile-menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 22px; margin-left: 0; }

/* ============================
FULLSCREEN MOBILE MENU — BRIGHT CLASSIC
============================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1), visibility 0.4s;
  visibility: hidden;
  pointer-events: none;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

.mobile-menu::before { display: none; }
.mobile-menu::after  { display: none; }

.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: all;
}

/* ── Top bar ── */
.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 64px;
  flex-shrink: 0;
  border-bottom: 2px solid var(--primary);
  background: white;
}

.mobile-menu-logo {
  color: var(--primary-dark) !important;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  font-size: 1.2rem;
  text-decoration: none;
  letter-spacing: -0.4px;
}

.mobile-menu-logo .logo-mark {
  background: var(--accent);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  font-weight: 900;
  clip-path: polygon(10% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%, 0% 10%);
}

.mobile-menu-close {
  width: 36px;
  height: 36px;
  background: var(--bg);
  border: 1.5px solid var(--grey-light);
  color: var(--text-main);
  font-size: 1rem;
  cursor: pointer;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}

.mobile-menu-close:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: rotate(90deg);
}

/* ── Nav links ── */
.mobile-nav-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: white;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.82rem 1.5rem;
  text-decoration: none;
  color: var(--text-main);
  font-size: 0.97rem;
  font-weight: 600;
  border-bottom: 1px solid var(--grey-light);
  transition: background var(--transition), color var(--transition), border-left var(--transition);
  letter-spacing: 0.1px;
  border-left: 3px solid transparent;
}

.mobile-nav-links a:last-child { border-bottom: none; }

.mobile-nav-links a:hover,
.mobile-nav-links a:focus {
  background: #f0f5ff;
  color: var(--primary);
  border-left-color: var(--primary);
}

.mobile-nav-links .nav-icon-wrap {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: rgba(9,68,147,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.82rem;
  color: var(--primary);
  transition: background var(--transition), color var(--transition);
}

.mobile-nav-links a:hover .nav-icon-wrap {
  background: var(--primary);
  color: white;
}

/* My Tickets — gold tint */
.mobile-nav-links a.nav-tickets { color: var(--primary-dark); font-weight: 700; }
.mobile-nav-links a.nav-tickets .nav-icon-wrap {
  background: rgba(201,162,39,0.14);
  color: #b8860b;
}
.mobile-nav-links a.nav-tickets:hover .nav-icon-wrap {
  background: var(--gold);
  color: white;
}

.mobile-nav-links a .nav-label { flex: 1; }

/* hide arrow spans entirely */
.mobile-nav-links a .nav-arrow { display: none; }

/* ── Advert banner ── */
.mobile-menu-ad {
  margin: 0.5rem 1.25rem 0.25rem;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(100deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity var(--transition), transform var(--transition);
  cursor: pointer;
  border: none;
}

.mobile-menu-ad:hover { opacity: 0.93; transform: scale(1.01); }

.mobile-menu-ad-icon {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.15);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.mobile-menu-ad-text { flex: 1; min-width: 0; }

.mobile-menu-ad-label {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gold-light);
  margin-bottom: 1px;
}

.mobile-menu-ad-title {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-menu-ad-sub {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  margin-top: 1px;
}

.mobile-menu-ad-cta {
  background: var(--gold);
  color: var(--primary-dark);
  font-size: 10px;
  font-weight: 800;
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

/* ── Footer ── */
.mobile-menu-footer {
  padding: 0.85rem 1.5rem 1.25rem;
  border-top: 1px solid var(--grey-light);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
  background: var(--bg);
}

.mobile-contact-info {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--grey-light);
}

.mobile-contact-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 12px;
  transition: color var(--transition);
}

.mobile-contact-item:hover { color: var(--primary); }

.mobile-contact-item i {
  color: var(--primary);
  font-size: 0.75rem;
}

.mobile-auth-links {
  display: flex;
  gap: 0.6rem;
}

.mobile-auth-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 0.9rem;
  border-radius: 5px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: all var(--transition);
}

.mobile-auth-link.outline {
  background: white;
  color: var(--text-main);
  border: 1.5px solid var(--grey-light);
}

.mobile-auth-link.outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.mobile-auth-link.primary {
  background: var(--primary);
  color: white;
  border: 1.5px solid var(--primary);
}

.mobile-auth-link.primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.mobile-book-btn {
  display: block;
  text-align: center;
  padding: 0.8rem 1rem !important;
  font-size: 14px !important;
  border-radius: 5px !important;
  text-decoration: none;
  font-weight: 800 !important;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  background: var(--accent) !important;
  color: white !important;
  transition: background var(--transition) !important;
}

.mobile-book-btn:hover {
  background: var(--accent-hover) !important;
}

/* Mobile Menu Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1099;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  backdrop-filter: blur(3px);
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ============================
FOOTER
============================ */
footer {
  background: var(--primary-dark);
  color: white;
  width: 100%;
}

/* ── Top grid ── */
.footer-top {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4.5rem 2rem 3.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 3rem;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ── Brand col ── */
.footer-brand p {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.85;
  margin: 1rem 0 1.5rem;
  max-width: 300px;
}

.socials {
  display: flex;
  gap: 0.6rem;
}

.socials a {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  text-decoration: none;
  transition: all var(--transition);
}

.socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  transform: translateY(-2px);
}

/* ── Column headings ── */
.footer-col h4 {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: white;
  margin-bottom: 1.25rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

/* ── Link lists ── */
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
.footer-col li { margin: 0; }
.footer-col ul a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0;
  transition: color var(--transition), gap var(--transition);
  line-height: 1.4;
}

.footer-col ul a::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  opacity: 0;
  transition: opacity var(--transition);
}

.footer-col ul a:hover {
  color: white;
  gap: 0.65rem;
}

.footer-col ul a:hover::before { opacity: 1; }

/* ── Newsletter col ── */
.footer-col > p {
  color: rgba(255,255,255,0.6);
  font-size: 13.5px;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
}

.newsletter-form input {
  flex: 1;
  padding: 0.7rem 0.9rem;
  background: rgba(255,255,255,0.06);
  border: none;
  color: white;
  font-family: inherit;
  font-size: 13.5px;
  width: 100%;
  transition: background var(--transition);
}

.newsletter-form input:focus {
  outline: none;
  background: rgba(255,255,255,0.1);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }

.newsletter-form button {
  padding: 0.7rem 1rem;
  background: var(--accent);
  color: white;
  border: none;
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  transition: background var(--transition);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-form button:hover { background: var(--accent-hover); }

/* ── Contact info (inside newsletter col) ── */
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  font-size: 13.5px;
  transition: color var(--transition);
}

.footer-contact-item:hover { color: white; }

.footer-contact-icon {
  width: 32px;
  height: 32px;
  background: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  flex-shrink: 0;
  transition: color var(--transition);
}

.footer-contact-item:hover .footer-contact-icon { background: none; color: #fff; }

.footer-contact-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.3;
}

.footer-contact-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
  font-weight: 700;
}

.footer-contact-value {
  font-size: 13.5px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* ── Bottom bar ── */
footer .footer-bottom-wrap {
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.15);
  width: 100%;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin: 0;
  white-space: nowrap;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  gap: 0;
}

.payment-methods {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: nowrap;
}

.payment-label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  white-space: nowrap;
  margin-right: 0.5rem;
}

.pay-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.65);
  font-size: 11px;
  font-weight: 700;
  padding: 0.28rem 0.6rem;
  border-radius: 3px;
  white-space: nowrap;
  letter-spacing: 0.2px;
  transition: background var(--transition), color var(--transition);
}

.pay-badge:hover {
  background: rgba(255,255,255,0.12);
  color: white;
}

/* ============================
RESPONSIVE STYLES
============================ */
@media (max-width: 1100px) {
  .hero-layout, .features-grid, .easy-grid, .faq-grid { grid-template-columns: 1fr; gap: 3rem; }
  .booking-card { max-width: 560px; margin: 0 auto; }
  .destinations-grid { grid-template-columns: 1fr 1fr; }
  .dest-card-featured { min-height: 400px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  .btn-book-nav { display: none; }

  /* Hide search & user icons on mobile — they live inside the menu */
  .icon-btn,
  .user-menu { display: none; }

  /* Compact header height + flush padding */
  .nav-inner {
    height: 60px;
    padding: 0 1.25rem;
    gap: 0;
  }

  /* Push hamburger all the way right */
  .nav-actions {
    margin-left: auto;
    gap: 0;
  }

  .schedule-row { grid-template-columns: 1fr; gap: 0.75rem; }
  .destinations-grid { grid-template-columns: 1fr; }
  .dest-card-featured { grid-row: span 1; min-height: 320px; }
  .dest-card-sm { min-height: 210px; }
  .footer-top {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem 2.5rem;
    gap: 2rem;
  }

  .footer-brand p { max-width: 100%; }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
  }

  .footer-bottom p { white-space: normal; }

  .footer-bottom-content {
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
  }

  .payment-methods {
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 0.4rem;
  }
  
  .form-row { grid-template-columns: 1fr; }
  .trust-inner { justify-content: center; }
  .trust-divider { display: none; }
  .container, .nav-inner, .hero-container, .trust-inner { padding: 0 1.5rem; }
  .payment-badges { justify-content: center; }
  
  .footer-contact-info {
    gap: 1rem;
  }
  
  .footer-contact-item {
    padding: 0.5rem 0;
  }
  
  /* Ensure mobile menu works properly */
  body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .mobile-menu-top { padding: 0 1.25rem; }
  .mobile-nav-links { padding: 0; }
  .mobile-nav-links a { padding: 0.82rem 1.25rem; }
  .mobile-menu-footer { padding: 0.85rem 1.25rem 1.25rem; }
}

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

.anim-fade-up { animation: fadeUp 0.6s ease forwards; }
.anim-delay-1 { animation-delay: 0.1s; opacity: 0; }
.anim-delay-2 { animation-delay: 0.2s; opacity: 0; }
.anim-delay-3 { animation-delay: 0.3s; opacity: 0; }
.anim-delay-4 { animation-delay: 0.4s; opacity: 0; }


/* ==========================================
   ABOUT PAGE EXTENSIONS
   ========================================== */
.section-padding {
    padding: 6rem 0;
}
.bg-white {
    background: var(--surface);
}
.about-hero {
    background: var(--primary-dark);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.about-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(201,162,39,0.1) 0%, transparent 60%);
    pointer-events: none;
}
.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}
.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201,162,39,0.18);
    border: 1px solid rgba(201,162,39,0.35);
    color: var(--gold-light);
    padding: 0.35rem 1rem;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 2px;
    margin-bottom: 1.5rem;
}
.about-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.05;
    color: white;
    letter-spacing: -1.5px;
    margin-bottom: 1.25rem;
}
.about-hero h1 em {
    font-style: normal;
    color: var(--gold-light);
}
.about-hero p {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
    max-width: 550px;
    margin: 0 auto;
}

/* our story */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-image-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}
.about-image-wrap img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}
.about-image-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: white;
    padding: 1rem 1.3rem;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
    border-left: 4px solid var(--gold);
    border-radius: 6px;
}
.about-image-badge strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-dark);
    line-height: 1;
}
.about-image-badge span {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
}
.about-story-content .section-label {
    margin-bottom: 0.75rem;
}
.about-story-content .section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.about-story-content p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.about-story-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* journey cards */
.about-journey-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}
.about-journey-desc {
    color: var(--text-muted);
    font-size: 16px;
    margin-top: 0.75rem;
}
.about-journey-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.about-journey-card {
    background: var(--bg);
    border-radius: 10px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition);
}
.about-journey-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(9,68,147,0.1);
}
.about-journey-num {
    width: 56px;
    height: 56px;
    background: rgba(9,68,147,0.08);
    color: var(--primary);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}
.about-journey-card h4 {
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-dark);
    margin-bottom: 0.4rem;
}
.about-journey-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* stats */
.about-stats {
    background: var(--primary-dark);
    text-align: center;
}
.about-stats-header {
    max-width: 600px;
    margin: 0 auto 3rem;
}
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.about-stat-item strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold-light);
    letter-spacing: -1px;
}
.about-stat-item span {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
    margin-top: 0.35rem;
    display: block;
}
.about-stats-cta {
    margin-top: 3rem;
}

/* team */
.about-team-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}
.about-team-desc {
    color: var(--text-muted);
    font-size: 16px;
    margin-top: 0.75rem;
}
.about-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.about-team-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all var(--transition);
}
.about-team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.about-team-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}
.about-team-info {
    padding: 1.5rem;
    text-align: center;
}
.about-team-info h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}
.about-team-info span {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* cta */
.about-cta {
    background: linear-gradient(135deg, var(--accent) 0%, #e81515 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.about-cta::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}
.about-cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}
.about-cta h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    color: white;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}
.about-cta p {
    color: rgba(255,255,255,0.85);
    font-size: 17px;
    line-height: 1.75;
    margin: 0 auto 2rem;
}
.about-cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-white {
    background: white;
    color: var(--primary-dark);
    border: 2px solid white;
    padding: 0.85rem 1.75rem;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    cursor: pointer;
    border-radius: 4px;
    transition: all var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}
.btn-white:hover {
    background: transparent;
    color: white;
}
.btn-white-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
    padding: 0.85rem 1.75rem;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    cursor: pointer;
    border-radius: 4px;
    transition: all var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}
.btn-white-outline:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
}

/* responsive */
@media (max-width: 1100px) {
    .about-story-grid,
    .about-journey-cards,
    .about-stats-grid,
    .about-team-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .about-story-grid,
    .about-journey-cards,
    .about-stats-grid,
    .about-team-grid {
        grid-template-columns: 1fr;
    }
    .about-hero {
        padding: 120px 0 60px;
    }
    .about-story-grid {
        gap: 2.5rem;
    }
    .about-image-wrap img {
        height: 320px;
    }
    .about-cta-btns {
        flex-direction: column;
        align-items: center;
    }
}

/* ==========================================
   ROUTES PAGE EXTENSIONS
   ========================================== */
.routes-hero {
    background: var(--primary-dark);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.routes-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(201,162,39,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.routes-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.routes-hero .section-label {
    color: var(--gold-light);
    margin-bottom: 1rem;
    display: block;
}

.routes-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.05;
    color: white;
    letter-spacing: -1.5px;
    margin-bottom: 1.25rem;
}

.routes-hero h1 em {
    font-style: normal;
    color: var(--gold-light);
}

.routes-hero p {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
    max-width: 550px;
    margin: 0 auto;
}

/* Filter Section */
.routes-filters {
    padding: 3rem 0;
    background: var(--bg);
}

.filter-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(9,68,147,0.08);
    border: 1px solid rgba(9,68,147,0.08);
}

.filter-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
}

.filter-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-field label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.filter-field label i {
    color: var(--primary);
    font-size: 11px;
}

.filter-select,
.filter-input {
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--grey-light);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    color: var(--text-main);
    background: var(--bg);
    transition: all var(--transition);
    width: 100%;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.filter-select:focus,
.filter-input:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(9,68,147,0.08);
}

.filter-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-search-routes {
    background: var(--accent);
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all var(--transition);
}

.btn-search-routes:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(216,9,9,0.3);
}

.btn-clear-filters {
    background: white;
    color: var(--text-muted);
    border: 1.5px solid var(--grey-light);
    padding: 0.9rem 1.5rem;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all var(--transition);
}

.btn-clear-filters:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(9,68,147,0.03);
}

/* Routes Results */
.routes-results {
    padding: 4rem 0 6rem;
    background: white;
}

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

.routes-count {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.count-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.count-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.routes-view-toggle {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    width: 40px;
    height: 40px;
    background: white;
    border: 1.5px solid var(--grey-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition);
}

.view-btn:hover,
.view-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Route Cards */
.routes-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.route-card {
    background: white;
    border-radius: 12px;
    padding: 1.75rem;
    display: grid;
    grid-template-columns: 2fr 1fr auto;
    gap: 2rem;
    align-items: center;
    box-shadow: 0 2px 12px rgba(9,68,147,0.06);
    border: 1px solid rgba(9,68,147,0.06);
    transition: all var(--transition);
}

.route-card:hover {
    box-shadow: 0 8px 32px rgba(9,68,147,0.12);
    transform: translateY(-2px);
    border-color: rgba(9,68,147,0.15);
}

.route-time-section {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: center;
}

.time-departure,
.time-arrival {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.time {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--primary-dark);
    line-height: 1;
}

.city {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.route-duration {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    flex: 1;
}

.duration-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    position: relative;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot.start {
    background: var(--primary);
    box-shadow: 0 0 0 3px rgba(9,68,147,0.15);
}

.dot.end {
    background: var(--accent);
    box-shadow: 0 0 0 3px rgba(216,9,9,0.15);
}

.line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, rgba(9,68,147,0.2), rgba(216,9,9,0.2));
}

.duration-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.duration-text::before {
    content: '\f017';
    font-family: 'Font Awesome 6 Free';
    font-weight: 600;
    font-size: 11px;
}

.route-type {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent);
    background: rgba(216,9,9,0.08);
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
}

.route-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.route-operator {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.operator-name {
    font-size: 15px;
    font-weight: 800;
    color: var(--primary-dark);
    background: var(--bg);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
}

.seats-left {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.seats-left i {
    color: var(--primary);
    font-size: 12px;
}

.seats-left.few {
    color: var(--accent);
}

.seats-left.few i {
    color: var(--accent);
}

.route-amenities {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.amenity {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--bg);
    padding: 0.3rem 0.65rem;
    border-radius: 6px;
}

.amenity i {
    color: var(--primary);
    font-size: 11px;
}

.route-price-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-end;
    min-width: 180px;
}

.price-info {
    text-align: right;
}

.price-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 900;
    color: #000; /* Black fare color */
    line-height: 1;
}

.btn-select-seat {
    background: var(--accent);
    color: white;
    border: none;
    padding: 0.85rem 1.75rem;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-select-seat:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(216,9,9,0.3);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.page-link {
    min-width: 42px;
    height: 42px;
    background: white;
    border: 1.5px solid var(--grey-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
}

.page-link:hover,
.page-link.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.page-link.prev,
.page-link.next {
    padding: 0 0.75rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .route-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .route-time-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .route-duration {
        flex-direction: row;
        justify-content: center;
    }

    .duration-line {
        width: 150px;
    }

    .route-price-section {
        align-items: center;
        text-align: center;
    }

    .price-info {
        text-align: center;
    }
}

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

    .filter-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-search-routes,
    .btn-clear-filters {
        width: 100%;
        justify-content: center;
    }

    .routes-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .route-card {
        padding: 1.25rem;
    }

    .time {
        font-size: 1.5rem;
    }

    .price-amount {
        font-size: 1.5rem;
    }

    .pagination {
        flex-wrap: wrap;
    }
}

/* ==========================================
   SCHEDULE PAGE EXTENSIONS
   ========================================== */

/* Hero Section */
.schedule-hero {
    background: var(--primary-dark);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.schedule-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(201,162,39,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.schedule-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.schedule-hero .section-label {
    color: var(--gold-light);
    margin-bottom: 1rem;
    display: block;
}

.schedule-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.05;
    color: white;
    letter-spacing: -1.5px;
    margin-bottom: 1.25rem;
}

.schedule-hero h1 em {
    font-style: normal;
    color: var(--gold-light);
}

.schedule-hero p {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
    max-width: 550px;
    margin: 0 auto;
}

/* Date Tabs Section */
.schedule-tabs-section {
    padding: 2.5rem 0;
    background: var(--bg);
    border-bottom: 1px solid var(--grey-light);
}

.schedule-tabs-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.schedule-date-tabs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
    flex: 1;
    min-width: 0;
}

.schedule-date-tabs::-webkit-scrollbar {
    display: none;
}

.schedule-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding: 0.75rem 1rem;
    background: white;
    border: 1.5px solid var(--grey-light);
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition);
    flex-shrink: 0;
    font-family: inherit;
}

.schedule-tab:hover {
    border-color: var(--primary);
    background: rgba(9,68,147,0.03);
}

.schedule-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(9,68,147,0.25);
}

.tab-day {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
    margin-bottom: 2px;
}

.schedule-tab.active .tab-day {
    opacity: 1;
    color: rgba(255,255,255,0.9);
}

.tab-date {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary-dark);
}

.schedule-tab.active .tab-date {
    color: white;
}

.btn-full-timetable {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    padding: 0.85rem 1.5rem;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    transition: all var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-full-timetable:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(9,68,147,0.3);
}

/* Schedule Table Card */
.schedule-table-section {
    padding: 3rem 0 5rem;
    background: var(--bg);
}

.schedule-table-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(9,68,147,0.06);
    border: 1px solid rgba(9,68,147,0.06);
}

/* Table Header */
.schedule-table-head {
    display: grid;
    grid-template-columns: 3fr 140px 130px 160px 160px;
    gap: 0;
    padding: 0.9rem 1.75rem;
    background: var(--primary-dark);
    align-items: center;
}

.schedule-table-head > div {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.schedule-table-head .col-route {
    color: rgba(255,255,255,0.9);
}

/* Header labels aligned to match their data columns */
.schedule-table-head .col-duration {
    justify-content: flex-start;
    padding-left: 0;
}

.schedule-table-head .col-fare {
    justify-content: flex-start;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.schedule-table-head .col-availability {
    justify-content: flex-start;
}

.schedule-table-head .col-action {
    justify-content: flex-end;
}

/* Table Body */
.schedule-table-body {
    display: flex;
    flex-direction: column;
}

.schedule-row {
    display: grid;
    grid-template-columns: 3fr 140px 130px 160px 160px;
    gap: 0;
    padding: 1.4rem 1.75rem;
    border-bottom: 1px solid var(--grey-light);
    align-items: center;
    transition: background var(--transition);
}

.schedule-row:last-child {
    border-bottom: none;
}

.schedule-row:hover {
    background: #f5f8ff;
}

/* Route Column */
.col-route {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.route-cities {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.city-from,
.city-to {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.route-arrow {
    color: var(--accent);
    font-size: 12px;
}

.route-times {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.dep-time,
.arr-time {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
}

.dep-time i,
.arr-time i {
    color: var(--primary);
    font-size: 11px;
}

.time-connector {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
    min-width: 60px;
}

.connector-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.connector-dot.start {
    background: var(--primary);
    box-shadow: 0 0 0 2px rgba(9,68,147,0.15);
}

.connector-dot.end {
    background: var(--accent);
    box-shadow: 0 0 0 2px rgba(216,9,9,0.15);
}

.connector-line {
    flex: 1;
    height: 1.5px;
    background: linear-gradient(to right, rgba(9,68,147,0.2), rgba(216,9,9,0.2));
}

/* Duration Column */
.col-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-muted);
}

.col-duration i {
    color: var(--primary);
    font-size: 14px;
}

/* Fare Column */
.col-fare {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fare-amount {
    font-size: 1.25rem;
    font-weight: 900;
    color: #000;
    letter-spacing: -0.3px;
    line-height: 1;
}

.fare-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Availability Column */
.col-availability {
    display: flex;
    align-items: center;
}

.seats-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.seats-indicator.few {
    background: rgba(216,9,9,0.08);
    color: var(--accent);
}

.seats-indicator.some {
    background: rgba(245,158,11,0.08);
    color: #d97706;
}

.seats-indicator.plenty {
    background: rgba(22,163,74,0.08);
    color: #16a34a;
}

.seat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.seats-indicator.few .seat-dot {
    background: var(--accent);
    box-shadow: 0 0 0 2px rgba(216,9,9,0.15);
}

.seats-indicator.some .seat-dot {
    background: #f59e0b;
    box-shadow: 0 0 0 2px rgba(245,158,11,0.15);
}

.seats-indicator.plenty .seat-dot {
    background: #16a34a;
    box-shadow: 0 0 0 2px rgba(22,163,74,0.15);
}

.seat-count {
    font-weight: 900;
    font-size: 15px;
}

.seat-text {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.85;
}

/* Action Column */
.col-action {
    display: flex;
    justify-content: flex-end;
}

.btn-book-schedule {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all var(--transition);
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(9,68,147,0.25);
}

.btn-book-schedule:hover {
    background: var(--accent);
    box-shadow: 0 6px 20px rgba(216,9,9,0.3);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .schedule-table-head,
    .schedule-row {
        grid-template-columns: 2.5fr 110px 110px 130px 130px;
        gap: 0;
    }
}

@media (max-width: 768px) {
    .schedule-table-head {
        display: none;
    }

    .schedule-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.25rem;
        border: 1px solid var(--grey-light);
        border-radius: 10px;
        margin-bottom: 1rem;
    }

    .schedule-tabs-section {
        display: none;
    }

    .schedule-row:last-child {
        margin-bottom: 0;
    }

    .schedule-row:hover {
        background: white;
    }

    .col-route {
        border-bottom: 1px solid var(--grey-light);
        padding-bottom: 1rem;
    }

    .route-cities {
        margin-bottom: 0.5rem;
    }

    .city-from,
    .city-to {
        font-size: 18px;
    }

    .col-duration,
    .col-fare,
    .col-availability {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.25rem 0;
    }

    .col-duration::before {
        content: 'Duration';
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        color: var(--text-muted);
        letter-spacing: 0.5px;
    }

    .col-fare::before {
        content: 'Fare';
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        color: var(--text-muted);
        letter-spacing: 0.5px;
    }

    .col-availability::before {
        content: 'Availability';
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        color: var(--text-muted);
        letter-spacing: 0.5px;
    }

    .col-action {
        justify-content: stretch;
        padding-top: 0.5rem;
        border-top: 1px solid var(--grey-light);
    }

    .btn-book-schedule {
        width: 100%;
        justify-content: center;
        padding: 0.9rem;
    }

    .schedule-tabs-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-full-timetable {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .schedule-hero {
        padding: 120px 0 60px;
    }

    .schedule-tab {
        min-width: 70px;
        padding: 0.65rem 0.75rem;
    }

    .tab-day {
        font-size: 10px;
    }

    .tab-date {
        font-size: 13px;
    }

    .city-from,
    .city-to {
        font-size: 16px;
    }

    .fare-amount {
        font-size: 1.15rem;
    }
}

/* ==========================================
   SCHEDULE FILTERS & DATE PICKER
   ========================================== */
.schedule-filters {
    padding: 2rem 0;
    background: var(--bg);
}

.schedule-filters-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 16px rgba(9,68,147,0.08);
    border: 1px solid rgba(9,68,147,0.08);
}

.filters-grid {
    display: grid;
    grid-template-columns: 1.2fr 2fr 1fr auto;
    gap: 1rem;
    align-items: end;
}

.filter-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-field label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.filter-field label i {
    color: var(--primary);
    font-size: 11px;
}

.search-input,
.filter-select {
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--grey-light);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    color: var(--text-main);
    background: var(--bg);
    transition: all var(--transition);
    width: 100%;
}

.search-input:focus,
.filter-select:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(9,68,147,0.08);
}

.search-input::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

/* Modern Date Picker Styling */
.date-input {
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--grey-light);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    color: var(--text-main);
    background: var(--bg);
    transition: all var(--transition);
    width: 100%;
    cursor: pointer;
    position: relative;
}

.date-input:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(9,68,147,0.08);
}

/* Custom calendar icon */
.date-input::-webkit-calendar-picker-indicator {
    background: var(--primary);
    padding: 4px;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.date-input::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Firefox date picker styling */
.date-input::-moz-calendar-picker-indicator {
    background: var(--primary);
    padding: 4px;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity var(--transition);
}

/* Placeholder styling for empty date inputs */
.date-input:invalid {
    color: var(--text-muted);
}

/* Action Buttons */
.filter-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    padding-bottom: 2px;
}

.btn-apply-filters,
.btn-clear-filters-schedule {
    padding: 0.85rem 1.5rem;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition);
    white-space: nowrap;
    border: none;
}

.btn-apply-filters {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(9,68,147,0.25);
}

.btn-apply-filters:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(9,68,147,0.3);
}

.btn-clear-filters-schedule {
    background: white;
    color: var(--text-muted);
    border: 1.5px solid var(--grey-light);
}

.btn-clear-filters-schedule:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(9,68,147,0.03);
}

/* Date Tabs Section */
.schedule-tabs-section {
    padding: 1.5rem 0;
    background: var(--bg);
    border-bottom: 1px solid var(--grey-light);
}

.schedule-date-tabs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.schedule-date-tabs::-webkit-scrollbar {
    display: none;
}

.schedule-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding: 0.75rem 1rem;
    background: white;
    border: 1.5px solid var(--grey-light);
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition);
    flex-shrink: 0;
    font-family: inherit;
}

.schedule-tab:hover {
    border-color: var(--primary);
    background: rgba(9,68,147,0.03);
}

.schedule-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(9,68,147,0.25);
}

.tab-day {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
    margin-bottom: 2px;
}

.schedule-tab.active .tab-day {
    opacity: 1;
    color: rgba(255,255,255,0.9);
}

.tab-date {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary-dark);
}

.schedule-tab.active .tab-date {
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .filters-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .filter-actions {
        grid-column: 1 / -1;
        justify-content: flex-end;
    }
}

@media (max-width: 768px) {
    .filters-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-apply-filters,
    .btn-clear-filters-schedule {
        width: 100%;
        justify-content: center;
    }
    
    .schedule-filters-card {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .search-input,
    .filter-select,
    .date-input {
        padding: 0.75rem 0.9rem;
        font-size: 14px;
    }
    
    .btn-apply-filters,
    .btn-clear-filters-schedule {
        padding: 0.75rem 1.25rem;
        font-size: 13px;
    }
}

/* ==========================================
   FAQ PAGE EXTENSIONS
   ========================================== */
.faq-hero {
    background: var(--primary-dark);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.faq-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(201,162,39,0.1) 0%, transparent 60%);
    pointer-events: none;
}
.faq-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}
.faq-hero .section-label {
    color: var(--gold-light);
    margin-bottom: 1rem;
    display: block;
}
.faq-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.05;
    color: white;
    letter-spacing: -1.5px;
    margin-bottom: 1.25rem;
}
.faq-hero h1 em {
    font-style: normal;
    color: var(--gold-light);
}
.faq-hero p {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
    max-width: 550px;
    margin: 0 auto;
}

/* Search Section */
.faq-search-section {
    padding: 2.5rem 0;
    background: var(--bg);
}
.faq-search-card {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 4px 24px rgba(9,68,147,0.08);
    border: 1px solid rgba(9,68,147,0.08);
}
.search-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.search-input-wrap i {
    position: absolute;
    left: 1.25rem;
    color: var(--primary);
    font-size: 1.1rem;
}
.faq-search-input {
    width: 100%;
    padding: 1.1rem 1.25rem 1.1rem 3.2rem;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 16px;
    color: var(--text-main);
    outline: none;
}
.faq-search-input::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

/* FAQ Layout */
.faq-section {
    background: white;
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}
.faq-category {
    background: var(--bg);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(9,68,147,0.06);
}
.faq-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid rgba(9,68,147,0.08);
}
.faq-category-header i {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.faq-category-header h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -0.3px;
}

/* Accordion Items */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.faq-item {
    background: white;
    border-radius: 8px;
    border: 1px solid rgba(9,68,147,0.08);
    overflow: hidden;
    transition: all var(--transition);
}
.faq-item:hover {
    border-color: rgba(9,68,147,0.15);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    color: var(--primary-dark);
    transition: background var(--transition);
}
.faq-question:hover {
    background: rgba(9,68,147,0.03);
}
.faq-question i {
    font-size: 14px;
    color: var(--primary);
    transition: transform var(--transition);
    flex-shrink: 0;
}
.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: var(--accent);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.25rem 1.25rem;
}
.faq-answer p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* CTA Section */
.faq-cta {
    margin-top: 4rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    padding: 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.faq-cta::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}
.faq-cta h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 900;
    color: white;
    letter-spacing: -0.5px;
    margin-bottom: 0.75rem;
    position: relative;
}
.faq-cta p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto 2rem;
    position: relative;
}
.faq-cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* Responsive */
@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
@media (max-width: 768px) {
    .faq-hero {
        padding: 120px 0 60px;
    }
    .faq-category {
        padding: 1.5rem;
    }
    .faq-cta {
        padding: 2.5rem 1.5rem;
    }
    .faq-cta-btns {
        flex-direction: column;
    }
    .faq-cta-btns a {
        width: 100%;
        justify-content: center;
    }
}
/* ==========================================
   CONTACT PAGE STYLES
   ========================================== */

.contact-hero {
    background: var(--primary-dark);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.contact-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(201,162,39,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.contact-hero .section-label {
    color: var(--gold-light);
    margin-bottom: 1rem;
    display: block;
}

.contact-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.05;
    color: white;
    letter-spacing: -1.5px;
    margin-bottom: 1.25rem;
}

.contact-hero h1 em {
    font-style: normal;
    color: var(--gold-light);
}

.contact-hero p {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
    max-width: 550px;
    margin: 0 auto;
}

/* Info Cards Section */
.contact-info-section {
    padding: 4rem 0;
    background: var(--bg);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-info-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(9,68,147,0.06);
    border: 1px solid rgba(9,68,147,0.06);
    transition: all var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(9,68,147,0.12);
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: rgba(9,68,147,0.08);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.25rem;
    transition: all var(--transition);
}

.contact-info-card:hover .contact-icon {
    background: var(--primary);
    color: white;
}

.contact-info-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.contact-info-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.contact-link {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    margin-bottom: 0.35rem;
    transition: color var(--transition);
}

.contact-link:hover {
    color: var(--accent);
}

/* Form & Map Section */
.contact-form-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-wrap .section-label {
    margin-bottom: 0.5rem;
}

.contact-form-wrap .section-title {
    margin-bottom: 0.75rem;
}

.form-desc {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

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

.form-field.full {
    grid-column: 1 / -1;
}

.form-field label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 0.9rem 1rem;
    border: 1.5px solid var(--grey-light);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    color: var(--text-main);
    background: var(--bg);
    transition: all var(--transition);
    width: 100%;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(9,68,147,0.08);
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    align-self: flex-start;
    padding: 1rem 2.5rem;
    font-size: 16px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(9,68,147,0.25);
}

/* Map & Location Info */
.contact-map-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 100px;
}

.map-info {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--grey-light);
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.map-info h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.map-info p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.map-info p i {
    color: var(--accent);
    margin-top: 3px;
}

.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
    font-size: 14px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border: 1px solid var(--grey-light);
    background: #eee;
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* CTA Section */
.contact-cta {
    background: var(--bg);
    padding: 4rem 0;
}

.contact-cta-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.contact-cta-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 900;
    color: white;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
}

.cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    line-height: 1.7;
    max-width: 500px;
}

.contact-cta .btn-gold {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

/* Responsive Contact Page */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-map-wrap {
        position: static;
    }
    
    .contact-cta-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-hero {
        padding: 120px 0 60px;
    }
    
    .contact-cta-card {
        padding: 2.5rem 1.5rem;
    }
}
/* ── Lucide Icon Styles (replaces Font Awesome) ──────────────── */
.icon-btn svg,
.nav-icon-wrap svg,
nav svg,
.footer-contact-icon svg,
.socials svg,
.mobile-contact-item svg,
.mobile-auth-link svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.75;
    display: block;
}

.socials a svg {
    width: 16px;
    height: 16px;
}

.search-container svg {
    width: 16px;
    height: 16px;
    stroke-width: 2;
}

.btn-auth-submit svg {
    width: 16px;
    height: 16px;
}

[data-lucide] {
    display: inline-flex;
}

.lucide-loader-2 {
    animation: lucide-spin 1s linear infinite;
}
@keyframes lucide-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ── Text Logo (replaces logo-mark box) ──────────────────────── */
.logo-text-only {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text-brand {
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--primary, #094493);
    line-height: 1;
}

/* Footer version — white text on dark bg */
footer .logo-text-brand {
    color: #fff;
    font-size: 1.25rem;
}

/* Hide old logo-mark box if it ever slips through */
.logo-mark { display: none !important; }

/* ── Social Icons (inline SVG) ───────────────────────────────── */
.socials a svg {
    width: 16px;
    height: 16px;
    stroke-width: 1.75;
    display: block;
}

/* ── Footer logo override ────────────────────────────────────── */
.footer-brand .logo {
    color: #fff;
    margin-bottom: 0.5rem;
}
.footer-brand .logo-text-brand {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #fff;
    line-height: 1;
    display: block;
}
.footer-brand .logo-text-only {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* ── Contact icon SVG sizing ─────────────────────────────────── */
.footer-contact-icon svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.75;
    color: rgba(255,255,255,0.85);
}
.footer-contact-item:hover .footer-contact-icon svg {
    color: #fff;
}

/* ── Step circle icon sizing ─────────────────────────────────── */
.step-num svg {
    width: 26px;
    height: 26px;
    stroke-width: 1.75;
    color: var(--primary);
    transition: color var(--transition), stroke var(--transition);
}

/* ── Schedule column alignment fixes ────────────────────────── */
.col-duration svg,
.dep-time svg,
.arr-time svg,
.route-arrow svg {
    width: 14px;
    height: 14px;
    stroke-width: 1.75;
    flex-shrink: 0;
}

.col-duration svg {
    color: var(--primary);
    width: 15px;
    height: 15px;
}

.dep-time svg,
.arr-time svg {
    color: var(--primary);
    width: 12px;
    height: 12px;
}

.route-arrow svg {
    color: var(--accent);
    width: 14px;
    height: 14px;
}

.col-availability {
    display: flex;
    align-items: center;
}

/* Book button icon */
.btn-ticket svg,
.btn-book svg {
    width: 14px;
    height: 14px;
    stroke-width: 2;
    flex-shrink: 0;
}

/* ── Route info wrapper — no extra indent ────────────────────── */
.route-info {
    padding: 0;
    margin: 0;
}



/* ══════════════════════════════════════════════════════════════
   SCHEDULE TABLE — SINGLE CLEAN DEFINITION
   One place. No conflicts. Header and rows use identical columns.
   ══════════════════════════════════════════════════════════════ */

/* ── Grid: identical for header and every data row ───────────── */
.schedule-table-head,
.schedule-row-head,
.schedule-row {
    display: grid !important;
    grid-template-columns: minmax(0,3fr) 150px 130px 170px 150px !important;
    gap: 0 !important;
    align-items: center !important;
}

.schedule-table-head,
.schedule-row-head {
    padding: 0.85rem 1.75rem !important;
    background: var(--primary-dark) !important;
}

.schedule-row {
    padding: 1.25rem 1.75rem !important;
    border-bottom: 1px solid rgba(9,68,147,0.07) !important;
    transition: background var(--transition) !important;
}
.schedule-row:last-child { border-bottom: none !important; }
.schedule-row:hover      { background: #f5f8ff !important; }

/* ── Header labels: all flex, each column explicitly aligned ─── */
.schedule-table-head > div,
.schedule-row-head > div {
    display: flex !important;
    align-items: center !important;
    font-size: 10.5px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.2px !important;
    color: rgba(255,255,255,0.55) !important;
    justify-content: flex-start !important; /* default ALL to left */
}

/* Route header: slightly brighter */
.schedule-table-head .col-route,
.schedule-row-head .col-route {
    color: rgba(255,255,255,0.9) !important;
}

/* Action header: only one that goes right */
.schedule-table-head .col-action,
.schedule-row-head .col-action {
    justify-content: flex-end !important;
}

/* ── Route column ─────────────────────────────────────────────── */
.schedule-row .col-route {
    display: flex !important;
    align-items: center !important;
    padding-right: 1.5rem !important;
    min-width: 0 !important;
}

.route-pair {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
}

.route-pair .city-block:first-child {
    flex: 0 0 110px !important;
    width: 110px !important;
}

.route-pair .city-block:last-child {
    flex: 0 0 130px !important;
    width: 130px !important;
}

.city-block {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    align-items: flex-start !important;
}

.city-block strong {
    font-size: 14px !important;
    font-weight: 800 !important;
    color: var(--primary-dark) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.3px !important;
    white-space: nowrap !important;
    line-height: 1 !important;
}

.city-block .dep-time {
    font-size: 11.5px !important;
    color: var(--text-muted) !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.2rem !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
}

.city-block .dep-time svg {
    width: 11px !important;
    height: 11px !important;
    stroke-width: 2 !important;
    color: var(--primary) !important;
    flex-shrink: 0 !important;
}

.route-connector {
    flex: 1 1 auto !important;
    position: relative !important;
    height: 2px !important;
    margin: 0 0.85rem !important;
    min-width: 20px !important;
    background: linear-gradient(to right, rgba(9,68,147,.2), rgba(9,68,147,.1), rgba(9,68,147,.2)) !important;
}

.route-connector::before,
.route-connector::after { display: none !important; }

.route-dot {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 9px !important;
    height: 9px !important;
    border-radius: 50% !important;
    background: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(9,68,147,.15) !important;
    z-index: 1 !important;
}

/* ── Duration column ──────────────────────────────────────────── */
.schedule-row .col-duration {
    display: flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: var(--text-muted) !important;
}

.col-duration svg {
    width: 15px !important;
    height: 15px !important;
    stroke-width: 1.75 !important;
    color: var(--primary) !important;
    flex-shrink: 0 !important;
}

/* ── Fare column ──────────────────────────────────────────────── */
.schedule-row .col-fare {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 2px !important;
}

.fare-amount {
    font-size: 1.1rem !important;
    font-weight: 900 !important;
    color: var(--primary) !important;
    letter-spacing: -0.3px !important;
    line-height: 1 !important;
}

.fare-label {
    font-size: 11px !important;
    color: var(--text-muted) !important;
    font-weight: 500 !important;
}

/* ── Availability column ──────────────────────────────────────── */
.schedule-row .col-availability,
.schedule-row .col-seats {
    display: flex !important;
    align-items: center !important;
    gap: 0.55rem !important;
}

.seats-pip { width:8px; height:8px; border-radius:50%; flex-shrink:0; }
.seats-pip.few    { background:var(--accent);  box-shadow:0 0 0 3px rgba(216,9,9,.12); }
.seats-pip.some   { background:#f59e0b;        box-shadow:0 0 0 3px rgba(245,158,11,.12); }
.seats-pip.plenty { background:#16a34a;        box-shadow:0 0 0 3px rgba(22,163,74,.12); }

.seats-text { display:flex; flex-direction:column; gap:1px; }
.seats-count { font-size:1rem; font-weight:800; color:var(--primary-dark); line-height:1; }
.seats-label { font-size:11px; color:var(--text-muted); font-weight:500; line-height:1; }

/* ── Action column ────────────────────────────────────────────── */
.schedule-row .col-action {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
}

.btn-ticket,
.btn-book-schedule {
    background: var(--primary) !important;
    color: white !important;
    border: none !important;
    padding: 0.55rem 1.25rem !important;
    font-family: inherit !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    cursor: pointer !important;
    border-radius: 6px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    text-decoration: none !important;
    transition: all var(--transition) !important;
    white-space: nowrap !important;
    box-shadow: 0 3px 10px rgba(9,68,147,.2) !important;
}
.btn-ticket svg, .btn-book-schedule svg {
    width: 14px !important; height: 14px !important;
    stroke-width: 2 !important; flex-shrink: 0 !important;
}
.btn-ticket:hover, .btn-book-schedule:hover {
    background: var(--accent) !important;
    box-shadow: 0 5px 16px rgba(216,9,9,.25) !important;
    transform: translateY(-1px) !important;
}

/* ── Step circles (home page) ─────────────────────────────────── */
.step-num {
    width: 68px !important; height: 68px !important;
    margin: 0 auto 1.5rem !important;
    background: #fff !important;
    border: 2px solid #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    position: relative !important;
    box-shadow: 0 4px 16px rgba(0,0,0,.15) !important;
}
.step-num svg {
    width: 26px !important; height: 26px !important;
    stroke-width: 1.75 !important;
    color: var(--primary) !important;
}
.step-card:hover .step-num { background: var(--gold) !important; border-color: var(--gold) !important; }
.step-card:hover .step-num svg { color: #fff !important; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .schedule-table-head,
    .schedule-row-head,
    .schedule-row {
        grid-template-columns: minmax(0,2.5fr) 120px 110px 140px 120px !important;
    }
}

@media (max-width: 768px) {
    .schedule-table-head,
    .schedule-row-head { display: none !important; }
    .schedule-row {
        grid-template-columns: 1fr !important;
        gap: 0.5rem !important;
        padding: 1rem !important;
    }
}


/* ══════════════════════════════════════════════════════════════
   LUCIDE ICONS — SVG sizing (replaces Font Awesome)
   ══════════════════════════════════════════════════════════════ */
.nav-icon-wrap svg { width:16px; height:16px; stroke-width:1.75; display:block; }
.header-icon-btn svg { width:18px; height:18px; stroke-width:1.75; }
.dropdown-item-icon svg { width:16px; height:16px; stroke-width:1.75; }
.stat-card-icon svg { width:22px; height:22px; stroke-width:1.75; }
.sidebar-logo-icon svg { width:22px; height:22px; stroke-width:2; color:#fff; }
[data-lucide] { display:inline-flex; }
.lucide-loader-2 { animation: lucide-spin 1s linear infinite; }
@keyframes lucide-spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

/* Auth page input icons */
.input-wrapper i,
.input-wrapper > svg {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    width: 16px;
    height: 16px;
    stroke-width: 1.75;
}
.alert-error svg, .alert-success svg { width:16px; height:16px; flex-shrink:0; stroke-width:1.75; }
.btn-auth-submit svg { width:16px; height:16px; stroke-width:2; flex-shrink:0; }

/* Step circles */
.step-num {
    width:68px; height:68px;
    margin:0 auto 1.5rem;
    background:#fff;
    border:2px solid #fff;
    display:flex; align-items:center; justify-content:center;
    border-radius:50%;
    position:relative;
    box-shadow:0 4px 16px rgba(0,0,0,.15);
    transition:all var(--transition);
}
.step-num svg { width:26px; height:26px; stroke-width:1.75; color:var(--primary); }
.step-card:hover .step-num { background:var(--gold); border-color:var(--gold); }
.step-card:hover .step-num svg { color:#fff; }

/* Logo text */
.logo-text-only { display:flex; align-items:center; text-decoration:none; }
.logo-text-brand { font-size:1.35rem; font-weight:900; letter-spacing:-0.5px; color:var(--primary,#094493); line-height:1; }
footer .logo-text-brand { color:#fff; font-size:1.25rem; }
.logo-mark { display:none !important; }

/* Footer */
.footer-brand .logo-text-brand { font-size:1.4rem; font-weight:900; letter-spacing:-0.5px; color:#fff; line-height:1; display:block; }
.footer-brand .logo-text-only { display:flex; align-items:center; text-decoration:none; }
.footer-contact-icon { width:32px; height:32px; background:none; border-radius:0; display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,0.75); flex-shrink:0; }
.footer-contact-icon svg { width:18px; height:18px; stroke-width:1.75; color:rgba(255,255,255,0.85); }
.footer-contact-item:hover .footer-contact-icon { background:none; color:#fff; }
.footer-contact-item:hover .footer-contact-icon svg { color:#fff; }
.socials a svg { width:16px; height:16px; stroke-width:1.75; display:block; }

/* ══════════════════════════════════════════════════════════════
   SCHEDULE TABLE — DEFINITIVE (Fresh base, no conflicts)
   Both .schedule-row-head (home) and .schedule-table-head (schedule page)
   use IDENTICAL grid + per-column alignment.
   ══════════════════════════════════════════════════════════════ */

/* Force both headers to use same grid as rows */
.schedule-table-head,
.schedule-row-head,
.schedule-row {
    grid-template-columns: 3fr 140px 130px 160px 160px !important;
    gap: 0 !important;
}

/* All header cells: left-aligned by default */
.schedule-table-head > div,
.schedule-row-head > div {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

/* Only action goes right */
.schedule-table-head .col-action,
.schedule-row-head .col-action {
    justify-content: flex-end !important;
}

/* Fare data cell: left-aligned column */
.schedule-row .col-fare {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 2px !important;
}

.fare-amount {
    font-size: 1.1rem !important;
    font-weight: 900 !important;
    color: var(--primary) !important;
    letter-spacing: -0.3px !important;
    line-height: 1 !important;
}

.fare-label {
    font-size: 11px !important;
    color: var(--text-muted) !important;
    font-weight: 500 !important;
}

/* ── Route pair ────────────────────────────────────────────────── */
.col-route {
    display: flex !important;
    align-items: center !important;
    padding-right: 1.5rem !important;
    min-width: 0 !important;
}

.route-pair {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
}

.route-pair .city-block:first-child { flex: 0 0 110px !important; width: 110px !important; }
.route-pair .city-block:last-child  { flex: 0 0 130px !important; width: 130px !important; }

.city-block {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    align-items: flex-start !important;
}

.city-block strong {
    font-size: 14px !important;
    font-weight: 800 !important;
    color: var(--primary-dark) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.3px !important;
    white-space: nowrap !important;
    line-height: 1 !important;
}

.city-block .dep-time {
    font-size: 11.5px !important;
    color: var(--text-muted) !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.2rem !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
}

.city-block .dep-time svg {
    width: 11px !important; height: 11px !important;
    stroke-width: 2 !important; color: var(--primary) !important; flex-shrink: 0 !important;
}

.route-connector {
    flex: 1 1 auto !important;
    position: relative !important;
    height: 2px !important;
    margin: 0 0.85rem !important;
    min-width: 20px !important;
    background: linear-gradient(to right, rgba(9,68,147,.2), rgba(9,68,147,.1), rgba(9,68,147,.2)) !important;
}
.route-connector::before, .route-connector::after { display: none !important; }

.route-dot {
    position: absolute !important;
    left: 50% !important; top: 50% !important;
    transform: translate(-50%,-50%) !important;
    width: 9px !important; height: 9px !important;
    border-radius: 50% !important;
    background: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(9,68,147,.15) !important;
    z-index: 1 !important;
}

/* ── Duration ──────────────────────────────────────────────────── */
.schedule-row .col-duration {
    display: flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: var(--text-muted) !important;
}
.col-duration svg { width:15px !important; height:15px !important; stroke-width:1.75 !important; color:var(--primary) !important; flex-shrink:0 !important; }

/* ── Availability / Seats ──────────────────────────────────────── */
.schedule-row .col-availability,
.schedule-row .col-seats {
    display: flex !important;
    align-items: center !important;
    gap: 0.55rem !important;
}
.seats-pip { width:8px; height:8px; border-radius:50%; flex-shrink:0; }
.seats-pip.few    { background:var(--accent);  box-shadow:0 0 0 3px rgba(216,9,9,.12); }
.seats-pip.some   { background:#f59e0b;        box-shadow:0 0 0 3px rgba(245,158,11,.12); }
.seats-pip.plenty { background:#16a34a;        box-shadow:0 0 0 3px rgba(22,163,74,.12); }
.seats-text { display:flex; flex-direction:column; gap:1px; }
.seats-count { font-size:1rem; font-weight:800; color:var(--primary-dark); line-height:1; }
.seats-label { font-size:11px; color:var(--text-muted); font-weight:500; line-height:1; }

/* ── Action ────────────────────────────────────────────────────── */
.schedule-row .col-action { display:flex !important; align-items:center !important; justify-content:flex-end !important; }

.btn-ticket, .btn-book-schedule {
    background:var(--primary) !important; color:white !important; border:none !important;
    padding:0.55rem 1.25rem !important; font-family:inherit !important;
    font-size:13px !important; font-weight:700 !important;
    text-transform:uppercase !important; letter-spacing:0.5px !important;
    cursor:pointer !important; border-radius:6px !important;
    display:inline-flex !important; align-items:center !important; gap:0.4rem !important;
    text-decoration:none !important; transition:all var(--transition) !important;
    white-space:nowrap !important; box-shadow:0 3px 10px rgba(9,68,147,.2) !important;
}
.btn-ticket svg, .btn-book-schedule svg { width:14px !important; height:14px !important; stroke-width:2 !important; flex-shrink:0 !important; }
.btn-ticket:hover, .btn-book-schedule:hover { background:var(--accent) !important; box-shadow:0 5px 16px rgba(216,9,9,.25) !important; transform:translateY(-1px) !important; }

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width:1024px) {
    .schedule-table-head, .schedule-row-head, .schedule-row {
        grid-template-columns: minmax(0,2.5fr) 120px 110px 140px 120px !important;
    }
}
@media (max-width:768px) {
    .schedule-table-head, .schedule-row-head { display:none !important; }
    .schedule-row { grid-template-columns:1fr !important; gap:0.5rem !important; padding:1rem !important; }
}
