@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800;900&family=Noto+Sans+SC:wght@400;500;700;800&display=swap');

:root {
  --page: #eef5f8;
  --ink: #f8fbfc;
  --hero-ink: #ffffff;
  --muted: rgba(236, 243, 246, 0.96);
  --panel: rgba(9, 29, 48, 0.22);
  --panel-solid: rgba(11, 34, 56, 0.78);
  --line: rgba(221, 232, 237, 0.18);
  --gold: #e3c881;
  --gold-dark: #9e8950;
  --blue: #9ed0e4;
  --red: #89a9b8;
  --green: #25d366;
  --shadow: none;
  --glass-bg: rgba(8, 25, 42, 0.56);
  --glass-bg-hover: rgba(17, 42, 66, 0.8);
  --glass-border: rgba(232, 239, 244, 0.16);
  --glass-border-hover: rgba(227, 200, 129, 0.42);
  --glass-blur: 22px;
  --gold-glow: rgba(227, 200, 129, 0.12);
  --font-body: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Manrope", "Noto Sans SC", Inter, ui-sans-serif, system-ui, sans-serif;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--page);
  overflow-x: hidden;
}
body::before { content: ""; position: fixed; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(3,12,20,.84), rgba(3,12,20,.42) 44%, rgba(3,12,20,.22)), linear-gradient(180deg, rgba(3,12,20,.18), rgba(3,12,20,.78)), url('road.jpg') center / cover no-repeat; }
body::after { content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; background: linear-gradient(180deg, transparent 0 46vh, rgba(7,24,39,.72) 78vh, rgba(7,24,39,.94)); }
a { color: inherit; }
.layout { min-height: 100vh; }
.sidebar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  z-index: 9999;
  width: min(1160px, calc(100vw - 28px));
  padding: 12px 14px;
  background: linear-gradient(135deg, rgba(7,26,43,.88), rgba(17,47,73,.78));
  border: 1px solid var(--glass-border);
  border-radius: 26px;
  box-shadow: none;
  backdrop-filter: blur(var(--glass-blur)) saturate(1.12);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  opacity: 1;
  pointer-events: auto;
  transition: transform .32s ease, opacity .32s ease;
  isolation: isolate;
  will-change: transform, opacity;
}
.sidebar::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255,255,255,.12), transparent 24%, transparent 74%, rgba(227,200,129,.16));
  opacity: .78;
  pointer-events: none;
}
.sidebar.is-scrolled { transform: translate3d(-50%, 0, 0); opacity: 1; pointer-events: auto; }
.brand { position: relative; z-index: 1; display: flex; align-items: center; gap: 9px; flex: 0 0 auto; width: clamp(204px, 22vw, 276px); height: 56px; min-width: 0; padding: 4px 10px 4px 8px; border: 1px solid rgba(227,200,129,.18); border-radius: 18px; background: linear-gradient(135deg, rgba(255,255,255,.055), rgba(227,200,129,.035)); box-shadow: inset 0 0 0 1px rgba(255,255,255,.035), 0 0 22px rgba(227,200,129,.075); overflow: hidden; }
.brand::selection { background: transparent; }
.brand::before, .brand::after { position: relative; z-index: 1; }
.brand::before { content: ""; flex: 0 0 auto; width: 40px; height: 50px; background: url('global-logo-symbol.png') center / contain no-repeat; filter: drop-shadow(0 0 8px rgba(227,200,129,.32)) drop-shadow(0 7px 12px rgba(0,0,0,.18)); opacity: .95; animation: led-symbol-pulse 3.8s ease-in-out infinite; }
.brand::after { content: ""; flex: 1 1 auto; min-width: 136px; height: 40px; background: url('global-logo-wordmark.png') left center / contain no-repeat; filter: invert(1) brightness(1.56) contrast(.78) drop-shadow(0 0 10px rgba(227,200,129,.18)); opacity: .9; animation: led-wordmark-flicker 5.6s linear infinite; }
.brand::before { will-change: filter, opacity; }
.brand::after { will-change: filter, opacity; }
.brand img { display: none; }
.brand div { display: none; }
.brand strong { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; }
.brand span { color: rgba(232,238,240,.84); font-size: 12px; }
@keyframes led-symbol-pulse { 0%, 100% { opacity: .88; filter: drop-shadow(0 0 7px rgba(227,200,129,.26)) drop-shadow(0 7px 12px rgba(0,0,0,.18)); } 48% { opacity: 1; filter: drop-shadow(0 0 15px rgba(227,200,129,.58)) drop-shadow(0 0 28px rgba(158,208,228,.16)); } 52% { opacity: .72; } 56% { opacity: 1; } }
@keyframes led-wordmark-flicker { 0%, 18%, 22%, 58%, 100% { opacity: .9; filter: invert(1) brightness(1.56) contrast(.78) drop-shadow(0 0 10px rgba(227,200,129,.18)); } 20% { opacity: .68; filter: invert(1) brightness(1.22) contrast(.82) drop-shadow(0 0 5px rgba(227,200,129,.08)); } 60% { opacity: 1; filter: invert(1) brightness(1.72) contrast(.76) drop-shadow(0 0 16px rgba(227,200,129,.3)); } }
@media (prefers-reduced-motion: reduce) { .brand::before, .brand::after { animation: none; } }
.nav { position: relative; z-index: 1; display: flex; flex: 1 1 auto; flex-wrap: wrap; justify-content: center; gap: 6px; border: 0; border-radius: 20px; background: rgba(255,255,255,.03); backdrop-filter: none; -webkit-backdrop-filter: none; overflow: visible; box-shadow: none; padding: 4px; }
.nav::before { display: none; }
.nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-right: 1px solid transparent;
  border-radius: 15px;
  background: rgba(255,255,255,.02);
  color: rgba(245,248,249,.76);
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: .085em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease, color .2s ease;
}
.nav a,
.nav a:hover,
.nav a:focus-visible,
.nav a.active {
  color: rgba(245,248,249,.94);
  box-shadow: none;
}
.nav a { position: relative; z-index: 1; }
.nav a::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 8px; height: 2px; border-radius: 999px; background: linear-gradient(90deg, rgba(227,200,129,.08), rgba(227,200,129,.95), rgba(227,200,129,.08)); opacity: 0; transform: scaleX(.35); transition: opacity .2s ease, transform .2s ease; transform-origin: center; }
.nav a:hover, .nav a:focus-visible, .nav a.active { background: linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.03)); border-color: rgba(255,255,255,.14); color: var(--hero-ink); transform: translateY(-1px); }
.nav a:hover::after, .nav a:focus-visible::after, .nav a.active::after { opacity: 1; transform: scaleX(1); }
.nav a:last-child { border-right: 0; }
.language-switcher { position: relative; z-index: 1; display: flex; align-items: center; gap: 1px; flex: 0 0 auto; padding: 3px; border: 1px solid rgba(255,255,255,.1); border-radius: 999px; background: rgba(255,255,255,.045); }
.language-switcher a, .language-switcher button { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 28px; min-height: 28px; padding: 0; border-radius: 999px; border: 0; background: transparent; color: rgba(245,248,249,.72); font-size: 14px; font-weight: 900; letter-spacing: 0; text-decoration: none; line-height: 1; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; }
.language-switcher a::after { content: attr(data-tooltip); position: absolute; left: 50%; top: calc(100% + 8px); transform: translateX(-50%) translateY(-3px); padding: 5px 8px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; background: rgba(7,24,39,.9); color: var(--hero-ink); font-size: 10px; font-weight: 900; letter-spacing: .06em; line-height: 1; opacity: 0; pointer-events: none; transition: opacity .18s ease, transform .18s ease; }
.language-switcher a:hover::after, .language-switcher a:focus-visible::after { opacity: 1; transform: translateX(-50%) translateY(0); }
.language-switcher button::before { display: none; }
.language-switcher a:hover, .language-switcher a.is-active, .language-switcher button:hover, .language-switcher button.is-active { transform: none; background: rgba(227,200,129,.18); color: var(--hero-ink); }

/* Collapsed language switcher: show only active language + chevron, expand on hover/focus/tap.
   Uses logical properties so it auto-mirrors under [dir="rtl"]. */
.language-switcher { transition: padding .2s ease, gap .2s ease; padding-inline-end: 22px; z-index: 20; }
.language-switcher::after { content: ""; position: absolute; inset-inline-end: 9px; top: 50%; width: 7px; height: 7px; margin-top: -5px; border-right: 1.5px solid rgba(245,248,249,.7); border-bottom: 1.5px solid rgba(245,248,249,.7); transform: rotate(45deg); transition: transform .2s ease, opacity .2s ease; pointer-events: none; }
[dir="rtl"] .language-switcher::after { border-right: 0; border-bottom: 0; border-left: 1.5px solid rgba(245,248,249,.7); border-top: 1.5px solid rgba(245,248,249,.7); }
.language-switcher a { max-width: 28px; opacity: 1; transition: max-width .25s ease, opacity .2s ease, padding .2s ease, margin .2s ease, background .2s ease, color .2s ease; overflow: hidden; }
.language-switcher a:not(.is-active) { max-width: 0; opacity: 0; pointer-events: none; }
.language-switcher:hover, .language-switcher:focus-within, .language-switcher.is-open { padding-inline-end: 3px; }
.language-switcher:hover a:not(.is-active), .language-switcher:focus-within a:not(.is-active), .language-switcher.is-open a:not(.is-active) { max-width: 28px; opacity: 1; pointer-events: auto; }
.language-switcher:hover::after, .language-switcher:focus-within::after, .language-switcher.is-open::after { opacity: 0; transform: rotate(225deg); }
.bar-contact { display: none; }
.bar-contact a { color: inherit; text-decoration: none; }
.bar-contact a:hover { color: var(--gold); }
.sidebar-note { display: none; }
main { max-width: 1180px; margin: 0 auto; padding: 0 clamp(18px, 4vw, 44px) 44px; }
.page-hero { min-height: min(780px, 88vh); max-width: 1040px; padding: 220px 0 96px; color: var(--hero-ink); display: flex; flex-direction: column; justify-content: center; }
.eyebrow { margin: 0 0 16px; color: var(--gold); font-family: var(--font-body); font-size: 12px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; text-shadow: 0 2px 14px rgba(0,0,0,.28); }
h1 { margin: 0; max-width: 900px; color: var(--hero-ink); font-family: var(--font-display); font-size: clamp(48px, 6.7vw, 88px); font-weight: 800; line-height: 1.02; letter-spacing: 0; text-transform: none; text-shadow: 0 3px 22px rgba(0,0,0,.34); }
.lead { max-width: 690px; margin: 24px 0 0; color: rgba(255,255,255,.9); font-size: clamp(17px, 2vw, 21px); line-height: 1.6; text-shadow: 0 2px 16px rgba(0,0,0,.3); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.grid { display: grid; gap: 18px; }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.fleet-editorial { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); gap: 18px; margin: -32px 0 28px; align-items: stretch; }
.fleet-editorial figure, .office-editorial img { margin: 0; position: relative; overflow: hidden; border: 1px solid rgba(232,239,244,.18); border-radius: 24px; background: rgba(255,255,255,.08); box-shadow: 0 24px 70px rgba(0,0,0,.24); }
.fleet-editorial img { display: block; width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.fleet-editorial figcaption { position: absolute; left: 18px; bottom: 18px; z-index: 1; padding: 10px 14px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: rgba(7,24,39,.62); color: var(--hero-ink); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.fleet-editorial figure::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 52%, rgba(2,12,20,.58)); }
.card { position: relative; border: 1px solid var(--glass-border); border-radius: 22px; background: linear-gradient(135deg, rgba(255,255,255,.22), rgba(255,255,255,.1)); backdrop-filter: blur(var(--glass-blur)) saturate(1.18); -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.18); box-shadow: var(--shadow); overflow: hidden; }
.card.pad { padding: 26px; }
.card img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.card:has(img)::after, .gallery::before { content: ""; pointer-events: none; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(30,36,39,.12), rgba(4,5,6,.08) 48%, rgba(4,5,6,.1)); border: 1px solid rgba(218,231,235,.07); backdrop-filter: none; -webkit-backdrop-filter: none; }
.card h2, .card h3 { margin: 0 0 12px; color: var(--hero-ink); font-family: var(--font-display); font-size: 30px; font-weight: 400; line-height: 1.12; text-shadow: none; }
.card p { margin: 0; color: var(--muted); line-height: 1.6; font-weight: 620; text-shadow: none; }
.btn, button, input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid rgba(232,239,244,.16);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(11,38,64,.96), rgba(30,84,120,.9));
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.btn::before, button::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.16), transparent 36%, transparent 72%, rgba(227,200,129,.14));
  opacity: .95;
  pointer-events: none;
}
.btn:hover, button:hover, input[type="submit"]:hover { transform: translateY(-2px); background: linear-gradient(135deg, rgba(18,51,82,.98), rgba(56,114,154,.92)); border-color: var(--glass-border-hover); color: var(--hero-ink); }
.btn.secondary { background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(17,47,73,.34)); color: var(--hero-ink); }
.form-panel { max-width: 760px; border: 1px solid var(--glass-border); border-radius: 24px; background: linear-gradient(135deg, rgba(255,255,255,.22), rgba(255,255,255,.1)); backdrop-filter: blur(var(--glass-blur)) saturate(1.18); -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.18); padding: 28px; box-shadow: var(--shadow); }
.booking-workspace { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 360px); gap: 18px; align-items: start; margin-top: -44px; }
.smart-booking-form { max-width: none; }
.upload-panel { margin-bottom: 18px; padding: 18px; border: 1px dashed rgba(227,200,129,.42); border-radius: 18px; background: linear-gradient(135deg, rgba(227,200,129,.14), rgba(255,255,255,.055)); }
.upload-panel label { margin-top: 0; }
.upload-hint, .form-status { margin-top: 10px; color: rgba(255,255,255,.82); font-size: 13px; line-height: 1.45; font-weight: 720; }
.form-status.is-success { color: #cfe8d4; }
.form-status.is-error { color: #ffb4bd; }
.quote-download { margin-top: 14px; }

.booking-start-grid { margin-bottom: 18px; }
.vehicle-picker { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin: 0 0 18px; }
.vehicle-card { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 10px; min-width: 0; min-height: 148px; margin: 0; padding: 12px; border: 1px solid rgba(232,239,244,.14); border-radius: 18px; background: linear-gradient(135deg, rgba(9,29,48,.58), rgba(255,255,255,.06)); cursor: pointer; overflow: hidden; transition: border-color .2s ease, transform .2s ease, background .2s ease; }
.vehicle-card:hover, .vehicle-card:has(input:checked) { transform: translateY(-2px); border-color: rgba(227,200,129,.56); background: linear-gradient(135deg, rgba(227,200,129,.16), rgba(255,255,255,.08)); }
.vehicle-card input[type="radio"] { position: absolute !important; width: 1px !important; height: 1px !important; min-height: 0 !important; margin: 0 !important; padding: 0 !important; border: 0 !important; opacity: 0 !important; pointer-events: none !important; }
.vehicle-card img { display: block; width: 100%; height: 84px; max-width: 160px; object-fit: contain; object-position: center; filter: drop-shadow(0 12px 18px rgba(0,0,0,.32)); }
.vehicle-card span { display: block; width: 100%; color: var(--hero-ink); font-size: 12px; font-weight: 950; letter-spacing: .04em; line-height: 1.25; text-align: center; text-transform: uppercase; overflow-wrap: anywhere; }
.service-fields { margin: 0 0 18px; }
.service-panel { display: none; padding: 18px; border: 1px solid rgba(232,239,244,.14); border-radius: 18px; background: linear-gradient(135deg, rgba(9,29,48,.58), rgba(255,255,255,.06)); }
.service-panel.is-active { display: block; }
.service-panel > .eyebrow { margin-bottom: 10px; }

.multi-day-routes { margin: 18px 0; padding: 18px; border: 1px solid rgba(227,200,129,.24); border-radius: 18px; background: linear-gradient(135deg, rgba(9,29,48,.58), rgba(255,255,255,.06)); }
.multi-day-routes[hidden] { display: none; }
.multi-day-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 12px; }
.multi-day-header .eyebrow { margin-bottom: 6px; }
.multi-day-header h2 { margin: 0; color: var(--hero-ink); font-family: var(--font-display); font-size: 24px; line-height: 1.1; }
.multi-day-header button { min-height: 42px; padding: 0 16px; white-space: nowrap; }
.multi-day-list { display: grid; gap: 12px; }
.route-day { padding: 14px; border: 1px solid rgba(232,239,244,.14); background: rgba(8,10,12,.18); }
.route-day-title { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; color: var(--gold); font-size: 13px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.route-day-title button { min-height: 34px; padding: 0 12px; font-size: 10px; }
.route-day .day-distance { color: var(--hero-ink); font-weight: 900; text-align: right; }
.route-map { height: 260px; margin: 0 0 18px; overflow: hidden; border: 1px solid rgba(232,239,244,.16); border-radius: 18px; background: rgba(8,10,12,.24); }
.route-map .leaflet-control-attribution { font-size: 9px; }
.confirmation-panel { border: 1px solid rgba(227,200,129,.26); border-radius: 24px; background: linear-gradient(135deg, rgba(9,29,48,.82), rgba(17,47,73,.62)); backdrop-filter: blur(var(--glass-blur)) saturate(1.18); -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.18); padding: 26px; color: var(--hero-ink); }
.confirmation-panel[hidden] { display: none; }
.confirmation-panel h2 { margin: 0 0 18px; font-family: var(--font-display); font-size: clamp(30px, 4vw, 44px); line-height: 1.08; }
.confirmation-panel h2 span { color: var(--gold); white-space: nowrap; }
.confirmation-panel dl { display: grid; gap: 10px; margin: 0 0 8px; }
.confirmation-panel dl div { display: grid; grid-template-columns: 120px 1fr; gap: 14px; padding: 10px 0; border-top: 1px solid rgba(232,239,244,.14); }
.confirmation-panel dt { color: rgba(255,255,255,.62); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.confirmation-panel dd { margin: 0; color: var(--hero-ink); font-weight: 850; overflow-wrap: anywhere; }
.price-panel { position: sticky; top: 118px; border: 1px solid rgba(227,200,129,.2); border-radius: 24px; background: linear-gradient(135deg, rgba(7,26,43,.78), rgba(17,47,73,.58)); backdrop-filter: blur(var(--glass-blur)) saturate(1.18); -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.18); padding: 24px; color: var(--hero-ink); }
.price-value { margin: 6px 0 18px; color: var(--gold); font-family: var(--font-display); font-size: clamp(40px, 5vw, 58px); font-weight: 900; line-height: 1; }
.price-panel dl { display: grid; gap: 10px; margin: 0 0 18px; }
.price-panel dl div { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-top: 1px solid rgba(232,239,244,.14); }
.price-panel dt { color: rgba(255,255,255,.62); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.price-panel dd { margin: 0; color: var(--hero-ink); font-weight: 900; text-align: right; }
.day-summary { display: grid; gap: 8px; margin: -4px 0 18px; }
.day-summary div { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-top: 1px solid rgba(232,239,244,.1); color: rgba(255,255,255,.78); font-size: 12px; font-weight: 850; }
.day-summary strong { color: var(--gold); font-weight: 950; }
.price-panel p:not(.eyebrow) { margin: 0; color: var(--muted); line-height: 1.55; font-weight: 650; }
label { display: block; margin: 14px 0 7px; color: rgba(245,248,249,.98); font-weight: 920; text-shadow: 0 1px 9px rgba(0,0,0,.62); }
input, select, textarea { width: 100%; min-height: 46px; border: 1px solid var(--glass-border); border-radius: 0; background: rgba(8,10,12,.24); padding: 10px 12px; color: var(--ink); font: inherit; backdrop-filter: none; -webkit-backdrop-filter: none; }
textarea { min-height: 150px; resize: vertical; }
.gallery { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; padding: 14px; border: 1px solid var(--glass-border); background: linear-gradient(135deg, rgba(255,255,255,.13), rgba(18,58,90,.23)); backdrop-filter: none; -webkit-backdrop-filter: none; box-shadow: var(--shadow); }
.gallery img { width: 100%; aspect-ratio: 1.25 / 1; object-fit: cover; border-radius: 0; border: 1px solid rgba(218,231,235,.12); box-shadow: 0 14px 32px rgba(0,0,0,.16); }
.group-companies { margin: 18px 0 10px; }
.group-companies h2 { margin: 0 0 24px; max-width: 760px; font-size: clamp(30px, 4vw, 46px); line-height: 1.08; }
.product-spotlight { margin: 28px 0; border: 1px solid var(--glass-border); border-radius: 28px; background: linear-gradient(135deg, rgba(255,255,255,.24), rgba(255,255,255,.1)); backdrop-filter: blur(var(--glass-blur)) saturate(1.18); -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.18); box-shadow: var(--shadow); padding: clamp(26px, 4vw, 44px); }
.product-spotlight-header { display: flex; align-items: center; justify-content: space-between; gap: 22px; margin-bottom: 22px; }
.mybushub-logo { width: min(360px, 100%); height: auto; object-fit: contain; filter: drop-shadow(0 8px 20px rgba(255,255,255,.18)); }
.product-spotlight h2 { margin: 0; max-width: 820px; color: var(--hero-ink); font-family: var(--font-display); font-size: clamp(38px, 5vw, 62px); font-weight: 400; line-height: 1.06; text-shadow: none; }
.product-spotlight p { max-width: 900px; color: var(--muted); font-size: clamp(16px, 1.6vw, 19px); line-height: 1.7; font-weight: 650; text-shadow: none; }
.product-spotlight .legal-note { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(218,231,235,.12); font-size: 14px; font-weight: 780; }
.product-spotlight .mybushub-cta-top { flex-shrink: 0; white-space: nowrap; display: inline-flex; align-items: center; justify-content: center; gap: 10px; line-height: 1; padding: 0 22px; min-height: 52px; max-height: 52px; box-sizing: border-box; }
.mybushub-cta-logo { display: inline-block; height: clamp(18px, 2.4vw, 26px); width: auto; max-width: none; vertical-align: middle; object-fit: contain; flex-shrink: 0; filter: drop-shadow(0 2px 6px rgba(0,0,0,.35)); }
@media (max-width: 360px) {
  .product-spotlight .mybushub-cta-top { padding: 0 14px; gap: 6px; font-size: 13px; letter-spacing: .02em; }
  .mybushub-cta-logo { height: 16px; }
}
.office-editorial { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 18px; margin: 28px 0; align-items: stretch; }
.office-editorial img { display: block; width: 100%; height: 100%; min-height: 420px; aspect-ratio: 16 / 10; object-fit: cover; }
.office-editorial-copy { border: 1px solid var(--glass-border); border-radius: 24px; background: linear-gradient(135deg, rgba(255,255,255,.22), rgba(255,255,255,.1)); backdrop-filter: blur(var(--glass-blur)) saturate(1.18); -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.18); padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; justify-content: center; }
.office-editorial-copy h2 { margin: 0; color: var(--hero-ink); font-family: var(--font-display); font-size: clamp(34px, 4.6vw, 56px); font-weight: 400; line-height: 1.07; text-shadow: none; }
.office-editorial-copy p:not(.eyebrow) { margin: 22px 0 0; color: var(--muted); font-size: clamp(16px, 1.55vw, 18px); line-height: 1.72; font-weight: 650; }
.group-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.company-card { min-height: 100%; border: 1px solid var(--glass-border); border-radius: 22px; background: linear-gradient(135deg, rgba(255,255,255,.22), rgba(255,255,255,.1)); backdrop-filter: blur(var(--glass-blur)) saturate(1.18); -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.18); box-shadow: var(--shadow); padding: 18px; display: flex; flex-direction: column; justify-content: space-between; gap: 14px; }
.company-card a { display: flex; align-items: center; justify-content: center; gap: 0; width: 100%; min-height: 108px; border-radius: 0; transition: transform .2s ease, box-shadow .2s ease; }
.company-card a:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(0,0,0,.28); }
.company-card img { display: block; flex: 0 1 auto; width: auto; max-width: 94%; height: auto; margin: 0 auto; object-fit: contain; object-position: center; border-radius: 0; background: transparent; padding: 0; backdrop-filter: none; -webkit-backdrop-filter: none; border: 0; }
.company-card:nth-child(1) img { max-width: 112px; max-height: 102px; }
.company-card:nth-child(2) img { max-width: 220px; max-height: 78px; }
.company-card:nth-child(3) img { max-width: 158px; max-height: 86px; }
.company-card h3 { margin: 0 0 6px; color: var(--hero-ink); font-family: var(--font-display); font-size: clamp(19px, 1.75vw, 23px); font-weight: 400; line-height: 1.14; text-shadow: none; white-space: nowrap; text-align: center; }
.company-card p { margin: 0; color: var(--muted); font-weight: 760; line-height: 1.5; text-align: center; text-shadow: none; }
.partner-marquee { position: relative; margin: 40px calc(50% - 50vw) 20px; overflow: hidden; border-block: 1px solid rgba(232,239,244,.08); background: linear-gradient(90deg, rgba(7,24,39,.32), rgba(17,47,73,.18), rgba(7,24,39,.32)); padding: 28px 0; backdrop-filter: blur(10px) saturate(1.04); -webkit-backdrop-filter: blur(10px) saturate(1.04); }
.partner-marquee h2 { margin: 0 0 22px; color: var(--gold); font-family: var(--font-body); font-size: clamp(14px, 1.8vw, 20px); font-weight: 900; letter-spacing: .12em; line-height: 1.25; text-align: center; text-transform: uppercase; }
.partner-marquee::before, .partner-marquee::after { content: ""; position: absolute; top: 0; bottom: 0; z-index: 2; width: min(130px, 18vw); pointer-events: none; }
.partner-marquee::before { left: 0; background: linear-gradient(90deg, rgba(7,24,39,.55), transparent); }
.partner-marquee::after { right: 0; background: linear-gradient(270deg, rgba(7,24,39,.55), transparent); }
.partner-marquee-track { display: flex; width: max-content; align-items: center; gap: clamp(42px, 7vw, 90px); animation: partner-scroll 34s linear infinite; will-change: transform; }
.partner-marquee img { display: block; flex: 0 0 auto; width: auto; max-width: 210px; height: clamp(46px, 6vw, 72px); object-fit: contain; filter: drop-shadow(0 10px 18px rgba(0,0,0,.28)); }
.partner-marquee img[src*="skyexpress"], .partner-marquee img[src*="airchina"], .partner-marquee img[src*="educationfirst"] { height: clamp(58px, 7vw, 86px); }
@keyframes partner-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .partner-marquee-track { animation-duration: 90s; } }
.reviews-section { margin: 44px 0 18px; }
.reviews-section h2 { margin: 0 0 22px; max-width: 820px; color: var(--hero-ink); font-family: var(--font-display); font-size: clamp(34px, 4.6vw, 56px); font-weight: 400; line-height: 1.07; text-shadow: none; }
.reviews-section h2 span { display: block; margin-top: 10px; color: var(--muted); font-size: .48em; font-weight: 650; line-height: 1.35; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.review-card { min-height: 100%; border: 1px solid var(--glass-border); border-radius: 22px; background: linear-gradient(135deg, rgba(255,255,255,.22), rgba(255,255,255,.1)); backdrop-filter: blur(var(--glass-blur)) saturate(1.18); -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.18); padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.review-stars { color: var(--gold); font-size: 17px; letter-spacing: .12em; line-height: 1; }
.review-card p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.65; font-weight: 650; }
.review-card .review-translation { padding-top: 14px; border-top: 1px solid rgba(218,231,235,.12); color: rgba(255,255,255,.88); }
.review-card strong { margin-top: auto; color: var(--hero-ink); font-size: 13px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
:lang(el) .review-card p { font-size: clamp(14px, 1.35vw, 15.5px); line-height: 1.6; overflow-wrap: anywhere; }
:lang(el) .review-card strong { font-size: clamp(10px, 1.05vw, 12px); line-height: 1.45; overflow-wrap: anywhere; }
:lang(zh-Hans) .review-card p, :lang(zh) .review-card p { font-size: clamp(14px, 1.35vw, 15.5px); line-height: 1.72; overflow-wrap: anywhere; }
:lang(zh-Hans) .review-card strong, :lang(zh) .review-card strong { font-size: clamp(11px, 1.05vw, 12px); line-height: 1.5; letter-spacing: .04em; overflow-wrap: anywhere; }
.cta { margin: 48px 0 28px; border: 1px solid var(--glass-border); border-radius: 26px; background: linear-gradient(135deg, rgba(255,255,255,.22), rgba(255,255,255,.1)); backdrop-filter: blur(var(--glass-blur)) saturate(1.18); -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.18); padding: 30px; display: flex; align-items: center; justify-content: space-between; gap: 18px; box-shadow: var(--shadow); }
.cta h2 { color: var(--hero-ink); font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px); font-weight: 400; line-height: 1.08; text-shadow: none; }
.cta p { color: var(--muted); font-weight: 620; text-shadow: none; }
footer { margin-top: 54px; padding-top: 24px; border-top: 1px solid var(--glass-border); color: var(--muted); line-height: 1.6; font-weight: 560; text-shadow: none; }
.footer-links { display: inline-flex; flex-wrap: wrap; gap: 14px; margin-top: 10px; }
.footer-links a { color: var(--gold); font-weight: 900; text-decoration: none; }
.legal-hero { min-height: auto; padding-bottom: 48px; }
.legal-layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); gap: 18px; align-items: start; }
.legal-document, .legal-company { border: 1px solid var(--glass-border); border-radius: 24px; background: linear-gradient(135deg, rgba(255,255,255,.22), rgba(255,255,255,.1)); backdrop-filter: blur(var(--glass-blur)) saturate(1.18); -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.18); padding: clamp(24px, 4vw, 42px); }
.legal-document h2, .legal-company h2 { margin: 26px 0 10px; color: var(--hero-ink); font-family: var(--font-display); font-size: clamp(24px, 3vw, 34px); line-height: 1.08; }
.legal-document p, .legal-company dd { color: var(--muted); line-height: 1.7; font-weight: 640; }
.legal-company dl { display: grid; gap: 14px; margin: 0; }
.legal-company div { border-top: 1px solid rgba(218,231,235,.12); padding-top: 14px; }
.legal-company dt { color: var(--gold); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.legal-company dd { margin: 4px 0 0; }
.whatsapp { position: fixed; right: 24px; bottom: 24px; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: var(--green); box-shadow: 0 18px 40px rgba(37,211,102,.26); z-index: 30; }
.whatsapp img { width: 28px; height: 28px; }
.cookie-banner { position: fixed; top: 104px; right: 28px; z-index: 60; display: flex; align-items: center; justify-content: space-between; gap: 16px; width: min(520px, calc(100vw - 56px)); padding: 16px 16px 16px 18px; border: 1px solid rgba(232,239,244,.2); border-radius: 22px; background: linear-gradient(135deg, rgba(7,26,43,.54), rgba(17,47,73,.38)); color: var(--hero-ink); backdrop-filter: blur(28px) saturate(1.2); -webkit-backdrop-filter: blur(28px) saturate(1.2); box-shadow: 0 18px 46px rgba(0,0,0,.18); transition: opacity .22s ease, transform .22s ease; }
.cookie-banner.is-hidden { opacity: 0; transform: translateY(-8px) scale(.98); pointer-events: none; }
.cookie-banner strong { display: block; margin-bottom: 4px; color: var(--gold); font-size: 13px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.cookie-banner p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.45; font-weight: 650; }
.cookie-banner button { flex: 0 0 auto; min-height: 42px; padding: 0 18px; background: linear-gradient(135deg, rgba(227,200,129,.34), rgba(255,255,255,.1)); }
.logo-debug-panel { position: fixed; left: 18px; bottom: 18px; z-index: 80; width: min(320px, calc(100vw - 36px)); border: 1px solid var(--glass-border); border-radius: 8px; background: rgba(8, 9, 11, .82); backdrop-filter: blur(var(--glass-blur)); -webkit-backdrop-filter: blur(var(--glass-blur)); box-shadow: var(--shadow); padding: 14px; font-size: 12px; line-height: 1.45; }
.logo-debug-panel strong { display: block; margin-bottom: 8px; color: var(--ink); font-size: 13px; }
.logo-debug-panel ul { display: grid; gap: 6px; margin: 0; padding: 0; list-style: none; color: var(--muted); }
.logo-debug-panel li { display: flex; justify-content: space-between; gap: 12px; border-top: 1px solid var(--line); padding-top: 6px; }
.logo-debug-pass { color: #cfe8d4; font-weight: 900; }
.logo-debug-warn { color: #f0c46a; font-weight: 900; }
.logo-debug-fail { color: #ff9aa6; font-weight: 900; }
.logo-debug-on .brand img { outline: 2px solid rgba(207, 232, 212, .8); outline-offset: 4px; filter: contrast(1.06); }
@media (max-width: 900px) {
  .sidebar { top: 10px; width: calc(100vw - 16px); align-items: center; flex-direction: column; gap: 8px; padding: 9px; border-radius: 22px; }
  .brand { display: flex; justify-content: center; width: 100%; height: 48px; min-width: 0; }
  .brand::before { width: 34px; height: 44px; }
  .brand::after { flex: 0 1 196px; min-width: 142px; height: 36px; }
  .nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; gap: 6px; padding: 0; background: transparent; }
  .nav a { justify-content: center; min-height: 37px; padding: 0 10px; border-right: 0; font-size: 9.8px; letter-spacing: .065em; }
  .language-switcher { width: 100%; justify-content: center; }
  .bar-contact { display: none; }
  main { padding: 0 18px 28px; }
  .page-hero { min-height: auto; padding: 270px 0 54px; }
  .eyebrow { margin-bottom: 12px; font-size: 11px; letter-spacing: .08em; line-height: 1.35; }
  h1 { font-size: clamp(42px, 13vw, 58px); line-height: 1.08; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1 1 210px; }
  .grid.three, .grid.two, .gallery, .group-grid, .reviews-grid, .fleet-editorial, .office-editorial, .legal-layout, .booking-workspace { grid-template-columns: 1fr; }
  .vehicle-picker { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .vehicle-card { min-height: 132px; padding: 10px; }
  .vehicle-card img { height: 68px; max-width: 150px; }
  .booking-workspace { margin-top: -22px; }
  .price-panel { position: static; }
  .fleet-editorial { margin: -12px 0 24px; }
  .fleet-editorial img { min-height: 260px; }
  .office-editorial img { min-height: 260px; }
  .office-editorial-copy { padding: 26px; }
  .company-card a { min-height: 96px; height: 96px; }
  .company-card:nth-child(1) img { max-width: 100px; max-height: 86px; }
  .company-card:nth-child(2) img { max-width: 210px; max-height: 74px; }
  .company-card:nth-child(3) img { max-width: 150px; max-height: 82px; }
  .partner-marquee { margin-top: 24px; padding: 14px 0; }
  .partner-marquee-track { gap: 34px; animation-duration: 26s; }
  .partner-marquee img { max-width: 160px; height: 48px; }
  .partner-marquee img[src*="skyexpress"], .partner-marquee img[src*="airchina"], .partner-marquee img[src*="educationfirst"] { height: 58px; }
  .reviews-section { margin: 34px 0 16px; }
  .reviews-section h2 { font-size: clamp(30px, 9vw, 42px); margin-bottom: 18px; }
  .reviews-section h2 span { font-size: .5em; }
  .reviews-grid { gap: 14px; }
  .review-card { padding: 20px; border-radius: 18px; gap: 14px; }
  .review-card p { font-size: 15px; line-height: 1.58; }
  .review-card strong { font-size: 11px; line-height: 1.45; }
  :lang(el) .review-card p { font-size: clamp(13px, 3.65vw, 14.5px); line-height: 1.54; }
  :lang(el) .review-card strong { font-size: clamp(9.5px, 2.9vw, 10.5px); letter-spacing: .045em; }
  :lang(zh-Hans) .review-card p, :lang(zh) .review-card p { font-size: clamp(13px, 3.65vw, 14.5px); line-height: 1.68; }
  :lang(zh-Hans) .review-card strong, :lang(zh) .review-card strong { font-size: clamp(10px, 3vw, 11px); letter-spacing: .025em; }
  .cookie-banner { top: 312px; left: 14px; right: 14px; width: auto; padding: 15px; flex-direction: column; align-items: stretch; }
  .cookie-banner button { width: 100%; }
  .cta { align-items: flex-start; flex-direction: column; }
}

@media (min-width: 641px) and (max-width: 1100px) {
  .sidebar {
    top: 12px;
    width: calc(100vw - 28px);
    min-height: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    padding: 10px;
    border-radius: 22px;
    gap: 10px 12px;
    background: linear-gradient(135deg, rgba(7,26,43,.72), rgba(17,47,73,.46));
    border-color: rgba(232,239,244,.14);
  }
  .sidebar::before { opacity: .42; }
  .brand { width: clamp(178px, 22vw, 230px); height: 50px; flex: 0 0 auto; grid-column: 1; grid-row: 1; justify-content: flex-start; }
  .brand::before { width: 34px; height: 44px; }
  .brand::after { min-width: 128px; height: 34px; }
  .nav {
    display: flex;
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 6px;
    overflow-x: auto;
    padding: 4px;
    border-radius: 18px;
    background: rgba(255,255,255,.045);
    scrollbar-width: none;
  }
  .nav::-webkit-scrollbar { display: none; }
  .nav a { flex: 1 0 auto; min-height: 38px; padding: 0 11px; border-radius: 14px; font-size: 9.8px; letter-spacing: .065em; white-space: nowrap; }
  .language-switcher { width: auto; flex: 0 0 auto; grid-column: 2; grid-row: 1; justify-self: end; padding: 3px; gap: 1px; }
  .language-switcher a, .language-switcher button { width: 28px; min-height: 28px; font-size: 14px; }
  .bar-contact { display: none; }
  main { padding-top: 0; }
  .page-hero { padding-top: 190px; }
  .cookie-banner { top: 150px; right: 18px; left: auto; width: min(420px, calc(100vw - 36px)); }
}

@media (max-width: 359px) {
  .eyebrow { font-size: 10px; letter-spacing: .055em; line-height: 1.45; }
  h1 { font-size: clamp(36px, 12vw, 42px); line-height: 1.12; }
}

/* ============== Bulk upload section ============== */
.bulk-upload-section {
  margin: 32px 0;
  padding: 28px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  backdrop-filter: blur(var(--glass-blur)) saturate(1.12);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.12);
  color: var(--ink);
}
.bulk-header {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
  margin-bottom: 20px; flex-wrap: wrap;
}
.bulk-header h2 { margin: 4px 0 8px; font-size: clamp(20px, 3vw, 26px); color: var(--gold); font-family: var(--font-display); letter-spacing: .01em; }
.bulk-header .lead { margin: 0; color: var(--muted); font-size: 14px; max-width: 640px; }
.bulk-help-btn {
  background: transparent; border: 1px solid var(--glass-border-hover); color: var(--gold);
  border-radius: 999px; padding: 8px 16px; cursor: pointer; font-size: 13px; white-space: nowrap;
  transition: background .2s, color .2s;
}
.bulk-help-btn:hover { background: var(--gold-glow); }

.bulk-help-panel {
  background: rgba(7,26,43,.55); border-left: 3px solid var(--gold);
  padding: 18px 22px; border-radius: 12px; margin-bottom: 20px; color: var(--muted);
}
.bulk-help-panel h3 { margin: 0 0 12px; font-size: 16px; color: var(--gold); }
.bulk-help-panel ol { margin: 0; padding-left: 20px; }
.bulk-help-panel li { margin-bottom: 8px; font-size: 14px; line-height: 1.5; }
.bulk-help-tip { margin: 14px 0 0; font-size: 13px; color: var(--muted); opacity: .85; }

.bulk-dropzone {
  border: 2px dashed var(--glass-border-hover); border-radius: 14px;
  padding: 36px 20px; text-align: center; cursor: pointer;
  background: rgba(7,26,43,.35); transition: all .2s; color: var(--ink);
}
.bulk-dropzone:hover, .bulk-dropzone.is-dragover {
  border-color: var(--gold); background: var(--gold-glow);
}
.bulk-dropzone-inner { display: flex; flex-direction: column; gap: 6px; }
.bulk-dropzone-inner strong { font-size: 15px; color: var(--ink); }
.bulk-dropzone-inner span { font-size: 12px; color: var(--muted); opacity: .8; }

.bulk-preview { margin-top: 20px; }
.bulk-preview-header {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; margin-bottom: 12px;
}
.bulk-preview-header > span { font-weight: 600; font-size: 14px; color: var(--gold); }
.bulk-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.bulk-actions button {
  padding: 8px 14px; border-radius: 999px; border: 1px solid var(--glass-border-hover);
  background: transparent; color: var(--ink); cursor: pointer; font-size: 13px;
  transition: background .2s, color .2s;
}
.bulk-actions button:hover { background: var(--gold-glow); color: var(--gold); }
.bulk-actions .bulk-submit {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1a1208; border-color: var(--gold); font-weight: 700;
}
.bulk-actions .bulk-submit:hover { background: var(--gold); color: #1a1208; }

.bulk-table-wrap { overflow-x: auto; border: 1px solid var(--glass-border); border-radius: 12px; background: rgba(7,26,43,.4); }
.bulk-table { width: 100%; border-collapse: collapse; font-size: 12px; min-width: 900px; }
.bulk-table th, .bulk-table td {
  padding: 8px 10px; border-bottom: 1px solid var(--glass-border); text-align: left; vertical-align: middle; color: var(--ink);
}
.bulk-table th { background: rgba(7,26,43,.7); font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--gold); }
.bulk-table input[type="text"], .bulk-table input[type="email"], .bulk-table input[type="date"], .bulk-table input[type="number"], .bulk-table select {
  width: 100%; min-width: 80px; padding: 4px 6px; font-size: 12px;
  border: 1px solid var(--glass-border); border-radius: 6px;
  background: rgba(255,255,255,.06); color: var(--ink);
}
.bulk-table input:focus, .bulk-table select:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,.1); }
.bulk-table select option { background: #0b2238; color: var(--ink); }
.bulk-table .bulk-conf { font-weight: 700; color: var(--gold); text-align: center; }
.bulk-table input[type="checkbox"] { transform: scale(1.2); cursor: pointer; }

[data-kind="error"] { color: #ff8a7a; }
[data-kind="ok"] { color: var(--gold); }

/* Bulk preview: start/end & itinerary cells */
.bulk-table td.bulk-when { min-width: 180px; }
.bulk-table td.bulk-when input[type="text"] { margin-bottom: 4px; }
.bulk-when-row { display: flex; gap: 4px; }
.bulk-when-row input { flex: 1; min-width: 0; }

.bulk-table td.bulk-itin { min-width: 140px; }
.bulk-itin-empty {
  display: inline-block; padding: 2px 8px; border-radius: 999px;
  background: rgba(227,200,129,.12); color: var(--gold);
  font-size: 11px; text-transform: uppercase; letter-spacing: .04em;
}
.bulk-itin-toggle {
  background: transparent; border: 1px solid var(--glass-border-hover);
  color: var(--gold); border-radius: 999px; padding: 4px 10px;
  font-size: 11px; cursor: pointer;
}
.bulk-itin-toggle:hover { background: var(--gold-glow); }
.bulk-itin-list {
  margin: 6px 0 0; padding-left: 18px; font-size: 11px;
  color: var(--muted); line-height: 1.4;
}
.bulk-itin-list li { margin-bottom: 3px; }
.bulk-itin-list strong { color: var(--gold); font-weight: 600; }
@media (max-width: 720px) {
  .bulk-upload-section { padding: 18px; }
  .bulk-table { font-size: 11px; }
}
