﻿:root {
  --bg: #e7edf3;
  --bg-soft: #f4f8fc;
  --navy: #0f4f83;
  --navy-deep: #0b3d67;
  --cyan: #2ea0d9;
  --teal: #0f8a8f;
  --amber: #f6ad42;
  --text: #10273e;
  --muted: #4b6681;
  --line: rgba(16, 39, 62, 0.15);
  --card: rgba(255, 255, 255, 0.82);
  --radius-lg: 20px;
  --radius-md: 12px;
  --shadow: 0 18px 38px rgba(16, 39, 62, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1000px 480px at 8% -10%, rgba(246, 173, 66, 0.2), transparent 60%),
    radial-gradient(900px 520px at 90% -8%, rgba(46, 160, 217, 0.2), transparent 62%),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
  line-height: 1.5;
}

.bg-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image: radial-gradient(rgba(16, 39, 62, 0.1) 0.7px, transparent 0.7px);
  background-size: 4px 4px;
  opacity: 0.22;
}

.container {
  width: min(1150px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.section {
  padding: 4.8rem 0;
}

.utility-bar {
  background: linear-gradient(90deg, var(--navy-deep), var(--navy));
  color: #eaf6ff;
}

.utility-row {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.utility-left,
.utility-right {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.utility-pill,
.lang-pill {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: #f4fbff;
  border-radius: 8px;
  padding: 0.42rem 0.68rem;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.03em;
}

.utility-right a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
  color: #f4fbff;
  display: grid;
  place-items: center;
  font-size: 0.73rem;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 45;
  border-bottom: 1px solid transparent;
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.site-header.scrolled {
  background: rgba(244, 248, 252, 0.94);
  backdrop-filter: blur(10px);
  border-color: rgba(16, 39, 62, 0.14);
  box-shadow: 0 8px 20px rgba(16, 39, 62, 0.1);
}

.header-shell {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-block {
  text-decoration: none;
  color: inherit;
}

.brand-main {
  margin: 0;
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-size: clamp(2.1rem, 4.1vw, 3.4rem);
  letter-spacing: 0.03em;
  line-height: 0.86;
  color: var(--navy);
  font-weight: 800;
}

.brand-sub {
  margin: 0.24rem 0 0;
  color: var(--cyan);
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
}

.brand-note {
  margin: 0.28rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  padding: 8px;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
}

.menu-btn span + span {
  margin-top: 6px;
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--navy-deep);
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  font-weight: 700;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--cyan);
}

.btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.7rem 1.15rem;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-navy {
  color: #ffffff;
  border-color: rgba(15, 79, 131, 0.4);
  background: linear-gradient(140deg, #206ca7, var(--navy));
  box-shadow: 0 12px 24px rgba(15, 79, 131, 0.27);
}

.btn-action {
  color: #ffffff;
  border-color: rgba(14, 124, 129, 0.42);
  background: linear-gradient(140deg, #14a1a8, var(--teal));
  box-shadow: 0 12px 23px rgba(15, 138, 143, 0.28);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.7);
}

.hero {
  padding-top: 1.6rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: 0.36fr 0.64fr;
  gap: 0.85rem;
  align-items: stretch;
}

.reservation-card {
  border: 1px solid rgba(46, 160, 217, 0.34);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(50, 168, 221, 0.88), rgba(31, 134, 191, 0.9));
  box-shadow: var(--shadow);
  color: #f7fdff;
  padding: 0.9rem;
}

.reservation-card h2 {
  margin: 0 0 0.84rem;
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.02em;
  text-align: center;
}

.reservation-form {
  display: grid;
  gap: 0.62rem;
}

.reservation-form label {
  display: grid;
  gap: 0.33rem;
  font-size: 0.85rem;
  color: rgba(246, 253, 255, 0.95);
  font-weight: 600;
}

.reservation-form input,
.reservation-form select {
  width: 100%;
  font: inherit;
  border: 1px solid rgba(10, 59, 94, 0.18);
  border-radius: 8px;
  padding: 0.63rem 0.72rem;
  background: #ffffff;
  color: #12324c;
}

.reservation-form input:focus,
.reservation-form select:focus {
  outline: 2px solid rgba(255, 255, 255, 0.52);
  outline-offset: 1px;
}

.inline-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.52rem;
}

.reservation-form .btn {
  margin-top: 0.38rem;
  border-color: rgba(15, 79, 131, 0.34);
  background: linear-gradient(140deg, #1f5f98, #164978);
}

.form-meta {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(244, 251, 255, 0.95);
  text-align: center;
}

.showcase {
  min-height: 100%;
}

.slider {
  height: 100%;
  min-height: 485px;
  position: relative;
  border: 1px solid rgba(16, 39, 62, 0.16);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #0e2c44;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slide.is-active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 23, 36, 0.18), rgba(7, 23, 36, 0.66));
}

.slide-overlay {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  color: #eff8ff;
}

.slide-overlay p {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  color: #9ddcff;
  font-weight: 700;
}

.slide-overlay h3 {
  margin: 0.38rem 0 0;
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-size: clamp(1.25rem, 2.3vw, 2rem);
  line-height: 1.04;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(8, 30, 48, 0.36);
  color: #ffffff;
  font-size: 1.1rem;
  cursor: pointer;
}

.slider-btn.prev {
  left: 0.75rem;
}

.slider-btn.next {
  right: 0.75rem;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 0.72rem;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 0.44rem;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.26);
  cursor: pointer;
}

.dot.is-active {
  background: #ffffff;
}

.quick-routes {
  padding: 0.9rem 0 0;
}

.quick-route-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.route-pill {
  border: 1px solid rgba(16, 39, 62, 0.2);
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
  border-radius: 999px;
  padding: 0.43rem 0.82rem;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

.route-pill:hover {
  border-color: rgba(46, 160, 217, 0.58);
  background: rgba(46, 160, 217, 0.14);
}

.section-head h2 {
  margin: 0.62rem 0 0;
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.85rem);
  line-height: 1.02;
}

.chip {
  margin: 0;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(15, 79, 131, 0.26);
  background: rgba(15, 79, 131, 0.1);
  color: var(--navy);
  border-radius: 999px;
  padding: 0.26rem 0.58rem;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 700;
}

.benefit-grid {
  margin-top: 1.36rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.benefit-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--card);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.benefit-card h3 {
  margin: 0;
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-size: 1.16rem;
}

.benefit-card p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.fleet-section {
  padding-top: 2.1rem;
}

.fleet-grid {
  margin-top: 1.34rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.fleet-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--card);
  padding: 1rem;
}

.fleet-type {
  margin: 0;
  color: var(--teal);
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  font-weight: 700;
}

.fleet-card h3 {
  margin: 0.45rem 0 0;
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-size: 1.22rem;
}

.fleet-card ul {
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.fleet-card li {
  padding-left: 0.88rem;
  color: var(--muted);
  position: relative;
}

.fleet-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  position: absolute;
  left: 0;
  top: 0.53rem;
}

.faq-section {
  padding-top: 2.1rem;
}

.faq-grid {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.62rem;
}

.faq-grid details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  padding: 0.9rem;
}

.faq-grid summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.cta-section {
  padding-top: 2rem;
}

.cta-shell {
  border: 1px solid rgba(15, 79, 131, 0.2);
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.86), rgba(46, 160, 217, 0.15));
  box-shadow: var(--shadow);
  padding: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.cta-shell h2 {
  margin: 0.62rem 0 0;
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-size: clamp(1.6rem, 3.7vw, 2.5rem);
  line-height: 1.02;
}

.cta-shell p {
  margin: 0.64rem 0 0;
  color: var(--muted);
}

.cta-actions {
  display: grid;
  gap: 0.5rem;
  min-width: 200px;
}

.site-footer {
  padding: 1.2rem 0 2rem;
}

.footer-row {
  border-top: 1px solid rgba(16, 39, 62, 0.14);
  padding-top: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
  color: var(--muted);
}

.footer-row p {
  margin: 0;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.62s ease, transform 0.62s ease;
  transition-delay: var(--delay, 0ms);
}

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

@media (max-width: 1060px) {
  .menu-btn {
    display: inline-block;
  }

  .nav-shell {
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 1.2rem;
    right: 1.2rem;
    border: 1px solid rgba(16, 39, 62, 0.15);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 25px rgba(16, 39, 62, 0.16);
    padding: 0.85rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.82rem;
  }

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

  .main-nav {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .slider {
    min-height: 390px;
  }

  .benefit-grid,
  .fleet-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .cta-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-actions {
    width: 100%;
    min-width: 0;
  }

  .cta-actions .btn {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1150px, calc(100% - 1.4rem));
  }

  .utility-row {
    min-height: 42px;
  }

  .utility-left .utility-pill:nth-child(2),
  .utility-right a {
    display: none;
  }

  .header-shell {
    min-height: 92px;
  }

  .brand-main {
    font-size: 2rem;
  }

  .brand-sub {
    font-size: 1.1rem;
  }

  .brand-note {
    font-size: 0.77rem;
  }

  .inline-fields {
    grid-template-columns: 1fr;
  }

  .route-pill {
    width: 100%;
    text-align: center;
  }

  .slider-btn {
    width: 36px;
    height: 36px;
  }
}
