:root{
  --bg:#f5f7fb;
  --card:#fff;
  --ink:#182230;
  --muted:#667085;
  --line:#dfe5ee;
  --primary:#0f6fff;
  --primary-dark:#075acb;
  --soft:#eef5ff;
  --ok-bg:#eaf8f0;
  --ok:#147a45;
  --danger:#b42318;
  --shadow:0 12px 32px rgba(20,35,60,.07)
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:Arial,Helvetica,sans-serif
}

.page-shell{max-width:1060px;margin:0 auto;padding:28px 20px 60px}

.hero{padding:24px 4px 10px}
.brand{
  font-size:16px;
  font-weight:800;
  color:var(--primary);
  letter-spacing:.4px;
  text-transform:uppercase
}
.hero h1{margin:6px 0 8px;font-size:38px;letter-spacing:-.8px}
.hero-copy{margin:0;color:var(--muted);font-size:18px}

.service-definitions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:22px
}
.service-definitions article{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:14px;
  padding:16px 18px
}
.service-definitions h2{font-size:16px;margin:0 0 4px}
.service-definitions p{color:var(--muted);margin:0;line-height:1.45;font-size:14px}

.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:var(--shadow);
  padding:24px;
  margin-top:18px
}

.section-heading{display:flex;gap:14px;align-items:flex-start;margin-bottom:22px}
.section-heading h2{margin:0 0 4px;font-size:22px}
.section-heading p{margin:0;color:var(--muted);font-size:14px}

.step{
  width:34px;
  height:34px;
  border-radius:50%;
  background:var(--soft);
  color:var(--primary);
  display:grid;
  place-items:center;
  font-weight:800;
  flex:0 0 34px
}

.choice-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.choice-card{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:16px;
  border:1px solid var(--line);
  border-radius:14px;
  cursor:pointer
}
.choice-card:hover{border-color:#a9c8ff;background:#fbfdff}
.choice-card input{margin-top:3px}
.choice-card strong,.choice-card small{display:block}
.choice-card small{color:var(--muted);margin-top:3px;line-height:1.4}

.field-grid{display:grid;gap:16px}
.field-grid.two{grid-template-columns:1fr 1fr}
.field.full,.field-grid.two .full{grid-column:1/-1}
.field span{display:block;font-size:13px;font-weight:700;margin-bottom:7px}

input,textarea,select{
  width:100%;
  border:1px solid #cfd7e3;
  border-radius:10px;
  padding:12px 13px;
  font:inherit;
  color:var(--ink);
  background:#fff
}
input:focus,textarea:focus,select:focus{
  border-color:var(--primary);
  outline:3px solid rgba(15,111,255,.10)
}
input[readonly]{background:#f8fafc}
textarea{min-height:92px;resize:vertical}

.return-row{display:grid;grid-template-columns:1fr auto;gap:10px}
.subsection-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px
}
.subsection-row strong{font-size:14px}
.helper{margin:3px 0 0;color:var(--muted);font-size:12px}

.stops-list{display:grid;gap:10px}
.stop-row{
  display:grid;
  grid-template-columns:52px 1fr auto;
  gap:10px;
  align-items:center
}
.stop-number{
  width:42px;
  height:42px;
  background:#f2f4f7;
  border-radius:10px;
  display:grid;
  place-items:center;
  font-size:12px;
  font-weight:800;
  color:#475467
}

.map-wrap{margin-top:20px}
.tour-map{
  width:100%;
  height:440px;
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
  background:#f8fafc
}
.map-status{
  margin:9px 2px 0;
  color:var(--muted);
  font-size:12px
}

.btn{
  border:0;
  border-radius:10px;
  padding:11px 15px;
  font:inherit;
  font-weight:700;
  cursor:pointer
}
.btn.primary{background:var(--primary);color:#fff}
.btn.primary:hover{background:var(--primary-dark)}
.btn.secondary{background:var(--soft);color:var(--primary)}
.btn.ghost{background:#f2f4f7;color:#344054;white-space:nowrap}
.btn.danger{background:#fff0ee;color:var(--danger)}
.btn:disabled{cursor:not-allowed;opacity:.5}

.action-row{display:flex;justify-content:flex-end;margin-top:20px}
.status-message{
  min-height:20px;
  margin:12px 0 0;
  color:var(--muted);
  font-size:13px
}
.status-message.error{color:var(--danger)}
.status-message.success{color:var(--ok)}

.route-summary{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:12px
}
.route-summary>div{
  background:#f8fafc;
  border:1px solid var(--line);
  padding:14px;
  border-radius:12px
}
.route-summary span,.route-summary strong{display:block}
.route-summary span{color:var(--muted);font-size:12px;margin-bottom:5px}
.route-summary strong{font-size:14px;line-height:1.4}

.route-segments{
  display:grid;
  gap:10px;
  margin-top:14px
}
.route-segment{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  padding:13px 14px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff
}
.route-segment small{
  display:block;
  margin-bottom:4px;
  color:var(--muted);
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.3px
}
.route-segment strong{
  font-size:13px;
  line-height:1.35
}
.route-segment-metrics{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end
}
.route-segment-metrics span{
  white-space:nowrap;
  border-radius:999px;
  padding:6px 9px;
  background:var(--soft);
  color:var(--primary);
  font-size:12px;
  font-weight:800
}

.route-attribution{
  margin:14px 2px 0;
  color:var(--muted);
  font-size:12px;
  line-height:1.55
}

.included-row{display:flex;gap:8px;flex-wrap:wrap;margin:16px 0}
.tag{
  background:#f2f4f7;
  color:#344054;
  border-radius:999px;
  padding:7px 10px;
  font-size:12px
}
.tag.ok{background:var(--ok-bg);color:var(--ok)}

.price-box{border:1px solid var(--line);border-radius:14px;overflow:hidden}
.price-line{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:13px 16px;
  border-bottom:1px solid var(--line)
}
.price-line:last-child{border-bottom:0}
.price-line.accent{background:var(--soft)}
.price-line.usd{color:var(--muted);font-size:13px}

.payment-choice{
  margin:18px 0 0;
  border:1px solid var(--line);
  border-radius:14px;
  padding:16px;
  display:grid;
  gap:10px
}
.payment-choice legend{font-weight:800;padding:0 6px}
.payment-choice label{display:flex;align-items:center;gap:8px}
.payment-choice input{width:auto}

.terms-row{
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin-top:18px;
  font-size:14px;
  line-height:1.45
}
.terms-row input{width:auto;margin-top:2px}

.hidden{display:none!important}

@media(max-width:760px){
  .service-definitions,
  .choice-grid,
  .field-grid.two,
  .route-summary{
    grid-template-columns:1fr
  }

  .return-row{grid-template-columns:1fr}
  .subsection-row{align-items:flex-start;flex-direction:column}
  .stop-row{grid-template-columns:42px 1fr}
  .stop-row .btn{grid-column:2;justify-self:start}
  .hero h1{font-size:31px}
  .tour-map{height:390px}

  .route-segment{
    align-items:flex-start;
    flex-direction:column
  }

  .route-segment-metrics{
    justify-content:flex-start
  }
}
