* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f2f2f2;
  color: #111;
}

.booking-wrapper {
  max-width: 1180px;
  margin: 0 auto;
  background: linear-gradient(90deg, #082c2f 0%, #0b3538 100%);
  min-height: 100vh;
  padding: 12px 16px 30px;
}

.top-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: center;
  color: #d6dde0;
  font-weight: 600;
  margin: 6px 0 20px;
}

.step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  opacity: .9;
}

.step span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #111;
  font-weight: 700;
}

.step.active span {
  background: #ff840f;
  color: #fff;
}

.step.active {
  color: #fff;
}

.top-tabs {
  display: flex;
  gap: 16px;
  margin: 6px 0 20px;
}

.tab-btn {
  border: none;
  background: #efefef;
  color: #111;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 18px;
  cursor: pointer;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.tab-btn.active {
  border-bottom: 4px solid #ff7f00;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.2fr .95fr;
  gap: 18px;
}

.card,
.map-card {
  background: #f4f4f4;
  border-radius: 16px;
  padding: 18px;
  min-height: 700px;
}

.card h2 {
  margin: 4px 0 24px;
  color: #ff9800;
  font-size: 20px;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.three-col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1f2d3d;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #d3d7db;
  background: transparent;
  padding: 12px 4px;
  font-size: 16px;
  color: #222;
  outline: none;
}

.field textarea {
  border: 1px solid #d3d7db;
  background: #fff;
  border-radius: 8px;
  padding: 12px;
  resize: vertical;
  min-height: 120px;
}

.section-pill {
  width: 100%;
  background: #ffa500;
  color: #fff;
  font-weight: 700;
  padding: 16px 14px;
  border-radius: 999px;
  margin: 14px 0 18px;
  font-size: 16px;
}

.radio-box {
  border: 1px solid #dfdfdf;
  background: #f8f8f8;
  border-radius: 14px;
  padding: 18px 14px;
  margin-bottom: 16px;
}

.radio-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0;
  font-size: 16px;
}

.step-actions {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.next-btn {
  background: #ff9900;
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}

.back-btn {
  background: #ddd;
  color: #111;
  border: none;
  padding: 14px 30px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}

.submit-btn {
  background: #0f4b4f;
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}

#map {
  width: 100%;
  height: 420px;
  border-radius: 16px;
  background: #d7d7d7;
  margin-bottom: 14px;
}

.map-error {
  background: #fff4e5;
  color: #8a4b00;
  border: 1px solid #ffd39b;
  padding: 14px;
  border-radius: 10px;
  margin-bottom: 14px;
  font-size: 14px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.stat-box {
  background: #fafafa;
  border: 1px dashed #ddd;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.stat-box small {
  display: block;
  color: #6b7280;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-box strong {
  font-size: 24px;
  color: #000;
}

.summary-box {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 16px;
  line-height: 1.8;
  font-size: 15px;
  word-break: break-word;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  height: 0 !important;
  width: 0 !important;
}

.pac-container {
  z-index: 99999 !important;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  font-size: 14px;
}

@media (max-width: 991px) {
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .map-card {
    min-height: auto;
  }

  #map {
    height: 320px;
  }
}

@media (max-width: 767px) {
  .two-col,
  .three-col {
    grid-template-columns: 1fr;
  }

  .top-steps {
    justify-content: flex-start;
    gap: 14px;
  }

  .top-tabs {
    flex-wrap: wrap;
  }

  .booking-wrapper {
    padding: 10px;
  }

  .step-actions {
    flex-wrap: wrap;
  }

  .next-btn,
  .back-btn,
  .submit-btn {
    width: 100%;
  }
}