:root{
  --bg: #f3f6fb;
  --card: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #d7e0ef;
  --primary: #2563eb;
  --primarySoft: #e7f0ff;
  --success: #22c55e;
  --inputBg: #f3f4f6;
}

body{
  background: var(--bg);
  color: var(--text);
}

/* ====== PAGE LAYOUT ====== */
.order-shell{
  min-height: 100vh;
  display: flex;
}

/* Left sidebar */
.order-sidebar{
  width: 260px;
  padding: 16px;
  border-right: 1px solid var(--line);
  background: #f7f9fd;
}

.step-item{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}

.step-item .step-left{
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-item.active{
  background: var(--primarySoft);
  border-color: #bcd3ff;
  color: #1d4ed8;
}

.step-item .arrow{
  font-size: 18px;
  opacity: .9;
}

/* Center content */
.order-main{
  flex: 1;
  padding: 22px 26px;
}

.page-title{
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 14px;
}

.section-label{
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

/* Inputs */
.input-soft{
  background-color: #c5d3c6;
  border: 0;
  height: 46px;
  border-radius: 8px;
  padding: 10px 14px;
}

.input-green{
  background: #fff;
  border: 2px solid var(--success);
  height: 46px;
  border-radius: 6px;
  padding: 10px 14px;
}

.input-green:focus{
  outline: none;
  box-shadow: none;
}

/* Pick/Drop blocks */
.block-row{
  display: grid;
  grid-template-columns: 46px 1fr 130px;
  gap: 12px;
  align-items: start;
  margin-top: 14px;
}

.pin{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top: 6px;
}

.pin.blue{
  background: #e8f1ff;
  color: #2563eb;
}

.pin.red{
  background: #ffe9ea;
  color: #ef4444;
}

/* Timeline dotted line */
.timeline{
  position: relative;
}

.timeline:before{
  content:"";
  position:absolute;
  left: 18px;
  top: 55px;
  bottom: 10px;
  border-left: 2px dotted #9bb7e6;
}

/* Suite small input */
.suite-label{
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.suite-input{
  height: 46px;
  border-radius: 8px;
  border: 0;
  background-color:#c5d3c6;
  padding: 10px 14px;
}

/* Time field with icon */
.time-wrap{
  position: relative;
}

.time-icon{
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #111827;
  opacity: .7;
}

/* Round trip */
.roundtrip{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 600;
}

/* Continue button bottom-right center section */
.action-row{
  display:flex;
  justify-content: flex-end;
  margin-top: 26px;
}

.btn-continue{
  background: #88a8e8;
  color: #fff;
  border: 0;
  padding: 14px 26px;
  border-radius: 22px;
  font-weight: 700;
}
.btn-continue:hover{ opacity: .95; }

/* Right map panel */
.order-map{
  width: 420px;
  background: #0b1220;
  position: relative;
}

.map-top{
  position:absolute;
  left: 14px;
  right: 14px;
  top: 12px;
  z-index: 3;
  color: #dbeafe;
  font-size: 13px;
  opacity: .9;
}

.map-price{
  position:absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  background: #eef2ff;
  color: #1e3a8a;
  border-radius: 10px;
  padding: 6px 10px;
  font-weight: 800;
}

.map-iframe{
  width: 100%;
  height: 100vh;
  border: 0;
  display: block;
  filter: saturate(1.05) contrast(1.05);
}

/* Responsive: map niche chala jaye */
@media (max-width: 1200px){
  .order-map{ display:none; }
}

@media (max-width: 768px){
  .order-shell{ flex-direction: column; }
  .order-sidebar{
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .step-item{ margin:0; }
}


.step-item {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 16px;
    text-decoration:none;
    font-weight:700;
    color:#334155;
    border-radius:8px;
    margin-bottom:6px;
}

.step-item.active {
    background:#e0f2fe;
    color:#1d4ed8;
}

.step-item.completed {
    background:#ecfdf5;
    color:#16a34a;
}

.step-item.disabled {
    pointer-events:none;
    opacity:0.4;
}

.step-item .arrow {
    font-weight:900;
}
