:root{
  --bg:#070f24;
  --bg2:#0a1738;
  --card:#ffffff;
  --text:#0b1220;
  --muted:rgba(255,255,255,.78);
  --muted2:rgba(255,255,255,.62);
  --line:rgba(255,255,255,.10);

  --primary:#0B5FFF;
  --primary2:#1D4ED8;

  --shadow:0 18px 55px rgba(11,18,32,.18);
  --shadowSoft:0 10px 26px rgba(11,18,32,.12);
  --radius:18px;
}

*{box-sizing:border-box;}
html,body{height:100%;}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:#fff;
  background: #f3f6ff;
}

a{color:inherit;text-decoration:none;}

/* UPDATED: wider global container */
.container{
  width:100%;
  max-width:1500px;
  margin:0 auto;
  padding:0 24px;
}
@media (max-width: 820px){
  .container{padding:0 16px;}
}

/* Top nav */
.wg-topnav{
  background:#fff;
  border-bottom:1px solid rgba(12,18,32,.08);
  position:sticky;
  top:0;
  z-index:50;
}
.wg-topnav__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.wg-topnav__brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.wg-topnav__logo{
  height:38px;
  width:auto;
  display:block;
}
.wg-topnav__links{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.wg-topnav__link{
  color:rgba(11,18,32,.72);
  font-weight:800;
  font-size:13px;
  padding:8px 8px;
  border-radius:10px;
}
.wg-topnav__link:hover{
  background:rgba(11,95,255,.06);
  color:rgba(11,18,32,.92);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:40px;
  padding:0 14px;
  border-radius:12px;
  font-weight:900;
  font-size:14px;
  border:1px solid transparent;
  cursor:pointer;
  white-space:nowrap;
}
.btn--ghost{
  background:#fff;
  border-color:rgba(12,18,32,.14);
  color:rgba(11,18,32,.90);
}
.btn--primary{
  background:linear-gradient(180deg,var(--primary) 0%,var(--primary2) 100%);
  color:#fff;
  box-shadow:0 12px 30px rgba(11,95,255,.22);
}
.btn--wide{width:100%;}
@media (min-width: 820px){
  .btn--wide{width:auto; min-width: 220px;}
}

/* Hero band */
.wg-hero{
  background:
    radial-gradient(900px 500px at 15% 30%, rgba(255,255,255,.14), transparent 60%),
    radial-gradient(900px 500px at 85% 20%, rgba(11,95,255,.24), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  padding:34px 0 34px;
}
.wg-hero__grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:28px;
  align-items:stretch; /* equal height columns */
}
@media (max-width: 980px){
  .wg-hero__grid{grid-template-columns:1fr;}
}

/* Ensure both columns can stretch equally */
.wg-hero__left,
.wg-hero__right{
  min-height: 100%;
}
.wg-hero__right{
  display:flex;
}
.wg-book{
  height:100%;
}

/* LEFT PANEL: background image, text directly on image (NO glass box) */
.wg-hero__panel{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  height: 100%;
  min-height: 420px;
  background-image:
    radial-gradient(900px 420px at 30% 30%, rgba(255,255,255,.08), transparent 60%),
    radial-gradient(900px 420px at 80% 10%, rgba(11,95,255,.16), transparent 55%),
    linear-gradient(180deg, rgba(7,15,36,.20) 0%, rgba(10,23,56,.50) 100%),
    var(--hero-bg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadowSoft);
  border: 1px solid rgba(255,255,255,.10);
}

/* This is now just positioning—no background, no blur, no border */
.wg-hero__panel-content{
  position:absolute;
  left:26px;
  right:26px;
  bottom:26px;
  max-width: 640px;
  padding:0;            /* remove panel padding */
  border-radius:0;      /* remove panel rounding */
  background: none;     /* remove glass */
  backdrop-filter: none;
  border: none;
}

/* Headline and copy readability on image */
.wg-hero__title{
  margin:0 0 10px 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height:1.02;
  letter-spacing:-0.02em;
  text-shadow: 0 10px 30px rgba(0,0,0,.45);
}
.wg-hero__panel .wg-hero__title{
  margin: 0 0 10px 0;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.03;
}

.wg-hero__lead{
  margin:0 0 14px 0;
  color: rgba(255,255,255,.86);
  max-width: 56ch;
  line-height:1.6;
  font-size: 15px;
  text-shadow: 0 8px 22px rgba(0,0,0,.35);
}

.wg-hero__micro{
  color: rgba(255,255,255,.74);
  font-weight: 850;
  font-size: 12px;
  margin: 0 0 14px 0;
  text-shadow: 0 8px 18px rgba(0,0,0,.35);
}
.wg-dot{
  opacity:.7;
  padding:0 6px;
}

/* chips */
.wg-hero__chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.wg-chip{
  display:inline-flex;
  align-items:center;
  padding:7px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
  font-weight:850;
  font-size:11px;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
}

/* Right booking card */
.wg-book{
  background:#fff;
  color: var(--text);
  border-radius: 20px;
  border:1px solid rgba(12,18,32,.10);
  box-shadow: var(--shadow);
  overflow:hidden;
  width:100%;
  display:flex;
  flex-direction:column;
}
.wg-book__head{
  padding:18px 18px 12px;
  border-bottom:1px solid rgba(12,18,32,.08);
}
.wg-book__title{
  font-weight:950;
  font-size:18px;
  color:#0b1220;
}
.wg-book__sub{
  margin-top:4px;
  color:rgba(11,18,32,.62);
  font-size:13px;
  line-height:1.45;
}
.wg-book__form{
  padding:16px 18px 18px;
  flex: 1 1 auto;
}
.field label{
  display:block;
  font-size:12px;
  font-weight:900;
  color:#24314b;
  margin-bottom:6px;
}
.input, .select{
  width:100%;
  height:46px;
  border-radius:14px;
  border:1px solid rgba(12,18,32,.14);
  background: rgba(11,95,255,.06);
  padding:0 14px;
  outline:none;
  font-size:14px;
  color:#0b1220;
}
.input::placeholder{color:rgba(44,58,85,.55);}
.input:focus, .select:focus{
  border-color: rgba(11,95,255,.55);
  box-shadow: 0 0 0 3px rgba(11,95,255,.14);
}

.wg-book__row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin-top:12px;
}
@media (max-width: 520px){
  .wg-book__row{grid-template-columns:1fr;}
}

.wg-pricebox{
  border-radius: 16px;
  border:1px solid rgba(12,18,32,.10);
  background: #fff;
  padding:12px 12px 10px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.wg-pricebox__label{
  font-size:11px;
  font-weight:950;
  letter-spacing:.02em;
  color:rgba(11,18,32,.58);
}
.wg-pricebox__value{
  font-size:22px;
  font-weight:950;
  margin-top:4px;
  color:#0b1220;
}
.wg-pricebox__meta{
  font-size:11px;
  margin-top:4px;
  color:rgba(11,18,32,.55);
}

.wg-book__fine{
  margin-top:12px;
  font-size:12px;
  color:rgba(11,18,32,.60);
  line-height:1.45;
}
.wg-book__cta{
  margin-top:14px;
}

/* Legal line under CTA */
.wg-book__legal{
  margin-top:10px;
  font-size:12px;
  color:rgba(11,18,32,.60);
  line-height:1.45;
}
.wg-book__legal a{
  color: rgba(11,95,255,.95);
  font-weight: 900;
}
.wg-book__legal a:hover{
  text-decoration: underline;
}

/* Below features */
.wg-below{
  background:#f3f6ff;
  padding:22px 0 30px;
}
.wg-below__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
@media (max-width: 980px){
  .wg-below__grid{grid-template-columns:1fr;}
}
.wg-feature{
  background:#fff;
  border:1px solid rgba(12,18,32,.08);
  border-radius:18px;
  padding:16px;
  box-shadow: 0 10px 26px rgba(11,18,32,.08);
}
.wg-feature__title{
  font-weight:950;
  color:#0b1220;
  margin-bottom:6px;
}
.wg-feature__text{
  color:rgba(11,18,32,.62);
  font-size:13px;
  line-height:1.55;
}

/* Footer */
.wg-footer{
  background:#0b1220;
  color:rgba(255,255,255,.86);
  border-top:1px solid rgba(255,255,255,.08);
}
.wg-footer__inner{
  padding:22px 0;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:start;
}
@media (max-width: 900px){
  .wg-footer__inner{grid-template-columns:1fr;}
}
.wg-footer__logo{
  height:34px;
  width:auto;
  display:block;
  opacity:.98;
}
.wg-footer__muted{
  margin-top:10px;
  color:rgba(255,255,255,.62);
  font-size:13px;
  line-height:1.5;
  max-width:62ch;
}
.wg-footer__cols{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.wg-footer__h{
  margin:0 0 10px 0;
  font-size:13px;
  font-weight:950;
  letter-spacing:.02em;
  color:rgba(255,255,255,.90);
}
.wg-footer__a{
  display:block;
  margin:0 0 10px 0;
  font-size:13px;
  color:rgba(255,255,255,.72);
}
.wg-footer__a:hover{color:#fff;}
