:root {
  color-scheme: dark;
  --bg: #050e13;
  --panel: #0e1a20;
  --panel-soft: #132128;
  --line: #34454d;
  --gold: #ffb800;
  --green: #20c95a;
  --text: #f5f7f8;
  --muted: #aab4b9;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 85% 10%, rgba(255,184,0,.10), transparent 24rem),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
}
a { color: inherit; }
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1080px;
  margin: auto;
  padding: 22px 20px;
}
.brand { text-decoration: none; }
.brand strong { display: block; color: var(--gold); font-size: 28px; line-height: 1.05; }
.brand span { color: var(--muted); font-size: 14px; }
.phone {
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 17px;
  font-weight: 700;
  white-space: nowrap;
}
.hero {
  max-width: 1080px;
  margin: 0 auto;
  padding: 70px 20px 55px;
  text-align: center;
  background:
    linear-gradient(rgba(5,14,19,.68), rgba(5,14,19,.94)),
    var(--route-image, url("IMG_5023.jpeg")) center/cover no-repeat;
  border: 1px solid var(--line);
  border-radius: 28px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d9e0e3;
  border: 1px solid var(--line);
  background: rgba(14,26,32,.85);
  border-radius: 999px;
  padding: 8px 15px;
  font-weight: 700;
}
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); }
h1 { max-width: 900px; margin: 24px auto 16px; font-size: clamp(39px, 7vw, 68px); line-height: 1.06; }
.hero-copy { max-width: 720px; margin: 0 auto; color: var(--muted); font-size: clamp(18px, 3vw, 22px); }
.from-price { margin: 25px 0 5px; color: var(--gold); font-size: 34px; font-weight: 800; }
.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  min-height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 23px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 800;
}
.button-primary { background: var(--green); color: white; }
.button-secondary { border: 2px solid var(--gold); color: var(--gold); }
.wrap { max-width: 1000px; margin: auto; padding: 0 20px 90px; }
.section { margin-top: 22px; padding: 34px; background: var(--panel); border: 1px solid var(--line); border-radius: 24px; }
.section h2 { margin: 0 0 9px; font-size: clamp(27px, 4vw, 36px); }
.section-intro { margin: 0 0 25px; color: var(--muted); }
.price-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.price-card {
  display: block;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.price-card:hover,
.price-card:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(255,184,0,.14);
  transform: translateY(-2px);
  outline: none;
}
.price-card:active { transform: scale(.99); }
.price-card strong { display: block; margin-bottom: 4px; font-size: 18px; }
.price-card span { color: var(--muted); }
.price-card b { display: block; margin-top: 12px; color: var(--gold); font-size: 30px; }
.price-card .select-fare {
  display: block;
  margin-top: 14px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.route-vehicle-card {
  display: grid;
  grid-template-columns: minmax(210px, 42%) 1fr;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel-soft);
}
.route-vehicle-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 15px;
  background: #10191e;
}
.route-vehicle-visual img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 220px;
  object-fit: contain;
}
.route-vehicle-info {
  min-width: 0;
  padding: 22px 22px 18px 8px;
}
.route-vehicle-info h3 {
  margin: 0 0 6px;
  font-size: 22px;
}
.route-fares .price-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2px 14px;
  min-height: 84px;
  padding: 11px 7px;
  border: 0;
  border-bottom: 1px dashed var(--line);
  border-radius: 8px;
  background: transparent;
}
.route-fares .price-card:last-child { border-bottom: 0; }
.route-fares .price-card strong { display: none; }
.route-fares .price-card > span:not(.select-fare) {
  grid-column: 1;
  color: var(--muted);
}
.route-fares .price-card b {
  grid-column: 1;
  margin: 0;
  font-size: 28px;
}
.route-fares .price-card .select-fare {
  grid-column: 2;
  grid-row: 1 / 3;
  width: 31px;
  height: 31px;
  margin: 0;
  overflow: hidden;
  border: 2px solid #aab4b9;
  border-radius: 50%;
  color: transparent;
  font-size: 0;
}
.route-fares .price-card.selected {
  border: 0;
  border-bottom: 1px dashed var(--line);
  background: rgba(255,184,0,.07);
  box-shadow: none;
}
.route-fares .price-card.selected .select-fare {
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: var(--gold);
  background: var(--gold);
  color: #111;
  font-size: 17px;
}
.hero .button-primary { display: none; }
.button-primary-choice {
  border-color: var(--gold);
  background: var(--gold);
  color: #071218;
}
.included { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 0; padding: 0; list-style: none; }
.included li { background: var(--panel-soft); border-radius: 14px; padding: 15px; }
.included li::before { content: "✓"; color: var(--green); font-weight: 900; margin-right: 9px; }
.booking-panel { text-align: center; border-color: rgba(255,184,0,.6); }
.booking-panel p { max-width: 680px; margin: 0 auto 22px; color: var(--muted); }
.route-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.route-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--panel-soft);
  text-decoration: none;
  font-weight: 700;
}
.route-links a b { color: var(--gold); white-space: nowrap; }
.route-links a:hover { border-color: var(--gold); color: var(--gold); }
details { border-top: 1px solid var(--line); padding: 17px 0; }
details:first-of-type { border-top: 0; }
summary { cursor: pointer; font-weight: 800; }
details p { color: var(--muted); margin: 10px 0 0; }
.fine-print { margin: 15px 0 0; color: var(--muted); font-size: 14px; }
footer { border-top: 1px solid var(--line); padding: 35px 20px 100px; color: var(--muted); text-align: center; }
footer a { color: var(--gold); text-decoration: none; }
.sticky-book { display: none !important; }

.price-card.selected {
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 3px rgba(255,184,0,.12);
  transform: none;
}
.price-card.selected .select-fare {
  color: var(--gold);
}

.inline-booking {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  margin: 4px 0 8px;
  padding: 26px;
  border: 2px solid var(--gold);
  border-radius: 20px;
  background: #0b171d;
  box-shadow: 0 14px 35px rgba(0,0,0,.28);
}
.inline-selected {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  margin-bottom: 21px;
  border-radius: 14px;
  background: rgba(255,184,0,.09);
}
.inline-selected span {
  color: var(--muted);
}
.inline-selected strong {
  color: var(--gold);
  text-align: right;
}
.inline-booking h3 {
  margin: 0 0 3px;
  font-size: 25px;
}
.inline-intro {
  margin: 0 0 20px;
  color: var(--muted);
}
.inline-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 13px;
  min-width: 0;
}
.inline-fields label,
.inline-notes-label {
  display: block;
  min-width: 0;
  max-width: 100%;
}
.inline-fields label > span,
.inline-notes-label > span {
  display: block;
  margin-bottom: 7px;
  color: #dfe5e8;
  font-weight: 800;
}
.inline-fields input,
.inline-notes-label textarea {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  border: 1px solid #52636c;
  border-radius: 13px;
  background: #071218;
  color: var(--text);
  font: inherit;
  font-size: 17px;
  outline: none;
}
.inline-fields input {
  min-height: 56px;
  padding: 11px 13px;
  color-scheme: dark;
}
.inline-notes-label {
  margin-top: 15px;
}
.inline-notes-label textarea {
  min-height: 96px;
  padding: 13px;
  resize: vertical;
}
.inline-fields input:focus,
.inline-notes-label textarea:focus {
  border-color: var(--gold);
}
.inline-rate-note {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--gold);
  font-size: 14px;
}
.inline-whatsapp {
  width: 100%;
  min-height: 59px;
  margin-top: 11px;
  border: 0;
  border-radius: 14px;
  background: var(--green);
  color: white;
  font: inherit;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}
.inline-whatsapp:disabled {
  opacity: .45;
  cursor: not-allowed;
}

@media (max-width: 680px) {
  .site-header { padding: 15px 16px; gap: 10px; }
  .brand strong { font-size: 22px; }
  .brand span { display: none; }
  .phone { padding: 9px 11px; font-size: 14px; }
  .hero { padding: 36px 17px 34px; border-radius: 0; }
  h1 { font-size: 34px; margin-top: 20px; }
  .hero-copy { font-size: 17px; }
  .hero-actions .button { width: 100%; }
  .wrap { padding: 0 12px 95px; }
  .section { padding: 26px 18px; border-radius: 19px; }
  .section h2 { font-size: 24px; }
  .price-grid, .included, .route-links { grid-template-columns: 1fr; }
  .route-vehicle-card { grid-template-columns: 44% 56%; min-height: 220px; }
  .route-vehicle-visual { padding: 8px; }
  .route-vehicle-info { padding: 17px 12px 13px 2px; }
  .route-vehicle-info h3 { font-size: 17px; }
  .route-fares .price-card { min-height: 78px; gap: 1px 8px; padding: 8px 2px; }
  .route-fares .price-card > span:not(.select-fare) { font-size: 13px; }
  .route-fares .price-card b { font-size: 25px; }
  .route-fares .price-card .select-fare { width: 27px; height: 27px; }
  .route-links a { align-items: flex-start; font-size: 15px; }
  .inline-booking { padding: 20px 16px; }
  .inline-selected { display: block; }
  .inline-selected strong { display: block; margin-top: 4px; text-align: left; }
  .inline-fields { grid-template-columns: 1fr; }
}
