/* Bottom Sheet Custom Modal */
.bottom-sheet-overlay{
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:rgba(0,0,0,0.5);
  opacity:0;
  visibility:hidden;
  transition:opacity 0.3s ease, visibility 0.3s ease;
  z-index:1040;
}
.bottom-sheet-overlay.active{
  opacity:1;
  visibility:visible;
}

.bottom-sheet{
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  background:#fff;
  border-radius:20px 20px 0 0;
  box-shadow:0 -4px 24px rgba(0,0,0,0.15);
  transform:translateY(100%);
  transition:transform 0.3s ease-out;
  z-index:1060;
  max-height:90vh;
  overflow-y:auto;
}
.bottom-sheet.active{
  transform:translateY(0);
}

.bottom-sheet-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px;
  border-bottom:1px solid #e5e7eb;
}
.bottom-sheet-title{
  font-size:18px;
  font-weight:700;
  color:#111;
  margin:0;
}
.bottom-sheet-close{
  background:none;
  border:none;
  font-size:24px;
  color:#6b7280;
  cursor:pointer;
  padding:0;
  width:32px;
  height:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:color 0.2s ease;
}
.bottom-sheet-close:hover{
  color:#111;
}

.bottom-sheet-body{
  padding:20px;
  position:relative;
}

/* Calendar in bottom sheet */
.bottom-sheet-calendar .flatpickr-calendar{
  width:100% !important;
  box-shadow:none !important;
  border:none !important;
}
.bottom-sheet-calendar .flatpickr-innerContainer{
  display:block !important;
}
.bottom-sheet-calendar .flatpickr-months{
  padding:10px 0;
}
.bottom-sheet-calendar .flatpickr-current-month{
  font-size:16px;
  font-weight:700;
}
.bottom-sheet-calendar .flatpickr-day{
  border-radius:8px;
  font-weight:600;
}
.bottom-sheet-calendar .flatpickr-day.selected{
  background:#1e40af;
  border-color:#1e40af;
}
.bottom-sheet-calendar .flatpickr-day.today{
  border-color:#1e40af;
}

/* Includes in bottom sheet */
.bottom-sheet-includes{
  display:flex;
  flex-direction:column;
  gap:16px;
  background:#f0fdf4;
  padding:16px;
  border-radius:12px;
}
.include-item-inline{
  display:flex;
  align-items:flex-start;
  gap:12px;
}
.include-item-inline i{
  color:#10b981;
  font-size:20px;
  flex-shrink:0;
  margin-top:2px;
}
.include-text-inline{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.include-title-inline{
  font-weight:700;
  font-size:14px;
  color:#111;
}
.include-desc-inline{
  font-size:13px;
  color:#6b7280;
  line-height:1.4;
}

/* Bottom Sheet Steps */
.bottom-sheet-step{
  display:none;
}
.bottom-sheet-step.active{
  display:block;
  animation:slideIn 0.3s ease;
}
@keyframes slideIn{
  from{
    opacity:0;
    transform:translateY(20px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* Bottom Sheet Buttons */
.bottom-sheet-buttons{
  display:flex;
  align-items:center;
  gap:12px;
}
.btn-back-bs{
  width:48px;
  height:48px;
  border-radius:50%;
  border:none;
  background:#f3f4f6;
  color:#111;
  font-size:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:all 0.2s ease;
  flex-shrink:0;
}
.btn-back-bs:hover{
  background:#e5e7eb;
}

/* Travelers Selection */
.travelers-selection{
  display:flex;
  flex-direction:column;
  gap:20px;
}
.traveler-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 0;
  border-bottom:1px solid #e5e7eb;
}
.traveler-row:last-child{
  border-bottom:none;
}
.traveler-info{
  flex:1;
}
.traveler-type{
  font-weight:700;
  font-size:16px;
  color:#111;
  margin-bottom:4px;
}
.traveler-limit{
  font-size:13px;
  color:#9ca3af;
}
.traveler-controls{
  display:flex;
  align-items:center;
  gap:16px;
}
.btn-counter-bs{
  width:40px;
  height:40px;
  border-radius:50%;
  border:2px solid #e5e7eb;
  background:#fff;
  color:#111;
  font-size:20px;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:all 0.2s ease;
}
.btn-counter-bs:hover{
  border-color:#ef4444;
  color:#ef4444;
}
.btn-counter-bs:disabled{
  opacity:0.3;
  cursor:not-allowed;
}
.traveler-count-bs{
  font-size:18px;
  font-weight:700;
  color:#111;
  min-width:30px;
  text-align:center;
}

/* Transfer Section */
.transfer-section .form-label{
  font-size:14px;
  color:#111;
  margin-bottom:8px;
}
.transfer-section .form-select{
  border:1px solid #e5e7eb;
  border-radius:8px;
  padding:12px 16px;
  font-size:16px;
}
#bsStep3 .form-check{
  display:flex;
  align-items:center;
  padding:0;
}
#bsStep3 .form-check-input{
  width:20px;
  height:20px;
  margin:0 10px 0 0;
  flex-shrink:0;
}
#bsStep3 .form-check-label{
  font-size:14px;
  color:#111;
  margin:0;
  cursor:pointer;
}

/* Back Button for Summary */
.btn-back-bs-summary{
  width:40px;
  height:40px;
  border-radius:50%;
  border:none;
  background:#f3f4f6;
  color:#111;
  font-size:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:all 0.2s ease;
  margin-bottom:20px;
}
.btn-back-bs-summary:hover{
  background:#e5e7eb;
}

/* Booking Summary */
.booking-summary{
  background:#f9fafb;
  padding:20px;
  border-radius:12px;
}
.summary-title{
  font-size:18px;
  font-weight:700;
  color:#111;
}
.summary-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 0;
  border-bottom:1px solid #e5e7eb;
}
.summary-row:last-of-type{
  border-bottom:none;
}
.summary-label{
  font-size:14px;
  color:#6b7280;
}
.summary-value{
  font-size:14px;
  font-weight:600;
  color:#111;
}
.summary-price{
  background:#fff;
  padding:16px;
  border-radius:8px;
  margin-top:16px;
}
