/* Londonist-like Flow Page (HTML + CSS + tiny JS)
   Accent: Londonist Orange (approx)
*/
:root{
  --bg:#ffffff;
  --text:#0b1320;
  --muted:#667085;
  --line:#e4e7ec;
  --chip:#f2f4f7;
  --card:#ffffff;
  --shadow: 0 12px 30px rgba(16,24,40,.10);
  --orange:#f47a20;
  --orange-2:#ff8a3d;
  --green:#12b76a;
  --purple:#7a5af8;
  --radius:18px;
  --radius2:24px;
  --max:1180px;
  --font: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

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

.bg-image{
 /* The image used */
  background: url("assets/back_2.jpg");
  
  /* Add the blur effect 
  filter: blur(8px);
  -webkit-filter: blur(8px);*/
  
  /* Full height */
  height: 100%; 
  width:100%;
  
  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position:fixed;
  top:0px;
  left:0px;
  z-index:-1;
  
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}

.icon{width:20px;height:20px; fill:currentColor}

.nav{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(180%) blur(12px);
  border-bottom:1px solid var(--line);
  display:flex; align-items:center; justify-content:space-between;
  gap:16px;
  padding:14px 18px;
}

.brand{display:flex; align-items:center; gap:10px}
.brand__logo{height:65px; width:auto}

.nav__center{flex:1; display:flex; justify-content:center}
.navSearch{
  width:min(560px, 100%);
  display:flex; align-items:center; gap:10px;
  border:1px solid var(--line);
  border-radius:999px;
  padding:10px 14px;
  background:#fff;
}
.navSearch__input{
  border:0; outline:0; width:100%;
  font-size:14px;
}

.nav__right{display:flex; align-items:center; gap:10px}
.pill{
  padding:10px 14px;
  border:1px solid rgba(244,122,32,.35);
  color:var(--orange);
  border-radius:999px;
  font-weight:600;
  font-size:14px;
}
.iconBtn{
  border:1px solid var(--line);
  background:#fff;
  width:40px; height:40px;
  border-radius:999px;
  display:grid; place-items:center;
  cursor:pointer;
}

.page{z-index:99999 !important;}

.hero{
  position:relative;
  overflow:hidden;
  padding:56px 18px 26px;
}
.hero__bg{
  position:absolute; inset:-40px;
  background:
    radial-gradient(900px 300px at 20% 0%, rgba(244,122,32,.25), transparent 60%),
    radial-gradient(900px 300px at 80% 10%, rgba(122,90,248,.18), transparent 55%),
    linear-gradient(180deg, #0b1320 0%, #0b1320 40%, #ffffff 40%, #ffffff 100%);
}
.hero__content{
  position:relative;
  max-width:var(--max);
  margin:0 auto;
  color:#fff;
  padding:12px 0 0;
}
.hero h1{
  margin:0 0 10px;
  font-size:46px;
  letter-spacing:-.02em;
}
.hero p{
  margin:0 0 18px;
  color:rgba(255,255,255,.86);
  max-width:720px;
  line-height:1.5;
}

.heroBar{
  margin-top:18px;
  background:#fff;
  border:1px solid rgba(255,255,255,.35);
  border-radius:var(--radius2);
  padding:12px;
  display:grid;
  grid-template-columns: 1.2fr .8fr .7fr .7fr auto;
  gap:10px;
  box-shadow: var(--shadow);
  color:var(--text);
}
.heroBar__field{
  border:1px solid var(--line);
  border-radius:14px;
  padding:10px 12px;
}
.heroBar__field label{
  display:block;
  font-size:12px;
  color:var(--muted);
  margin-bottom:6px;
}
.heroBar__field input{
  border:0; outline:0; width:100%;
  font-size:14px;
}

.chips{display:flex; gap:10px; margin-top:14px; flex-wrap:wrap}
.chip{
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  padding:8px 12px;
  border-radius:999px;
  font-size:13px;
  color:rgba(255,255,255,.92);
}

.flowWrap{
	margin-top:100px;
	padding:22px 18px 42px;
}
.flowCard{
  max-width:var(--max);
  margin:0 auto;
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow: var(--shadow);
  display:grid;
  grid-template-columns: 340px 1fr;
  overflow:hidden;
}

.flowAside{
  border-right:1px solid var(--line);
  padding:18px;
  background:linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
}
.stepper{display:flex; flex-direction:column; gap:12px}
.step{
  display:flex; align-items:flex-start; gap:12px;
  padding:12px;
  border-radius:16px;
  border:1px solid var(--line);
  background:#fff;
}
.step__dot{
  width:12px; height:12px; border-radius:999px;
  background:#cbd5e1;
  margin-top:4px;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,.9);
}
.step--active{
  border-color: rgba(244,122,32,.38);
  background:rgba(244,122,32,.06);
}
.step--active .step__dot{background:var(--orange)}
.step--done .step__dot{background:var(--green)}
.step__title{font-weight:700; font-size:14px}
.step__desc{color:var(--muted); font-size:13px; margin-top:2px}

.asideNote{
  margin-top:14px;
  border:1px dashed rgba(8,253,4,.45);
  background:rgba(8,253,4,.06);
  border-radius:16px;
  padding:12px;
}
.asideNote__title{font-weight:700; margin-bottom:6px}
.asideNote__text{color:#344054; font-size:13px; line-height:1.5}

.flowMain{padding:18px}

.panel{display:none}
.panel--active{display:block}
.panel__head h2{margin:0 0 6px; font-size:22px; letter-spacing:-.01em}
.panel__head p{margin:0 0 14px; color:var(--muted); line-height:1.5}

.grid{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:12px;
}
.field{display:flex; flex-direction:column; gap:8px}
.field--wide{grid-column: span 3}
.field label{font-size:13px; font-weight:600}
.field input, .field select{
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px 12px;
  font-size:14px;
  outline:none;
}
.hint{color:var(--muted); font-size:12px}

.panel__foot{
  margin-top:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  border-top:1px solid var(--line);
  padding-top:14px;
}
.muted{color:var(--muted); font-size:13px}

.btn{
  border-radius:999px;
  padding:11px 16px;
  font-weight:700;
  border:1px solid var(--line);
  background:#fff;
  cursor:pointer;
  font-size:14px;
}
.btn--primary{
  border-color: rgba(244,122,32,.55);
  background:linear-gradient(180deg, var(--orange) 0%, var(--orange-2) 100%);
  color:#fff;
  box-shadow: 0 10px 18px rgba(244,122,32,.25);
}
.btn--ghost{
  background:#fff;
  border-color: var(--line);
}

.cards{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
}
.room{
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  display:grid;
  grid-template-columns: 220px 1fr;
}
.room__media{
  background:
    radial-gradient(140px 120px at 30% 20%, rgba(244,122,32,.30), transparent 60%),
    radial-gradient(140px 120px at 70% 60%, rgba(122,90,248,.20), transparent 55%),
    linear-gradient(135deg, #0b1320 0%, #111827 100%);
  position:relative;
}
.badge{
  position:absolute; top:14px; left:14px;
  padding:7px 10px;
  border-radius:999px;
  color:#fff;
  font-size:12px;
  font-weight:800;
}
.badge--green{background:rgba(18,183,106,.95)}
.badge--purple{background:rgba(122,90,248,.95)}
.badge--orange{background:rgba(244,122,32,.95)}
.room__body{padding:14px 14px 12px}
.room__title{font-weight:800; font-size:16px; margin-bottom:6px}
.room__meta{display:flex; flex-wrap:wrap; gap:10px; color:var(--muted); font-size:13px}
.room__actions{display:flex; gap:10px; margin-top:12px}

.ctaStrip{
  padding:0 18px 46px;
}
.ctaStrip2{
  padding:0 18px 46px;
  text-align:center;
  font-weight:900;
  color:#fff; margin-top:4px;
  font-size:10pt;
  text-shadow: 0px 2px 7px rgba(0,0,0,0.84);
}
.ctaStrip__inner{
  max-width:var(--max);
  margin:0 auto;
  border:1px solid var(--line);
  border-radius:24px;
  padding:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  background:linear-gradient(90deg, rgba(244,122,32,.08), rgba(122,90,248,.06));
}
.ctaStrip__title{font-weight:900}
.ctaStrip__text{color:var(--muted); margin-top:4px}

.floatActions{
  position:fixed;
  right:16px;
  bottom:16px;
  display:flex;
  flex-direction:column;
  gap:10px;
  z-index:60;
}
.floatBtn{
  width:52px; height:52px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  display:grid; place-items:center;
  box-shadow: 0 10px 22px rgba(16,24,40,.12);
  cursor:pointer;
}
.floatBtn:nth-child(1){border-color: rgba(244,122,32,.35)}
.floatBtn:nth-child(2){border-color: rgba(18,183,106,.35)}

@media (max-width: 980px){
  .hero h1{font-size:36px}
  .heroBar{
    grid-template-columns: 1fr 1fr;
  }
  .flowCard{
    grid-template-columns: 1fr;
  }
  .flowAside{border-right:0; border-bottom:1px solid var(--line)}
  .grid{grid-template-columns: 1fr}
  .field--wide{grid-column: auto}
  .room{grid-template-columns: 1fr}
  .room__media{height:150px}
	.flowWrap{
		margin-top:50px;
	}
}


/* Validation UI */
.field-error {
  border: 1px solid #ef4444 !important;
  background: rgba(239, 68, 68, 0.06) !important;
}

.field-error:focus {
  outline: 3px solid rgba(239, 68, 68, 0.18);
  outline-offset: 2px;
}

/* optional: small shake to draw attention */
.shake {
  animation: shake 0.25s linear 0s 2;
}
@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  50% { transform: translateX(4px); }
  75% { transform: translateX(-3px); }
  100% { transform: translateX(0); }
}