:root {
  --bg: #f4fbff;
  --ink: #0d2a43;
  --muted: #516a81;
  --brand: #00a3c8;
  --brand-deep: #00739a;
  --accent: #ff8552;
  --accent-2: #ffd166;
  --line: #c6e2ed;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --radius: 20px;
  --shadow: 0 20px 45px rgba(8, 51, 80, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  scroll-behavior: smooth;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 14% 15%, rgba(255, 133, 82, 0.26), transparent 34%),
    radial-gradient(circle at 84% 20%, rgba(0, 163, 200, 0.22), transparent 39%),
    radial-gradient(circle at 70% 86%, rgba(255, 209, 102, 0.25), transparent 36%),
    linear-gradient(145deg, #e8f7ff 0%, #f6fcff 36%, #fff6e9 100%);
}

.page-bg::before,
.page-bg::after {
  content: "";
  position: absolute;
  width: 32vw;
  min-width: 220px;
  aspect-ratio: 1;
  border-radius: 44% 56% 66% 34% / 35% 47% 53% 65%;
  filter: blur(2px);
  opacity: 0.42;
  animation: floaty 11s ease-in-out infinite;
}

.page-bg::before {
  background: linear-gradient(140deg, rgba(0, 163, 200, 0.4), rgba(86, 214, 255, 0.22));
  top: -8%;
  left: -10%;
}

.page-bg::after {
  background: linear-gradient(140deg, rgba(255, 133, 82, 0.36), rgba(255, 209, 102, 0.2));
  bottom: -12%;
  right: -7%;
  animation-delay: -4.4s;
}

.container {
  width: min(1180px, calc(100vw - 34px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(243, 251, 255, 0.74);
  border-bottom: 1px solid rgba(0, 115, 154, 0.14);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 74px;
  height: 74px;
  padding: 5px;
  box-sizing: border-box;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #ffffff;
  border: 1px solid rgba(0, 115, 154, 0.2);
  box-shadow: 0 10px 20px rgba(0, 115, 154, 0.14);
  overflow: hidden;
}

.brand-logo-wordmark {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
  display: block;
}

.brand-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1px;
  padding-left: 11px;
}

.brand-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(0, 163, 200, 0.95), rgba(255, 133, 82, 0.95));
}

.brand-mark-svg {
  width: 30px;
  height: 30px;
}

.fallback-logo {
  display: none;
}

.brand-mark-svg circle,
.brand-mark-svg ellipse {
  fill: none;
  stroke: #ffffff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark-svg ellipse {
  fill: #ffffff;
  stroke: none;
}

.brand-top {
  margin: 0;
  font-size: clamp(16px, 1.85vw, 21px);
  font-weight: 800;
  color: #214866;
  letter-spacing: 0.3px;
  line-height: 1.05;
  width: 100%;
  text-align: left;
}

.brand-bottom {
  margin: 0;
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-size: clamp(13px, 1.35vw, 16px);
  letter-spacing: 0.35px;
  line-height: 1.08;
  font-weight: 700;
  color: #4f6f87;
  text-transform: none;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
  width: 100%;
  text-align: left;
}

#quick-main-row.single-col {
  grid-template-columns: 1fr;
}

.quick-hidden {
  display: none;
}

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(144, 193, 217, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 20px rgba(11, 82, 117, 0.09);
}

.nav-links a {
  text-decoration: none;
  color: #1a4666;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 14px;
  border-radius: 999px;
  padding: 7px 12px;
  transition: 0.22s ease;
}

.nav-links a:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  box-shadow: 0 8px 16px rgba(0, 115, 154, 0.2);
}

.nav-search {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(144, 193, 217, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 20px rgba(11, 82, 117, 0.09);
  padding: 4px 4px 4px 10px;
}

.nav-search:focus-within {
  border-color: rgba(0, 155, 197, 0.58);
  box-shadow: 0 10px 22px rgba(0, 123, 164, 0.18);
}

.nav-search input {
  width: 170px;
  border: none;
  outline: none;
  background: transparent;
  color: #1a4666;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
}

.nav-search-btn {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  display: grid;
  place-items: center;
  cursor: pointer;
}

.nav-search-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 8px 11px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.hero {
  padding-top: 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  align-items: stretch;
}

.hero-copy {
  border: 1px solid rgba(0, 115, 154, 0.15);
  border-radius: calc(var(--radius) + 2px);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 34px;
}

.eyebrow {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  letter-spacing: 1.8px;
  color: #327093;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  margin: 0;
  font-size: clamp(32px, 4vw, 56px);
}

.lead {
  margin: 16px 0 0;
  color: #325675;
  font-size: 16px;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 24px;
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  border-radius: 12px;
  padding: 12px 16px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #0a7ea8);
  box-shadow: 0 12px 20px rgba(0, 115, 154, 0.24);
}

.btn-ghost {
  color: #1e4c6f;
  border: 1px solid #a9d4e4;
  background: #fff;
}

.btn.wide {
  width: 100%;
}

.hero-metrics {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-metrics li {
  border: 1px solid #c8e4ef;
  border-radius: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.9);
}

.hero-metrics b {
  display: block;
  font-size: 18px;
  color: #0d4667;
}

.hero-metrics span {
  font-size: 12px;
  color: #5a758e;
}

.vibe-strip {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vibe-chip {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #1c5578;
  border: 1px solid #b7dbe9;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.95), rgba(222, 245, 252, 0.9));
}

.hero-card {
  border-radius: calc(var(--radius) + 2px);
  background:
    linear-gradient(170deg, #0f3554 0%, #0f5479 42%, #13688e 100%),
    radial-gradient(circle at 100% 0, rgba(255, 209, 102, 0.45), transparent 44%);
  color: #eff7ff;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -25% -24% -10%;
  height: 55%;
  background: radial-gradient(ellipse at center, rgba(255, 133, 82, 0.26), transparent 66%);
  pointer-events: none;
}

.card-title {
  margin: 0;
  color: #cae8fc;
  letter-spacing: 1.2px;
  font-size: 12px;
  text-transform: uppercase;
}

.hero-card h3 {
  margin: 10px 0 18px;
  font-size: 29px;
}

.route-row {
  padding: 11px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  position: relative;
  z-index: 1;
}

.route-row label {
  display: block;
  font-size: 12px;
  color: #cae8fc;
  margin-bottom: 3px;
}

.route-row p {
  margin: 0;
}

.quick-form {
  position: relative;
  z-index: 1;
}

.hero-card .form-row {
  margin-bottom: 10px;
}

.notice-widget {
  position: relative;
  z-index: 1;
}

.notice-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.notice-head span {
  font-size: 12px;
  color: #cde9fb;
  letter-spacing: 0.8px;
}

.notice-head a {
  font-size: 12px;
  color: #ffe0a6;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 224, 166, 0.9);
}

.notice-window {
  height: 188px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(196, 226, 248, 0.4);
  background: rgba(6, 41, 67, 0.52);
  padding: 10px 12px;
}

.notice-track {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.notice-track li {
  border-bottom: 1px dashed rgba(205, 233, 251, 0.22);
  padding-bottom: 7px;
  color: #eaf6ff;
  font-size: 13px;
  line-height: 1.55;
}

.notice-track li:last-child {
  border-bottom: none;
}

.notice-track b {
  color: #ffd48e;
  margin-right: 5px;
}

.hero-card label {
  color: #d2ebff;
}

.hero-card input,
.hero-card select {
  width: 100%;
  border: 1px solid rgba(193, 228, 255, 0.45);
  border-radius: 10px;
  padding: 10px 11px;
  font-size: 14px;
  color: #eef8ff;
  background: rgba(9, 45, 72, 0.45);
}

.hero-card input::placeholder {
  color: rgba(213, 233, 248, 0.7);
}

.hero-card input:focus,
.hero-card select:focus {
  outline: none;
  border-color: rgba(255, 209, 102, 0.86);
  box-shadow: 0 0 0 3px rgba(255, 209, 102, 0.22);
}

.quick-tip {
  margin: 9px 0 0;
  font-size: 12px;
  color: #c8e5fb;
}

.route-section {
  padding-top: 44px;
}

.route-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.route-showcase-card {
  border: 1px solid #bee0ec;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f6fcff 100%);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 12px 24px rgba(0, 115, 154, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.route-showcase-image {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #cae7f2;
  background: #edf7fc;
}

.route-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(0, 115, 154, 0.14);
}

.route-showcase-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.route-showcase-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 700;
  color: #0b4f72;
  background: #e7f6fd;
  border: 1px solid #c4e5f2;
}

.route-showcase-card h3 {
  margin: 0;
  font-size: 22px;
}

.route-showcase-card p {
  margin: 0;
  color: #486683;
  line-height: 1.7;
  flex: 1;
}

.route-detail-link {
  width: 100%;
  margin-top: 4px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 44px);
}

.section-head p {
  color: #375d7d;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.service-card {
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #bee0ec;
  background: #ffffff;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  top: -40px;
  right: -34px;
  background: radial-gradient(circle, rgba(255, 133, 82, 0.3), transparent 70%);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(0, 115, 154, 0.12);
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 23px;
}

.service-card p {
  margin: 0;
  color: #486683;
  line-height: 1.72;
}

.section-dark {
  background:
    linear-gradient(160deg, #0d3450 0%, #0e2238 100%),
    radial-gradient(circle at 80% -10%, rgba(255, 133, 82, 0.26), transparent 36%);
  color: #f3f8ff;
}

.section-dark .eyebrow,
.section-dark .section-head p {
  color: #c8def2;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.fleet-card {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  padding: 20px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at 100% 0, rgba(255, 209, 102, 0.22), transparent 44%);
  transition: transform 0.24s ease;
}

.fleet-card:hover {
  transform: translateY(-3px);
}

.fleet-badge {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #d7ecff;
}

.fleet-card h3 {
  margin: 14px 0 8px;
  font-size: 25px;
}

.fleet-photo {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-top: 12px;
  border: 1px solid rgba(211, 232, 248, 0.36);
}

.fleet-card p {
  margin: 0;
  color: #d8e8f6;
  line-height: 1.66;
}

.advantage-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.advantage-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.advantage-list li {
  border: 1px solid #c6e0ea;
  border-radius: 14px;
  background: #fff;
  padding: 14px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: center;
  color: #28445e;
  font-weight: 700;
}

.advantage-list span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(140deg, #e0f4fb, #fff0df);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: #1f5274;
}

.section-contrast {
  background:
    linear-gradient(150deg, #e8f8ff 0%, #fff6e9 100%);
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 14px;
  align-items: start;
}

.quote-form {
  border: 1px solid #bcdde9;
  border-radius: var(--radius);
  background: #fff;
  padding: 20px;
  box-shadow: 0 14px 30px rgba(10, 80, 120, 0.1);
}

.form-row {
  margin-bottom: 12px;
}

.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

label {
  display: block;
  font-size: 13px;
  color: #426381;
  margin-bottom: 6px;
}

input,
textarea {
  width: 100%;
  border: 1px solid #bfdfeb;
  border-radius: 10px;
  padding: 10px 11px;
  font-size: 14px;
  background: #fcfeff;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(0, 163, 200, 0.7);
  box-shadow: 0 0 0 3px rgba(0, 163, 200, 0.14);
}

.form-tip {
  margin: 10px 0 0;
  font-size: 12px;
  color: #55708a;
}

.footer {
  background:
    linear-gradient(165deg, #0b2b44 0%, #10263a 100%);
  color: #d9e7f6;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 300px;
  gap: 20px;
}

.footer h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
}

.footer p {
  margin: 0 0 8px;
  color: #c5d9ef;
}

.footer a {
  color: #fff;
}

.contact-qr-card {
  border: 1px solid rgba(206, 227, 245, 0.28);
  border-radius: 14px;
  padding: 6px;
  width: 150px;
  background: rgba(255, 255, 255, 0.04);
}

.contact-qr-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-qr-missing {
  display: none;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  border: 1px dashed rgba(192, 217, 236, 0.45);
  color: #bfd5ea;
  font-size: 12px;
  text-align: center;
  place-items: center;
  padding: 10px;
}

.contact-qr-card p {
  margin: 6px 0 0;
  font-size: 11px;
  color: #c8dbee;
}

.copyright {
  text-align: center;
  margin: 18px 0 0;
  color: #9db6d1;
  font-size: 13px;
}

.route-detail-main {
  padding-top: 30px;
}

.route-detail-hero {
  border: 1px solid #b9ddeb;
  border-radius: calc(var(--radius) + 2px);
  background:
    linear-gradient(170deg, #0f3554 0%, #0f5479 42%, #13688e 100%),
    radial-gradient(circle at 100% 0, rgba(255, 209, 102, 0.45), transparent 44%);
  color: #eff7ff;
  padding: 28px;
  box-shadow: var(--shadow);
}

.route-detail-hero h1 {
  margin: 6px 0 10px;
  font-size: clamp(28px, 3.4vw, 42px);
}

.route-detail-summary {
  margin: 0;
  color: #dceeff;
  line-height: 1.75;
}

.route-detail-tags {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.route-detail-tags span {
  border-radius: 999px;
  border: 1px solid rgba(210, 235, 255, 0.45);
  background: rgba(8, 44, 67, 0.42);
  color: #f3fbff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
}

.route-detail-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.route-detail-card {
  border: 1px solid #bee0ec;
  border-radius: 16px;
  background: #ffffff;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(0, 115, 154, 0.08);
}

.route-detail-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.detail-bullet-list {
  margin: 0;
  padding-left: 18px;
  color: #375d7d;
  line-height: 1.8;
}

.detail-bullet-list li + li {
  margin-top: 2px;
}

.route-itinerary-card {
  margin-top: 12px;
}

.route-detail-headline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.itinerary-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.itinerary-item {
  border: 1px solid #d4ebf4;
  border-radius: 12px;
  background: #f8fdff;
  padding: 11px 12px;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 10px;
  align-items: start;
}

.itinerary-time {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #e8f6fd;
  border: 1px solid #c7e6f4;
  color: #0f5b82;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 9px;
  justify-self: start;
}

.itinerary-desc {
  color: #355b78;
  line-height: 1.68;
}

.detail-note {
  margin: 12px 0 0;
  font-size: 12px;
  color: #5a7791;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(14px) rotate(4deg);
  }
}

@media (max-width: 980px) {
  .nav-wrap {
    min-height: 72px;
  }

  .hero-grid,
  .booking-grid,
  .service-grid,
  .fleet-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .route-showcase-grid {
    grid-template-columns: 1fr 1fr;
  }

  .route-detail-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .nav-links {
    position: absolute;
    right: 16px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: #fff;
    border: 1px solid #c5e1ec;
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 10px;
    width: min(230px, calc(100vw - 32px));
  }

  .nav-links.open {
    display: flex;
  }

  .nav-search {
    margin-left: auto;
    padding-left: 8px;
  }

  .nav-search input {
    width: 108px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .brand-mark {
    width: 64px;
    height: 64px;
    padding: 4px;
  }

  .brand-copy {
    padding-left: 9px;
  }

  .brand-top {
    font-size: 14px;
  }

  .brand-bottom {
    font-size: 12px;
    letter-spacing: 0.3px;
  }
}

@media (max-width: 680px) {
  .nav-wrap {
    min-height: 64px;
    gap: 8px;
  }

  .brand {
    gap: 8px;
  }

  .section {
    padding: 68px 0;
  }

  .hero-copy,
  .hero-card,
  .quote-form {
    padding: 18px;
  }

  .form-row.two {
    grid-template-columns: 1fr;
  }

  .route-showcase-grid {
    grid-template-columns: 1fr;
  }

  .itinerary-item {
    grid-template-columns: 1fr;
  }

  .route-showcase-image {
    height: 154px;
  }

  .fleet-photo {
    height: 154px;
  }

  .brand-mark {
    width: 54px;
    height: 54px;
    border-radius: 10px;
  }

  .brand-copy {
    padding-left: 7px;
  }

  .brand-copy::before {
    top: 3px;
    bottom: 3px;
    width: 1px;
  }

  .brand-top {
    font-size: 12px;
    letter-spacing: 0.1px;
  }

  .brand-bottom {
    font-size: 11px;
    letter-spacing: 0.2px;
  }

  .menu-toggle {
    padding: 7px 10px;
    font-size: 13px;
  }

  .nav-search {
    padding-left: 7px;
    gap: 4px;
  }

  .nav-search input {
    width: 84px;
    font-size: 12px;
  }

  .nav-search-btn {
    width: 26px;
    height: 26px;
  }

  .nav-auth-btn {
    padding: 7px 10px;
    font-size: 12px;
  }

  .auth-modal-panel {
    margin-top: 2vh;
    padding: 14px;
  }

  .account-modal-panel {
    margin-top: 2vh;
    padding: 14px;
  }

  .verify-row {
    grid-template-columns: 1fr;
  }

  .verify-row .btn {
    width: 100%;
  }

  .phone-input-row {
    grid-template-columns: 1fr;
  }

  #register-phone {
    width: 100%;
  }
}

.hidden {
  display: none !important;
}

.auth-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.nav-auth-btn {
  padding: 8px 12px;
  font-size: 13px;
}

.user-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 163, 200, 0.12);
  border: 1px solid rgba(0, 115, 154, 0.24);
  font-size: 12px;
  font-weight: 700;
  color: #0b4f72;
}

.user-menu-wrap {
  position: relative;
}

.user-menu-trigger {
  border: 1px solid rgba(0, 115, 154, 0.24);
  border-radius: 999px;
  background: rgba(0, 163, 200, 0.12);
  color: #0b4f72;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.user-menu-caret {
  font-size: 10px;
  opacity: 0.8;
}

.user-menu-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 176px;
  border: 1px solid #c7e1ec;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 26px rgba(8, 48, 75, 0.22);
  padding: 8px;
  display: grid;
  gap: 6px;
  z-index: 110;
}

.user-menu-item {
  border: 1px solid #d2e6ef;
  border-radius: 10px;
  background: #f6fcff;
  color: #1f5375;
  padding: 8px 10px;
  text-align: left;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.user-menu-item:hover {
  border-color: #a8d3e6;
  background: #ebf8ff;
}

.marketplace-section {
  padding-top: 36px;
}

.market-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.market-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  border: 1px solid #bddfec;
  background: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #27516f;
  cursor: pointer;
}

.chip.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #0082ab, #00a7cc);
}

.market-hint {
  font-size: 12px;
  color: #55708a;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.market-more-wrap {
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

.market-empty-card {
  grid-column: 1 / -1;
  border: 1px dashed #bfdde9;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
  padding: 36px 20px;
  text-align: center;
}

.market-empty-card h3 {
  margin: 0 0 8px;
  font-size: 26px;
}

.market-empty-card p {
  margin: 0;
  color: #5a758e;
  font-size: 15px;
}

.market-card {
  border: 1px solid #c5e4ef;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(10, 80, 120, 0.09);
  display: flex;
  flex-direction: column;
}

.market-card.market-card-focus {
  border-color: #27a8d8;
  box-shadow: 0 0 0 3px rgba(39, 168, 216, 0.2), 0 16px 28px rgba(11, 87, 128, 0.2);
}

.market-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.market-card-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.market-card h3 {
  margin: 0;
  font-size: 22px;
}

.market-sub {
  margin: 0;
  font-size: 13px;
  color: #245271;
  font-weight: 700;
}

.market-detail {
  margin: 0;
  color: #4b6882;
  line-height: 1.65;
}

.market-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.market-badges span {
  border-radius: 999px;
  padding: 5px 9px;
  border: 1px solid #cbe8f3;
  background: #edf8fd;
  color: #0f577f;
  font-size: 11px;
  font-weight: 700;
}

.market-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.market-price b {
  font-size: 24px;
  color: #d04622;
}

.market-price s {
  color: #8098ad;
  font-size: 13px;
}

.market-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 85;
}

.auth-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 22, 36, 0.58);
}

.auth-modal-panel {
  position: relative;
  width: min(35vw, 470px);
  max-width: calc(100vw - 24px);
  margin: 5vh auto 0;
  border-radius: 18px;
  border: 1px solid #bcdbea;
  background: #fff;
  box-shadow: 0 30px 60px rgba(7, 33, 53, 0.35);
  padding: 20px;
  max-height: 90vh;
  overflow-y: auto;
}

.auth-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
}

.auth-card {
  border: 1px solid #c6e2ed;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 26px rgba(10, 80, 120, 0.09);
  padding: 20px;
}

.auth-switch {
  display: inline-flex;
  gap: 6px;
  margin-bottom: 14px;
  padding: 4px;
  border-radius: 999px;
  background: #eef7fb;
}

.auth-tab {
  border: none;
  padding: 8px 16px;
  border-radius: 999px;
  background: transparent;
  font-weight: 700;
  color: #4e6c86;
  cursor: pointer;
}

.auth-tab.active {
  color: #fff;
  background: linear-gradient(135deg, #0082ab, #00a7cc);
}

.auth-form h3 {
  margin: 0 0 6px;
}

.verify-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
}

.phone-input-row {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 8px;
  align-items: center;
}

.phone-input-row select {
  width: 100%;
  border: 1px solid #bfdfeb;
  border-radius: 10px;
  padding: 10px 11px;
  font-size: 14px;
  background: #fcfeff;
}

#register-phone {
  width: min(240px, 100%);
}

.verify-row .btn {
  min-width: 118px;
}

.auth-sub {
  margin: 0 0 10px;
  color: #59748d;
  font-size: 13px;
}

.account-center {
  padding-top: 14px;
}

.account-modal {
  position: fixed;
  inset: 0;
  z-index: 82;
}

.account-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 22, 36, 0.54);
}

.account-modal-panel {
  position: relative;
  width: min(1080px, calc(100vw - 24px));
  margin: 4vh auto 0;
  border-radius: 18px;
  border: 1px solid #bcdbea;
  background: #fff;
  box-shadow: 0 30px 60px rgba(7, 33, 53, 0.35);
  padding: 20px;
  max-height: 90vh;
  overflow-y: auto;
}

.account-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 12px;
}

.account-menu {
  border: 1px solid #c9e3ed;
  border-radius: 14px;
  padding: 10px;
  background: #fff;
  display: grid;
  gap: 8px;
  align-content: start;
}

.account-menu-btn {
  border: 1px solid #c2deea;
  border-radius: 10px;
  background: #f6fcff;
  color: #285375;
  font-weight: 700;
  padding: 10px 12px;
  text-align: left;
  cursor: pointer;
}

.account-menu-btn.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #0082ab, #00a7cc);
}

.account-content {
  border: 1px solid #c9e3ed;
  border-radius: 14px;
  background: #fff;
  min-height: 220px;
  padding: 14px;
}

.account-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.account-card {
  border: 1px solid #cee7f1;
  border-radius: 12px;
  padding: 12px;
  background: #f8fdff;
}

.account-card p {
  margin: 0;
  font-size: 12px;
  color: #4f6f88;
}

.account-card h3 {
  margin: 6px 0;
}

.account-card span {
  font-size: 12px;
  color: #658199;
}

.account-summary-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.account-summary-card {
  border: 1px solid #d2e9f2;
  border-radius: 12px;
  background: #fcfeff;
  padding: 12px;
}

.account-summary-card h4 {
  margin: 0 0 8px;
}

.account-summary-card p {
  margin: 0 0 6px;
  color: #496885;
}

.table-wrap {
  overflow-x: auto;
}

.admin-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 10px;
}

.admin-metric-card {
  border: 1px solid #cfe7f1;
  border-radius: 12px;
  background: #f9fdff;
  padding: 12px;
}

.admin-metric-card p {
  margin: 0;
  font-size: 12px;
  color: #5a7690;
}

.admin-metric-card h3 {
  margin: 8px 0 6px;
  color: #11496d;
}

.admin-metric-card span {
  font-size: 12px;
  color: #66839a;
}

.admin-chart-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.admin-chart-card {
  border: 1px solid #d2e8f2;
  border-radius: 12px;
  background: #fcfeff;
  padding: 12px;
}

.admin-chart-card h4 {
  margin: 0 0 8px;
}

.mini-bars {
  display: grid;
  gap: 7px;
}

.mini-bar-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 8px;
}

.mini-bar-row span {
  font-size: 11px;
  color: #627f97;
}

.mini-bar-row b {
  font-size: 12px;
  color: #1c4f70;
}

.mini-bar-track {
  position: relative;
  height: 10px;
  border-radius: 999px;
  background: #e9f4fa;
  overflow: hidden;
}

.mini-bar-track i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #2f86c4, #49a3e4);
}

.mini-bar-track.amount i {
  background: linear-gradient(90deg, #08a590, #12c3a9);
}

.product-city-summary {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.product-city-summary span {
  border: 1px solid #cfe7f1;
  border-radius: 999px;
  background: #f5fbff;
  color: #346183;
  padding: 4px 10px;
  font-size: 12px;
}

.product-manage-form {
  border: 1px solid #d2e8f2;
  border-radius: 12px;
  background: #fcfeff;
  padding: 12px;
  margin-bottom: 10px;
}

.product-manage-form h4 {
  margin: 0 0 8px;
}

.product-manage-scope-tip {
  margin: -2px 0 10px;
  font-size: 12px;
  color: #4f6f88;
}

.product-manage-schedule-note {
  margin: 8px 0 0;
  font-size: 12px;
  color: #607f96;
}

.product-manage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 10px;
}

.product-manage-grid .full {
  grid-column: 1 / -1;
}

.product-manage-grid label {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
  color: #4b6c86;
}

.product-manage-grid input,
.product-manage-grid select,
.product-manage-grid textarea {
  width: 100%;
  border: 1px solid #c6e0ed;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 13px;
  color: #1f4f70;
  background: #fff;
}

.route-image-tip {
  margin: 6px 0 8px;
  font-size: 12px;
  color: #5b7891;
}

.route-image-preview-wrap {
  border: 1px dashed #c8dce8;
  border-radius: 10px;
  background: #ffffff;
  min-height: 92px;
  padding: 8px;
  display: grid;
  align-items: center;
}

.route-image-preview {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #d3e5ef;
}

.route-image-empty {
  margin: 0;
  font-size: 12px;
  color: #728ca2;
}

.product-manage-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 10px;
}

.product-manage-toolbar {
  display: flex;
  justify-content: flex-end;
  margin: 10px 0;
}

.product-schedule-editor {
  display: grid;
  gap: 8px;
}

.schedule-empty {
  border: 1px dashed #cde3ed;
  border-radius: 10px;
  padding: 9px 10px;
  font-size: 12px;
  color: #607f96;
  background: #f9fdff;
}

.product-schedule-row {
  border: 1px solid #d2e7f1;
  border-radius: 12px;
  background: #fff;
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  align-items: end;
}

.product-schedule-row.is-closed {
  background: #f7fafc;
}

.schedule-field {
  display: grid;
  gap: 5px;
}

.schedule-field label {
  font-size: 11px;
  color: #5c7a91;
}

.schedule-field input,
.schedule-field select {
  width: 100%;
  border: 1px solid #c7e1ec;
  border-radius: 10px;
  padding: 7px 8px;
  font-size: 12px;
  color: #1f4f70;
  background: #fff;
}

.schedule-field input:disabled {
  background: #f2f6f9;
  color: #91a4b4;
}

.schedule-action {
  min-width: 84px;
}

.product-schedule-actions {
  margin-top: 8px;
  display: flex;
  justify-content: flex-end;
}

.traffic-table-wrap {
  margin-top: 6px;
}

.traffic-table {
  min-width: 420px;
}

.traffic-table th:nth-child(1),
.traffic-table td:nth-child(1) {
  width: 90px;
}

.order-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.order-table th,
.order-table td {
  border-bottom: 1px solid #d8ebf3;
  padding: 10px;
  font-size: 13px;
  text-align: left;
}

.status-tag {
  display: inline-flex;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid #cce4ef;
}

.status-tag.pending_payment {
  color: #995b04;
  background: #fff8e8;
}

.status-tag.pending_verify {
  color: #6f560e;
  background: #fff4db;
}

.status-tag.paid {
  color: #0f5b82;
  background: #eaf7ff;
}

.status-tag.pending_review {
  color: #7a4e08;
  background: #fff4dd;
}

.status-tag.reviewed {
  color: #1e7a47;
  background: #ecfbf2;
}

.order-contact-cell {
  display: grid;
  gap: 2px;
}

.order-contact-cell span {
  font-size: 12px;
  color: #4b6b85;
  line-height: 1.3;
}

.orders-shell {
  display: grid;
  gap: 10px;
}

.orders-summary {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.orders-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid #cae3ef;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #f1f9ff 100%);
  color: #275877;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
}

.order-table-enhanced thead th {
  background: #f3faff;
  color: #1f4f70;
  font-weight: 700;
  white-space: nowrap;
}

.order-table-enhanced tbody tr {
  transition: background-color 0.18s ease;
}

.order-table-enhanced tbody tr:hover {
  background: #f8fcff;
}

.detail-phone-btn {
  border: 1px solid #b8ddee;
  border-radius: 999px;
  background: #eef9ff;
  color: #12608a;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 6px 10px;
  cursor: pointer;
}

.detail-phone-btn:hover {
  border-color: #8fc8e4;
  background: #dff2ff;
}

.btn.tiny {
  padding: 6px 10px;
  font-size: 12px;
}

.history-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.history-card {
  border: 1px solid #d2e8f2;
  border-radius: 12px;
  background: #fcfeff;
  padding: 10px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
  align-items: center;
}

.history-card img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
}

.history-card h4 {
  margin: 0 0 6px;
}

.history-card p {
  margin: 0 0 6px;
  color: #496a85;
}

.history-card span {
  font-size: 12px;
  color: #67859b;
}

.empty-panel {
  border: 1px dashed #c9e2ed;
  border-radius: 12px;
  background: #f9fdff;
  color: #56748e;
  padding: 18px;
  text-align: center;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
}

.confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 95;
}

.payment-modal {
  position: fixed;
  inset: 0;
  z-index: 94;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 22, 36, 0.55);
}

.confirm-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 24, 40, 0.58);
  backdrop-filter: blur(3px);
}

.payment-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 24, 40, 0.58);
  backdrop-filter: blur(2px);
}

.product-modal-panel {
  position: relative;
  width: min(760px, calc(100vw - 24px));
  margin: 6vh auto 0;
  border-radius: 18px;
  border: 1px solid #bcdbea;
  background: #fff;
  box-shadow: 0 30px 60px rgba(7, 33, 53, 0.35);
  padding: 20px;
  max-height: 88vh;
  overflow: auto;
}

.payment-modal-panel {
  position: relative;
  width: min(860px, calc(100vw - 24px));
  margin: 6vh auto 0;
  border-radius: 18px;
  border: 1px solid #bcdbea;
  background: #fff;
  box-shadow: 0 30px 60px rgba(7, 33, 53, 0.35);
  padding: 18px;
  max-height: 88vh;
  overflow: auto;
}

.payment-shell {
  display: grid;
  gap: 14px;
}

.payment-head h3 {
  margin: 0;
  color: #124d70;
}

.payment-head p {
  margin: 6px 0 0;
  color: #52718a;
  font-size: 13px;
}

.payment-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 10px;
}

.payment-summary article {
  border: 1px solid #d1e7f2;
  border-radius: 12px;
  background: linear-gradient(180deg, #f8fcff 0%, #f3faff 100%);
  padding: 10px 12px;
  display: grid;
  gap: 5px;
}

.payment-summary span {
  font-size: 12px;
  color: #628099;
}

.payment-summary b {
  font-size: 14px;
  color: #184f71;
}

.payment-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.payment-coupon-card {
  border-color: #c9e2ef;
}

.payment-coupon-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #cfe4ef;
  border-radius: 999px;
  background: #fff;
  padding: 6px 12px;
  color: #225370;
  font-size: 12px;
  width: fit-content;
}

.payment-coupon-check input {
  margin: 0;
  width: 16px;
  height: 16px;
  accent-color: #12a0d6;
}

.payment-coupon-check em {
  font-style: normal;
}

.payment-payable-card {
  border-color: #9fd4ec !important;
  background: linear-gradient(180deg, #ecf8ff 0%, #e6f5ff 100%) !important;
}

.payment-payable-card b {
  color: #005d88;
  font-size: 18px;
}

.payment-panels {
  border: 1px solid #cfe4ef;
  border-radius: 14px;
  background: #f7fcff;
  padding: 12px;
}

.payment-panel p {
  margin: 10px 0 0;
  font-size: 12px;
  color: #58788f;
}

.payment-qr-wrap {
  border: 1px dashed #bfdceb;
  border-radius: 12px;
  background: #fff;
  min-height: 280px;
  display: grid;
  place-items: center;
  padding: 10px;
}

.payment-qr-wrap img {
  width: 260px;
  height: 260px;
  max-width: 100%;
  object-fit: contain;
}

.bank-pay-block {
  border: 1px solid #d1e7f2;
  border-radius: 12px;
  background: #fff;
  padding: 10px;
  display: grid;
  gap: 8px;
}

.bank-pay-block h4 {
  margin: 0 0 2px;
  color: #1f4f70;
  font-size: 14px;
}

.bank-pay-row {
  border: 1px solid #d9eaf3;
  border-radius: 10px;
  background: #f9fdff;
  padding: 8px 10px;
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 8px;
}

.bank-pay-row label {
  color: #5f7c93;
  font-size: 12px;
}

.bank-pay-row b {
  color: #1b4f70;
  font-size: 13px;
  word-break: break-all;
}

.payment-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.schedule-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
}

.route-edit-modal {
  position: fixed;
  inset: 0;
  z-index: 92;
}

.route-edit-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 24, 40, 0.58);
  backdrop-filter: blur(2px);
}

.route-edit-modal-panel {
  position: relative;
  width: min(860px, calc(100vw - 24px));
  margin: 8vh auto 0;
  border-radius: 18px;
  border: 1px solid #b7d8e9;
  background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
  box-shadow: 0 28px 55px rgba(10, 34, 52, 0.35);
  padding: 18px;
  max-height: 86vh;
  overflow: auto;
}

.route-edit-form {
  margin-bottom: 0;
}

.schedule-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 24, 40, 0.58);
  backdrop-filter: blur(2px);
}

.schedule-modal-panel {
  position: relative;
  width: min(1120px, calc(100vw - 24px));
  margin: 5vh auto 0;
  border-radius: 18px;
  border: 1px solid #b7d8e9;
  background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
  box-shadow: 0 28px 55px rgba(10, 34, 52, 0.35);
  padding: 18px;
  max-height: 90vh;
  overflow: auto;
}

.schedule-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-right: 42px;
  margin-bottom: 10px;
}

.schedule-modal-head h3 {
  margin: 0;
  color: #11496d;
}

.schedule-month-wrap {
  display: inline-grid;
  gap: 4px;
}

.schedule-month-wrap label {
  font-size: 12px;
  color: #5a7892;
}

.schedule-month-wrap input {
  border: 1px solid #c7dfeb;
  border-radius: 10px;
  padding: 8px 10px;
  color: #1f4f70;
  background: #fff;
}

.schedule-modal-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 12px;
}

.schedule-calendar-pane,
.schedule-card {
  border: 1px solid #cce2ee;
  border-radius: 14px;
  background: #fff;
}

.schedule-calendar-pane {
  padding: 12px;
}

.schedule-week-header {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 6px;
}

.schedule-week-header span {
  text-align: center;
  font-size: 12px;
  color: #5e7b94;
  font-weight: 700;
}

.schedule-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.schedule-day-cell {
  border: 1px solid #d4e7f1;
  border-radius: 10px;
  background: #fff;
  min-height: 64px;
  padding: 6px 4px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 4px;
  cursor: pointer;
}

.schedule-day-cell b {
  font-size: 13px;
  color: #1d4c6c;
}

.schedule-day-cell small {
  min-height: 16px;
  font-size: 10px;
  color: #5f8098;
}

.schedule-day-cell.selected {
  border-color: #2f8bc8;
  box-shadow: inset 0 0 0 1px #2f8bc8;
  background: #edf8ff;
}

.schedule-day-cell.closed {
  background: #fff1f1;
  border-color: #f2c5c5;
}

.schedule-day-cell.closed small {
  color: #b05050;
}

.schedule-day-cell.custom small {
  color: #0b7b67;
}

.schedule-day-cell.empty {
  min-height: 64px;
  background: transparent;
  border: 1px dashed #e4eef4;
  cursor: default;
}

.schedule-editor-pane {
  display: grid;
  gap: 10px;
}

.schedule-card {
  padding: 12px;
}

.schedule-card h4 {
  margin: 0 0 10px;
  color: #184d72;
}

.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 10px;
}

.schedule-card-actions {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.icon-close {
  position: absolute;
  right: 10px;
  top: 8px;
  border: none;
  border-radius: 10px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  background: #eef6fb;
  color: #2f5573;
  font-size: 24px;
  line-height: 1;
}

.confirm-modal-panel {
  position: relative;
  width: min(480px, calc(100vw - 28px));
  margin: 16vh auto 0;
  border-radius: 18px;
  border: 1px solid #b7d8e9;
  background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
  box-shadow: 0 28px 55px rgba(10, 34, 52, 0.35);
  padding: 22px 20px 18px;
}

.confirm-modal-panel h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: #0d3f63;
  letter-spacing: 0.4px;
}

.confirm-modal-message {
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d6eaf4;
  background: #ffffff;
}

.confirm-modal-message span {
  display: block;
  font-size: 14px;
  color: #2d5876;
  line-height: 1.6;
}

.confirm-modal-message span + span {
  margin-top: 2px;
}

.confirm-modal-actions {
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.product-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}

.product-modal-grid img {
  width: 100%;
  border-radius: 12px;
  height: 280px;
  object-fit: cover;
  border: 1px solid #cde4ef;
}

.modal-sub {
  margin: 0;
  color: #54748d;
}

.product-base-price {
  margin: 10px 0 14px;
  color: #466a86;
}

.product-base-price b {
  font-size: 20px;
  color: #0d4369;
}

.product-itinerary-card,
.product-order-card {
  margin-top: 12px;
  border: 1px solid #c9e3ed;
  border-radius: 14px;
  background: #f8fdff;
  padding: 12px;
}

.product-order-card {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

.product-itinerary-card h4,
.product-order-card h4 {
  margin: 0 0 10px;
  color: #1f4f70;
}

.product-itinerary-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.product-itinerary-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid #d8ebf3;
  border-radius: 10px;
  background: #fff;
}

.product-itinerary-time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid #cae5f0;
  background: #edf8ff;
  color: #266081;
  font-size: 12px;
  font-weight: 700;
  min-height: 28px;
}

.product-itinerary-content p {
  margin: 0 0 4px;
  font-size: 14px;
  color: #1f4d6d;
}

.product-itinerary-content small {
  color: #64829a;
  font-size: 12px;
}

.product-order-head {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 12px;
  align-items: start;
}

.product-order-head img {
  width: 100%;
  border-radius: 12px;
  height: 160px;
  object-fit: cover;
  border: 1px solid #cde4ef;
}

.product-vehicle-list {
  display: grid;
  gap: 8px;
}

.product-order-date {
  margin-bottom: 10px;
}

.product-order-date label {
  display: block;
  margin-bottom: 6px;
  color: #2c5a79;
  font-size: 13px;
  font-weight: 700;
}

.product-order-date input {
  width: min(320px, 100%);
  border: 1px solid #c7e0ec;
  border-radius: 10px;
  padding: 9px 10px;
  font-size: 13px;
  color: #1f4f70;
  background: #fff;
}

.product-order-date-tip {
  margin: -2px 0 10px;
  color: #50718a;
  font-size: 12px;
}

.product-contact-grid {
  margin-bottom: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 10px;
}

.product-contact-field label {
  display: block;
  margin-bottom: 6px;
  color: #2c5a79;
  font-size: 12px;
  font-weight: 700;
}

.product-contact-field input {
  width: 100%;
  border: 1px solid #c7e0ec;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 13px;
  color: #1f4f70;
  background: #fff;
}

.product-vehicle-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  border: 1px solid #cde5f0;
  border-radius: 12px;
  background: #fff;
  padding: 9px 10px;
}

.product-vehicle-option.disabled {
  background: #f4f7fa;
  border-color: #d9e7ee;
  opacity: 0.86;
}

.product-vehicle-option input {
  width: 16px;
  height: 16px;
}

.product-vehicle-option .vehicle-copy {
  display: grid;
  gap: 2px;
}

.product-vehicle-option .vehicle-name {
  color: #1e4f70;
  font-size: 13px;
  font-weight: 600;
}

.product-vehicle-option .vehicle-tip {
  color: #67859b;
  font-size: 11px;
  line-height: 1.2;
}

.product-vehicle-option .vehicle-price {
  color: #0c3f64;
  font-size: 14px;
  font-weight: 800;
}

.product-order-actions {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.btn[disabled],
.btn.disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.site-toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(14px);
  background: #16314a;
  color: #fff;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
  z-index: 120;
}

.site-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.site-toast.success {
  background: #11673f;
}

.site-toast.warn {
  background: #8b5300;
}

body.modal-open {
  overflow: hidden;
}

.service-chat {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 95;
}

.chat-toggle {
  border: none;
  border-radius: 999px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #0082ab, #00a7cc);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 22px rgba(2, 98, 130, 0.34);
}

.chat-panel {
  width: min(340px, calc(100vw - 26px));
  height: 460px;
  border-radius: 16px;
  border: 1px solid #c6e2ed;
  background: #fff;
  box-shadow: 0 22px 42px rgba(6, 37, 60, 0.28);
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  overflow: hidden;
  margin-bottom: 10px;
}

.chat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 12px;
  border-bottom: 1px solid #d7eaf3;
  background: #f3fbff;
}

.chat-head h4 {
  margin: 0;
  font-size: 15px;
}

.chat-close {
  border: 1px solid #bfdcea;
  border-radius: 10px;
  width: 30px;
  height: 30px;
  background: #fff;
  color: #335f7d;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.chat-messages {
  padding: 10px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #f9fdff;
}

.chat-msg {
  max-width: 86%;
  border-radius: 12px;
  padding: 8px 10px;
  font-size: 13px;
  line-height: 1.45;
}

.chat-msg.bot {
  align-self: flex-start;
  background: #e9f7ff;
  border: 1px solid #cde8f4;
  color: #154f71;
}

.chat-msg.user {
  align-self: flex-end;
  background: #0f6f97;
  color: #fff;
}

.chat-quick {
  padding: 8px 10px;
  border-top: 1px solid #d8ebf3;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.chat-chip {
  border: 1px solid #b8dced;
  border-radius: 999px;
  background: #fff;
  color: #2a5d7f;
  font-size: 12px;
  padding: 6px 10px;
  cursor: pointer;
}

.chat-form {
  border-top: 1px solid #d8ebf3;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 10px;
}

.chat-form input {
  border: 1px solid #c2deea;
  border-radius: 10px;
  padding: 10px;
  font-size: 13px;
}

.chat-form .btn {
  padding: 10px 12px;
}

.qna-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  align-items: start;
}

#faq .eyebrow {
  font-size: 11px;
  letter-spacing: 1.3px;
}

#faq .section-head h2 {
  font-size: clamp(23px, 2.7vw, 30px);
  margin-bottom: 6px;
}

#faq .section-head p {
  max-width: 620px;
  font-size: 13px;
  color: #5b7892;
}

.qna-main {
  display: grid;
  gap: 10px;
}

.qna-side {
  display: grid;
  gap: 10px;
}

.qna-forum-toolbar {
  border: 1px solid #c9e3ed;
  border-radius: 14px;
  background: #ffffff;
  padding: 8px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.qna-sort-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.qna-search {
  min-width: 220px;
  border: 1px solid #c2deea;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 12px;
}

.qna-ask-card,
.qna-item {
  border: 1px solid #c9e3ed;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(10, 80, 120, 0.08);
  padding: 13px;
}

.qna-ask-card h3 {
  margin: 0 0 10px;
}

.qna-list {
  display: grid;
  gap: 8px;
}

.qna-pagination {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.qna-answer-pagination {
  justify-content: flex-start;
  margin-top: 6px;
}

.qna-page-info {
  font-size: 11px;
  color: #617f98;
}

.qna-page-btn {
  border: 1px solid #cae5f0;
  border-radius: 999px;
  background: #fff;
  color: #265676;
  padding: 4px 10px;
  font-size: 11px;
  cursor: pointer;
}

.qna-page-btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

.qna-item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.qna-item h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
}

.qna-meta {
  margin: 6px 0 8px;
  font-size: 11px;
  color: #5a7690;
}

.qna-stats {
  margin: 0 0 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.qna-stats span {
  border-radius: 999px;
  border: 1px solid #cae6f1;
  background: #f1faff;
  color: #2f617f;
  padding: 3px 7px;
  font-size: 11px;
}

.qna-answer-list {
  display: grid;
  gap: 6px;
}

.qna-answer-item {
  border: 1px solid #d4e9f2;
  border-radius: 12px;
  background: #f8fdff;
  padding: 8px 10px;
}

.qna-answer-item p {
  margin: 0 0 4px;
  font-size: 12px;
  line-height: 1.45;
  color: #2c5673;
}

.qna-answer-item span {
  font-size: 10.5px;
  color: #68869d;
}

.qna-reply-row {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.qna-reply-row input {
  border: 1px solid #c2deea;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 12px;
}

.qna-hot-card {
  border: 1px solid #c9e3ed;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(10, 80, 120, 0.08);
  padding: 14px;
}

.qna-hot-card h4 {
  margin: 0 0 8px;
}

.qna-hot-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.qna-hot-list li button {
  width: 100%;
  border: 1px solid #d1e8f2;
  border-radius: 10px;
  background: #f8fdff;
  text-align: left;
  padding: 8px 10px;
  color: #1f516f;
  font-size: 12px;
  cursor: pointer;
}

.qna-hot-list li button span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: #66839a;
}

@media (max-width: 980px) {
  .auth-layout,
  .account-layout,
  .market-grid,
  .account-cards,
  .account-summary-grid,
  .history-grid,
  .product-modal-grid,
  .qna-layout {
    grid-template-columns: 1fr;
  }

  .auth-actions {
    display: none;
  }

  .service-chat {
    right: 10px;
    bottom: 12px;
  }

  .product-order-head {
    grid-template-columns: 1fr;
  }

  .product-contact-grid {
    grid-template-columns: 1fr;
  }

  .payment-summary {
    grid-template-columns: 1fr;
  }

  .bank-pay-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .product-order-date input {
    width: 100%;
  }

  .admin-metric-grid,
  .admin-chart-grid,
  .product-manage-grid {
    grid-template-columns: 1fr;
  }

  .schedule-modal-panel {
    margin-top: 3vh;
    padding: 14px;
  }

  .payment-modal-panel {
    margin-top: 3vh;
    padding: 14px;
  }

  .route-edit-modal-panel {
    margin-top: 5vh;
    padding: 14px;
  }

  .schedule-modal-layout {
    grid-template-columns: 1fr;
  }

  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .schedule-day-cell {
    min-height: 58px;
  }

  .product-schedule-row {
    grid-template-columns: 1fr 1fr;
  }

  .product-itinerary-item {
    grid-template-columns: 1fr;
  }

  .confirm-modal-panel {
    margin-top: 14vh;
  }
}
