/* Cevher Taksi reservation-request interface. */
.booking-page-header {
  padding: 118px 0 68px;
}

.booking-main {
  background: #f4f5f8;
  position: relative;
}

.booking-main::before {
  background: #ff9900;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.14) 0,
    rgba(255, 255, 255, 0.14) 1px,
    transparent 1px,
    transparent 6px
  );
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.18;
  position: absolute;
  top: 0;
  width: 14%;
}

.booking-main .container {
  position: relative;
}

.booking-layout {
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.75fr);
  align-items: start;
}

.booking-card,
.booking-summary {
  box-shadow: 0 14px 42px rgba(34, 34, 34, 0.1);
}

.booking-card {
  background: #fff;
  border-top: 4px solid #ff9900;
  padding: clamp(24px, 4vw, 42px);
}

.booking-card h2,
.booking-summary h2 {
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.22;
  margin: 0 0 10px;
}

.booking-card > p {
  color: #666;
  margin-bottom: 28px;
}

.booking-quick-select {
  border: 0;
  border-top: 1px solid #e7e7e7;
  margin: 0 0 30px;
  padding: 24px 0 0;
}

.booking-quick-select legend {
  color: #222;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.booking-quick-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.booking-quick-option {
  align-items: center;
  background: #f4f5f8;
  border: 1px solid #dedfe3;
  color: #222;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  justify-content: center;
  min-height: 44px;
  padding: 8px 14px;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.booking-quick-option:hover,
.booking-quick-option:focus-visible {
  background: #ff9900;
  border-color: #ff9900;
  color: #222;
  outline: 0;
}

.booking-map-picker {
  border-top: 1px solid #e7e7e7;
  margin: 0 0 30px;
  padding: 26px 0 0;
}

.booking-map-heading h3 {
  color: #222;
  font-size: 20px;
  line-height: 1.3;
  margin: 0 0 6px;
}

.booking-map-heading p {
  color: #666;
  line-height: 1.65;
  margin: 0;
}

.booking-map-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 14px;
}

.booking-map-target,
.booking-map-location {
  align-items: center;
  border: 1px solid #cdd0d5;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  justify-content: center;
  min-height: 44px;
  padding: 8px 14px;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.booking-map-target {
  background: #fff;
  color: #222;
}

.booking-map-target[aria-pressed="true"] {
  background: #ff9900;
  border-color: #ff9900;
  color: #222;
}

.booking-map-location {
  background: #222;
  border-color: #222;
  color: #fff;
  gap: 5px;
}

.booking-map-target:hover,
.booking-map-target:focus-visible,
.booking-map-location:hover,
.booking-map-location:focus-visible {
  border-color: #d87c00;
  box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.2);
  outline: 0;
}

.booking-map-location:hover,
.booking-map-location:focus-visible {
  background: #ff9900;
  color: #222;
}

.booking-map {
  border: 1px solid #cdd0d5;
  height: 340px;
  position: relative;
  width: 100%;
  z-index: 0;
}

.booking-map .leaflet-control-attribution {
  font-size: 11px;
}

.booking-map-status,
.booking-map-privacy,
.booking-map-fallback {
  color: #555;
  font-size: 14px;
  line-height: 1.5;
  margin: 10px 0 0;
}

.booking-map-fallback {
  color: #8a4b00;
}

.booking-map-privacy {
  color: #666;
  font-size: 12px;
  margin-top: 6px;
}

.booking-form-status {
  background: #fff7e8;
  border-left: 3px solid #ff9900;
  color: #4f4030;
  margin: 0 0 24px;
  padding: 13px 16px;
}

.booking-form-status[hidden] {
  display: none;
}

.booking-form-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-field {
  min-width: 0;
}

.booking-field--full {
  grid-column: 1 / -1;
}

.booking-field label {
  color: #222;
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  appearance: none;
  background-color: #fff;
  border: 1px solid #cdd0d5;
  border-radius: 0;
  color: #222;
  display: block;
  font: inherit;
  line-height: 1.4;
  min-height: 50px;
  padding: 12px 14px;
  width: 100%;
}

.booking-field select {
  appearance: auto;
}

.booking-field textarea {
  min-height: 116px;
  resize: vertical;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  border-color: #d87c00;
  box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.2);
  outline: 0;
}

.booking-field [aria-invalid="true"] {
  border-color: #b42318;
}

.booking-field-error {
  color: #b42318;
  display: block;
  font-size: 14px;
  line-height: 1.45;
  margin-top: 7px;
}

.booking-field-error[hidden] {
  display: none;
}

.booking-submit {
  align-items: center;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  margin-top: 30px;
  min-height: 54px;
  padding: 10px 24px;
  width: 100%;
}

.booking-submit:hover,
.booking-submit:focus-visible {
  background-color: #222;
  color: #fff;
  outline: 0;
}

.booking-summary {
  background-color: #222;
  background-image: url(../img/texture.png);
  border-top: 4px solid #ff9900;
  color: #d5d5d5;
  padding: clamp(24px, 3vw, 36px);
}

.booking-summary h2 {
  color: #fff;
}

.booking-summary > p {
  color: #d5d5d5;
  line-height: 1.7;
}

.booking-summary-list {
  list-style: none;
  margin: 26px 0;
  padding: 0;
}

.booking-summary-list li {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 15px 0;
}

.booking-summary-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.booking-summary-list strong {
  color: #ffb11b;
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.booking-summary .default-btn {
  background-color: #ff9900;
  color: #222;
  display: flex;
  justify-content: center;
  min-height: 48px;
  width: 100%;
}

.booking-summary .default-btn:hover,
.booking-summary .default-btn:focus-visible {
  background-color: #fff;
  color: #222;
}

.booking-privacy {
  color: #555;
  font-size: 15px;
  line-height: 1.65;
  margin: 26px 0 0;
}

@media (max-width: 991px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .booking-page-header {
    padding: 86px 0 48px;
  }

  .booking-main::before {
    width: 22%;
  }

  .booking-form-grid {
    grid-template-columns: 1fr;
  }

  .booking-field--full {
    grid-column: auto;
  }

  .booking-quick-option {
    width: 100%;
  }

  .booking-map-controls {
    display: grid;
    grid-template-columns: 1fr;
  }

  .booking-map {
    height: 300px;
  }
}
