/* ===============================
   BOOKING WIDGET (WRAPPER)
================================ */
.booking-widget{
  max-width:1200px;
  margin:20px auto;
  padding:0 16px;
}




/* ===============================
   PICKUP BAR
================================ */
.pickup-bar{
  display:flex;
  align-items:flex-end;
  gap:16px;
  background:linear-gradient(135deg,#ffffff,#f8fafc);
  padding:18px;
  border-radius:22px;
  box-shadow:
    0 20px 45px rgba(0,0,0,.14),
    inset 0 1px 0 rgba(255,255,255,.9);
}

/* ===============================
   PICKUP FIELD
================================ */
.pickup-field{
  flex:1;
}

.pickup-field label{
  display:block;
  font-size:13px;
  font-weight:700;
  color:#374151;
  margin-bottom:6px;
}

.pickup-field input{
  width:100%;
  padding:15px 18px;
  border-radius:16px;
  border:1px solid #e5e7eb;
  font-size:15px;
  background:#fff;
  transition:.25s;
}

.pickup-field input:focus{
  outline:none;
  border-color:#dc2626;
  box-shadow:0 0 0 4px rgba(220,38,38,.15);
}

/* ===============================
   SWAP ICON
================================ */
.swap-icon{
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:linear-gradient(135deg,#fee2e2,#ffffff);
  color:#b91c1c;
  font-size:18px;
  cursor:pointer;
  box-shadow:0 10px 22px rgba(220,38,38,.25);
  transition:.25s;
}

.swap-icon:hover{
  transform:rotate(180deg);
}

/* ===============================
   SEARCH BUTTON
================================ */
.search-btn{
  background:linear-gradient(135deg,#dc2626,#b91c1c);
  color:#fff;
  border:none;
  padding:15px 26px;
  border-radius:18px;
  font-size:15px;
  font-weight:800;
  cursor:pointer;
  white-space:nowrap;
  box-shadow:0 14px 30px rgba(220,38,38,.4);
  transition:.25s;
}

.search-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 36px rgba(220,38,38,.5);
}

/* ===============================
   MOBILE RESPONSIVE
================================ */
@media(max-width:768px){
  .pickup-bar{
    flex-direction:column;
    align-items:stretch;
    gap:14px;
  }

  .swap-icon{
    align-self:center;
  }

  .search-btn{
    width:100%;
  }
}


/* pickup wrapper */
.location-field{
  position: relative;
}

/* icon button */
.location-btn{
  position: absolute;
  right: 14px;
  top: 51px;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg,#ff5722,#ff3d00);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(255,87,34,.45);
  transition: all .25s ease;
}

/* hover effect */
.location-btn:hover{
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 10px 22px rgba(255,87,34,.65);
}

/* input padding adjust */
.location-field input{
  padding-right: 55px;
}


.location-icon{
  width:18px;
  height:18px;
  fill:#fff;
}

