/* ========== Layout ========== */
.fbp-form {
  max-width: 1100px;
  margin: 40px auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  font-family: "Segoe UI", Roboto, sans-serif;
}

.fbp-heading {
  text-align: center;
  font-size: 26px;
  margin-bottom: 20px;
}

/* Steps */
.fbp-steps {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px !important;
  margin: auto;
  max-width: 50%;
}
.fbp-steps .fbp-step {
  flex: 1;
  padding: 12px;
  text-align: center;
  background: #f3f4f6;
  color: #555;
  font-weight: 600;
  cursor: pointer;
  border-radius: 50px;
}
.fbp-steps .fbp-step.active {
  color: #fff;
}

/* Container with Sidebar */
.fbp-container {
  display: flex;
  gap: 25px;
}
.fbp-main {
  flex: 2;
}
.fbp-sidebar {
  flex: 1;
}
.fbp-card {
  background: #f9fafb;
  padding: 18px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  margin-bottom: 20px;
}
.fbp-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #333;
}

/* Grid for inputs */
.fbp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.fbp-input label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #444;
}
.fbp-input input,
.fbp-input select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  transition: border-color .2s, box-shadow .2s;
}
.fbp-input input:focus,
.fbp-input select:focus {
  border-color: #0073aa;
  box-shadow: 0 0 0 2px rgba(0,115,170,0.15);
  outline: none;
}

/* Step content */
.fbp-step-content {
  display: none;
}
.fbp-step-content.active {
  display: block;
}

/* Navigation buttons */
.fbp-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.fbp-navigation button {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}
.fbp-navigation .prev {
  background: #e5e7eb;
  color: #333;
}
.fbp-navigation .next {
  background: #0073aa;
  color: #fff;
}
.fbp-navigation .submit {
  background: #22c55e;
  color: #fff;
  display: none;
}
.fbp-navigation button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ========== Enhanced Flight Search Results Integration ========== */
.fbp-search-results-integration {
  margin-top: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #007cba;
}

.fbp-search-results-integration h3 {
  margin: 0 0 10px 0;
  color: #333;
  font-size: 18px;
}

.fbp-search-results-integration p {
  margin: 0 0 15px 0;
  color: #666;
  line-height: 1.5;
}

.fbp-search-results-link {
  display: inline-block;
  background: #007cba;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.fbp-search-results-link:hover {
  background: #005a87;
  transform: translateY(-2px);
  color: white;
}

/* Integration with booking form */
.fbp-booking-form-container .fbp-search-integration {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border: 1px solid #90caf9;
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
  text-align: center;
}

.fbp-search-integration h4 {
  margin: 0 0 10px 0;
  color: #1976d2;
}

.fbp-search-integration p {
  margin: 0 0 15px 0;
  color: #424242;
}
