/* ---------- SatSet UI v2 (Helvetica, modern, responsive) ---------- */
:root{
  --navy:#25356A;
  --navy2:#1E2B57;
  --lime:#A6C400;
  --yellow:#FFD100;

  --bg:#F6F8FC;
  --card:#FFFFFF;
  --text:#0F1222;
  --muted:#5D647B;
  --line:#D9DEEB;

  --radius:16px;
  --shadow:0 14px 40px rgba(14,20,44,.10);
  --shadow2:0 10px 20px rgba(14,20,44,.08);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
}

/* layout */
.container{
  max-width:1180px;
  margin:0 auto;
  padding:0 20px;
}

a{color:inherit}
.muted{color:var(--muted)}
.hidden{display:none !important}

/* top header */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(217,222,235,.75);
}
.topbarInner{
  height:64px;
  display:flex;
  align-items:center;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:220px;
}
.brand img{height:28px; width:auto}
.brandName{
  font-weight:800;
  letter-spacing:.2px;
  font-size:18px;
  color:var(--navy);
}
.brandRight{
  margin-left:auto;
  font-weight:900;
  letter-spacing:1.2px;
  color:#000;
  display:flex;
  align-items:center;
  gap:10px;
}
.pillChip{
  border:1px solid var(--line);
  background:#fff;
  border-radius:999px;
  padding:8px 10px;
  font-size:12px;
  display:flex;
  align-items:center;
  gap:8px;
  white-space:nowrap;
}
.pillChip.good{border-color:rgba(166,196,0,.55); background:rgba(166,196,0,.12)}
.pillChip.bad{border-color:rgba(37,53,106,.25); background:rgba(37,53,106,.06)}

.btn{
  appearance:none;
  border:1px solid var(--line);
  background:#fff;
  color:var(--navy);
  font-weight:800;
  border-radius:12px;
  padding:10px 12px;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  box-shadow:0 4px 10px rgba(14,20,44,.04);
}
.btn:hover{transform:translateY(-1px)}
.btn.primary{
  background:var(--navy);
  border-color:var(--navy);
  color:#fff;
}
.btn.lime{
  background:var(--lime);
  border-color:var(--lime);
  color:#18214A;
}
.btn.ghost{
  background:transparent;
  box-shadow:none;
}
.btn.danger{
  background:#fff;
  border-color:rgba(220,60,80,.35);
  color:#B11226;
}

.icon{
  width:18px;height:18px;
}

/* hero */
.hero{
  position:relative;
  margin:18px auto 0 auto;
  border-radius:24px;
  overflow:hidden;
  background:linear-gradient(120deg,#dbe4ff,#ffffff);
  box-shadow:var(--shadow);
  min-height:240px;
}
.heroBg{
  position:absolute; inset:0;
  background:url("/assets/hero.jpg") center/cover no-repeat;
  filter:saturate(1.05);
}
.heroOverlay{
  position:absolute; inset:0;
  background:linear-gradient(90deg, rgba(37,53,106,.72), rgba(37,53,106,.22) 55%, rgba(37,53,106,0));
}
.heroContent{
  position:relative;
  padding:26px 26px 22px 26px;
  color:#fff;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.heroKicker{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  opacity:.95;
}
.heroKicker img{height:26px;width:auto;border-radius:10px;background:#fff;padding:4px}
.heroTitle{
  font-size:40px;
  font-weight:900;
  letter-spacing:.2px;
  line-height:1.05;
}
.heroTitle em{
  font-style:normal;
  color:var(--lime);
}
.heroSub{
  max-width:640px;
  font-size:14px;
  opacity:.92;
  line-height:1.35;
}

/* nav tabs */
.navTabs{
  margin-top:16px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.tab{
  padding:10px 14px;
  border-radius:14px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  text-decoration:none;
  font-weight:900;
  font-size:13px;
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.tab.active{
  background:#fff;
  color:var(--navy);
  border-color:#fff;
}

/* section cards */
.grid2{
  display:grid;
  grid-template-columns: 1.5fr 1fr;
  gap:18px;
  margin-top:18px;
}
@media (max-width:980px){
  .grid2{grid-template-columns:1fr}
  .brand{min-width:auto}
}

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

.h2{
  margin:0 0 10px 0;
  font-size:20px;
  font-weight:900;
}
.subrow{
  display:flex; gap:10px; flex-wrap:wrap; align-items:center;
}

/* search module */
.searchCard{
  background:linear-gradient(180deg, var(--navy), var(--navy2));
  color:#fff;
  border:0;
  border-radius:22px;
  box-shadow:var(--shadow);
}
.searchTop{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:12px;
}
.tripChoice{
  display:flex;
  gap:14px;
  align-items:center;
  font-size:13px;
}
.tripChoice label{display:flex; align-items:center; gap:6px; cursor:pointer; opacity:.95}
.tripChoice input{accent-color:var(--lime)}
.searchFields{
  display:grid;
  grid-template-columns: 1.2fr 56px 1.2fr 1fr 1fr 60px;
  gap:12px;
  align-items:center;
}
@media (max-width:980px){
  .searchFields{grid-template-columns:1fr; gap:10px}
}
.field{
  background:#fff;
  border-radius:14px;
  padding:12px 12px;
  border:1px solid rgba(255,255,255,.22);
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--text);
}
.field select,.field input{
  border:none; outline:none; width:100%;
  font-family:inherit;
  font-size:14px;
  background:transparent;
}
.field .icon{color:var(--navy)}
.swapBtn{
  width:56px;height:52px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(255,255,255,.35);
  display:grid; place-items:center;
  cursor:pointer;
  box-shadow:0 10px 18px rgba(0,0,0,.15);
}
.swapBtn .icon{color:var(--navy)}
.goBtn{
  width:60px;height:52px;
  border:none;
  border-radius:16px;
  background:var(--lime);
  color:#18214A;
  cursor:pointer;
  display:grid;place-items:center;
  box-shadow:0 12px 20px rgba(0,0,0,.18);
}
.goBtn .icon{width:22px;height:22px}

/* products */
.productShow{
  min-height:300px;
  border-radius:22px;
  background:linear-gradient(180deg,#24356A,#1E2B57);
  position:relative;
  overflow:hidden;
}
.productCard{
  position:absolute;
  left:18px;
  top:18px;
  width:280px;
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(0,0,0,.18);
  border:1px solid rgba(0,0,0,.06);
}
.productImg{
  height:160px;
  background:url("/assets/plane-card.jpg") center/cover no-repeat;
}
.productBody{padding:14px}
.productTitle{
  font-size:42px;
  font-weight:900;
  letter-spacing:.2px;
  line-height:1;
}
.productTitle span{color:var(--lime); font-size:22px; margin-left:6px}
.productDesc{font-size:12px;color:var(--muted); margin-top:8px; line-height:1.35}

.aboutCard .bar{height:10px;background:var(--lime)}
.aboutImgs{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:12px;
}
.aboutImg{
  height:86px;
  border-radius:14px;
  background:#e9edf8 center/cover no-repeat;
  border:1px solid var(--line);
}
.aboutImg.one{background-image:url("/assets/about1.jpg")}
.aboutImg.two{background-image:url("/assets/about2.jpg")}

/* booking steps layout */
.stepHero{
  margin-top:18px;
  border-radius:22px;
  background:linear-gradient(180deg,var(--navy),var(--navy2));
  color:#fff;
  padding:18px;
  box-shadow:var(--shadow);
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:flex-start;
  flex-wrap:wrap;
}
.stepHero h1{margin:0;font-size:26px;font-weight:900}
.stepMeta{margin-top:8px;font-size:13px;opacity:.9;display:flex;gap:10px;flex-wrap:wrap}
.totalBox{text-align:right}
.totalBox .lbl{font-weight:900; color:var(--lime); letter-spacing:.8px; font-size:12px}
.totalBox .val{display:flex; align-items:center; justify-content:flex-end; gap:10px; margin-top:8px; font-size:34px; font-weight:900}

.stepper{
  margin-top:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}
.dot{
  width:14px;height:14px;border-radius:999px;border:2px solid rgba(255,255,255,.55); background:transparent;
}
.dot.done{background:var(--lime);border-color:var(--lime)}
.dot.current{background:#fff;border-color:#fff}
.line{
  width:74px;height:2px;background:rgba(255,255,255,.35);
}
@media (max-width:520px){ .line{width:42px} }

.panelTitleRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:18px;
}
.panelTitleRow h2{margin:0;font-size:18px;font-weight:900}
.panelTitleRow .mini{font-size:12px;color:var(--muted)}

.formGrid3{display:grid;grid-template-columns:1fr 1fr 1fr;gap:12px}
.formGrid4{display:grid;grid-template-columns:1fr 1fr 1fr 1fr;gap:12px}
@media (max-width:980px){
  .formGrid3,.formGrid4{grid-template-columns:1fr}
}

.label{font-size:12px;color:var(--muted);margin-bottom:6px;font-weight:800}
.input{
  width:100%;
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px 12px;
  font-family:inherit;
  font-size:14px;
  outline:none;
  background:#fff;
}
textarea.input{min-height:110px; resize:vertical}

.callout{
  display:flex; gap:12px; align-items:flex-start;
  background:rgba(166,196,0,.12);
  border:1px solid rgba(166,196,0,.45);
  padding:14px;
  border-radius:16px;
}
.callout .icon{color:var(--navy); margin-top:2px}
.callout b{display:block}

/* bottom sticky actions */
.bottomActions{
  position:sticky;
  bottom:0;
  margin-top:18px;
  padding:16px 0;
  background:linear-gradient(180deg, rgba(246,248,252,0), rgba(246,248,252,.92) 30%, rgba(246,248,252,1));
}
.bottomBar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.checkline{
  display:flex; align-items:center; gap:10px;
  font-size:12px; color:var(--muted);
}
.checkline input{width:20px;height:20px;accent-color:var(--lime)}
.ctaWide{
  min-width:280px;
  max-width:520px;
  width:min(520px, 100%);
  justify-content:center;
}

/* tables (staff + bookings) */
.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border-radius:16px;
  border:1px solid var(--line);
  background:#fff;
}
.table th,.table td{
  text-align:left;
  padding:12px 12px;
  border-bottom:1px solid rgba(217,222,235,.75);
  vertical-align:top;
  font-size:13px;
}
.table th{background:#f2f5ff;color:var(--navy);font-weight:900}
.table tr:last-child td{border-bottom:none}

/* footer */
.footerNote{
  margin:18px 0 26px;
  font-size:12px;
  color:var(--muted);
}