: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: 12px;
}

.brand-mark {
  width: 92px;
  height: 92px;
  padding: 4px;
  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;
  justify-content: center;
  gap: 2px;
  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-title {
  margin: 0;
  font-family: "Sora", "Space Grotesk", sans-serif;
  font-size: clamp(20px, 2.3vw, 24px);
  letter-spacing: 0.6px;
  line-height: 1.02;
  font-weight: 800;
  color: #0a2a46;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
}

.brand-sub {
  margin: 0;
  font-size: 12.5px;
  font-weight: 600;
  color: #38556f;
  letter-spacing: 0.25px;
  line-height: 1.2;
}

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

.quick-hidden {
  display: none;
}

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

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

.nav-links a:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
}

.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;
}

.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) {
  .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;
  }

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

@media (max-width: 680px) {
  .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: 84px;
    height: 84px;
  }

  .brand-title {
    font-size: 20px;
  }

  .brand-sub {
    font-size: 12px;
  }
}
