﻿:root {
  --bg: #f4f7fb;
  --surface: rgba(255, 255, 255, 0.86);
  --card: #ffffff;
  --line: #d9e5f3;
  --navy: #0c2340;
  --blue: #1987df;
  --sky: #eaf4ff;
  --ink: #162437;
  --muted: #5d6d81;
  --accent: #25d366;
  --shadow: 0 18px 45px rgba(12, 35, 64, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.site-body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(circle at top left, rgba(25, 135, 223, 0.12), transparent 32%), var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
}

img,
video {
  display: block;
  max-width: 100%;
}

.page-wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-top {
  padding: 20px 0 0;
}

.navbar {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 16px 24px;
  background: var(--surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.logo-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  transition: transform 0.3s ease;
}

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

.logo-home:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

.logo {
  height: 64px;
  display: block;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 24px;
}

.nav-links a {
  text-decoration: none;
  font-weight: 700;
  color: var(--navy);
  padding: 8px 0;
  letter-spacing: 0.01em;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
}

.page-main {
  padding: 18px 0 44px;
}

.page-hero {
  padding: 22px 0 12px;
}

.hero-shell {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: center;
  padding: clamp(26px, 4vw, 46px);
  border-radius: 32px;
  background: linear-gradient(135deg, #0c2340 0%, #0f4e8b 50%, #1987df 100%);
  color: #ffffff;
  box-shadow: 0 26px 65px rgba(12, 35, 64, 0.18);
}

.hero-shell.search-shell {
  grid-template-columns: 1.05fr 0.95fr;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.82;
}

.hero-title {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
}

.hero-text {
  margin: 0 0 20px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 60ch;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.pill-row span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 600;
  font-size: 14px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: none;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.26);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-dark {
  background: var(--navy);
  color: #ffffff;
}

.hero-media img {
  width: 100%;
  max-height: 470px;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.18);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.search-panel {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 18px 35px rgba(8, 23, 45, 0.18);
}

.search-panel h2,
.card h3,
.section-head h2,
.cta-band h3,
.footer-brand h3 {
  font-family: Georgia, "Times New Roman", serif;
}

.search-panel h2 {
  margin: 0 0 8px;
  font-size: 30px;
  color: var(--navy);
}

.search-panel p {
  margin: 0 0 18px;
  color: var(--muted);
}

.trip-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.trip-switch label {
  flex: 1 1 160px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--sky);
  font-weight: 700;
}

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

.search-grid .full {
  grid-column: 1 / -1;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.field input,
.field select,
.field button.trigger {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

.field button.trigger {
  text-align: left;
  cursor: pointer;
}

.search-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.small-note {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--sky);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.passenger-box {
  position: relative;
}

.passenger-popup {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 18;
  display: none;
  padding: 16px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.passenger-popup.open {
  display: block;
}

.counter-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 10px 0;
}

.counter-row strong {
  display: block;
}

.counter-row span {
  color: var(--muted);
  font-size: 14px;
}

.counter-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.counter-controls button {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 12px;
  background: var(--sky);
  color: var(--navy);
  font-size: 18px;
  cursor: pointer;
}

.quick-fill-grid,
.grid {
  display: grid;
  gap: 16px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  padding: 24px;
  border-radius: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 14px 32px rgba(12, 35, 64, 0.08);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 26px;
  color: var(--navy);
}

.card p,
.section-intro,
.card .muted,
.media-card figcaption,
.site-footer p,
.site-footer small,
.note {
  color: var(--muted);
}

.label {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.page-section {
  padding: 24px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 18px;
}

.section-head h2 {
  margin: 4px 0 0;
  font-size: clamp(28px, 3.8vw, 42px);
  color: var(--navy);
}

.section-head p {
  margin: 0;
}

.section-intro {
  max-width: 58ch;
}

.route-link,
.quick-fill {
  display: block;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #ffffff;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(12, 35, 64, 0.08);
}

.quick-fill {
  width: 100%;
  text-align: left;
  color: inherit;
  font: inherit;
  cursor: pointer;
  appearance: none;
}

.route-link strong,
.quick-fill strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 18px;
}

.route-link span,
.quick-fill span {
  color: var(--muted);
  font-size: 14px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.media-card {
  margin: 0;
  padding: 14px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 28px rgba(12, 35, 64, 0.08);
}

.media-card img,
.media-card video {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
  background: #09111d;
}

.media-card figcaption {
  padding: 12px 4px 2px;
  font-size: 14px;
}

.note {
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--sky);
  border: 1px solid var(--line);
}

.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, #0c2340 0%, #0d5faa 100%);
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(12, 35, 64, 0.18);
}

.cta-band h3 {
  margin: 0 0 10px;
  font-size: clamp(26px, 4vw, 40px);
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  max-width: 54ch;
}

.site-footer {
  padding: 10px 0 36px;
}

.footer-card {
  padding: 28px;
  border-radius: 28px;
  background: #0c2340;
  color: #e9f3ff;
  box-shadow: 0 20px 46px rgba(12, 35, 64, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 24px;
}

.footer-brand h3 {
  margin: 0 0 12px;
  font-size: 30px;
}

.footer-links a,
.footer-meta a {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  text-decoration: none;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.3);
}

@media (max-width: 960px) {
  .hero-shell,
  .hero-shell.search-shell,
  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .page-wrap {
    width: min(1120px, calc(100% - 20px));
  }

  .navbar {
    gap: 16px;
    padding: 14px 16px;
  }

  .logo {
    height: 56px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 22px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 12px 14px;
    border-radius: 14px;
    background: var(--sky);
  }

  .page-main {
    padding-bottom: 34px;
  }

  .hero-shell,
  .search-panel,
  .card,
  .footer-card,
  .cta-band {
    padding: 22px;
  }

  .button-row,
  .search-actions,
  .footer-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }
}

