/* ── Booking form ── */
.booking {
  --font-sans: Inter, system-ui, sans-serif;
  --white: #ffffff;
  --purple: #6d28d9;
  --purple-dark: #5b21b6;
  --purple-light: #f5f3ff;
  --purple-selected: #ddd6fe;
  --input-border: #424242;
  --form-text: #f1f1f3;
  --gray-inactive: #2e2e3e;
  --gray-muted: #6b6b80;
  --booking-bg: #212121;
  --purple-light: #1e1030;
  --purple-selected: #3b1d6e;
  text-align: left;
  margin: 0 auto;
  width: 460px;
  max-width: 100%;
  background: var(--booking-bg);
  border: 1px solid #2e2e3e;
  border-radius: 10px;
  padding: 1.15rem 1.25rem 1.25rem;
  box-shadow: 0 4px 40px rgba(109,40,217,0.2);
  position: relative;
  overflow: visible;
}

/* Curtain overlay for form→calendar transition */
.booking__curtain {
  position: absolute;
  inset: 0;
  background: #212121;
  z-index: 50;
  border-radius: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

.booking__curtain.is-down {
  opacity: 1;
  pointer-events: all;
}

.booking__progress {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 0;
}

.booking__divider {
  height: 1px;
  background: #2e2e3e;
  border: none;
  margin: 1rem -1.25rem 1.15rem;
}

.booking__step {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.45rem;
  text-align: left;
}

.booking__step-dot {
  display: block;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #424242;
  transition: background 0.25s, transform 0.25s;
}

.booking__step--active .booking__step-dot {
  background: var(--purple);
  transform: scale(1.2);
}

.booking__step--done .booking__step-dot {
  background: #424242;
  transform: none;
}

.booking__step-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gray-muted);
}

.booking__step--active .booking__step-label {
  color: var(--purple);
  font-weight: 600;
}

.booking__step--done .booking__step-label {
  color: var(--gray-muted);
  font-weight: 500;
}

.booking__panel--form.is-submitted #booking-form-content {
  display: none;
}

#booking-form-content {
  transition: opacity 0.2s ease;
}

.booking__calendar-meta {
  display: none;
  margin-bottom: 0.85rem;
}

.booking__panel--form.is-submitted .booking__calendar-meta {
  display: block;
}

.booking__panel--form.is-submitted .booking__calendar-wrap {
  animation: none;
}

@keyframes bookingStepIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.booking__calendar-meta-title {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--form-text);
  line-height: 1.3;
  margin: 0 0 0.45rem;
}

.booking__calendar-meta-duration,
.booking__calendar-meta-detail {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--form-text);
  line-height: 1.35;
  margin: 0 0 0.3rem;
}

.booking__calendar-meta-detail { margin-bottom: 0; }

.booking__calendar-meta-duration .booking__calendar-meta-icon,
.booking__calendar-meta-detail .booking__calendar-meta-icon {
  color: var(--form-text);
}

.booking__calendar-meta-icon {
  width: 0.85rem;
  height: 0.85rem;
  flex-shrink: 0;
  color: #9ca3af;
}

.booking__panel--form {
  display: flex;
  flex-direction: column;
}

.booking__calendar-section {
  margin-top: 1rem;
  max-height: 120rem;
  opacity: 1;
  overflow: visible;
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease, margin-top 0.4s ease;
}

.booking__calendar-section.is-hidden {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  pointer-events: none;
}

.booking__title {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--form-text);
  line-height: 1.3;
  margin-bottom: 0.4rem;
  text-align: left;
}

.booking__intro {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: #c4c4c4;
  line-height: 1.55;
  text-align: left;
  margin-bottom: 0.9rem;
}

.booking__intro p + p { margin-top: 1.5em; }

.booking__fields {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

.booking__field { margin-bottom: 0.75rem; }
.booking__field:last-of-type { margin-bottom: 0; }

.booking__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--form-text);
  margin-bottom: 0.3rem;
}

.booking__input,
.booking__select {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--form-text);
  background: #303030;
  border: 1px solid #424242;
  border-radius: 7px;
  padding: 0.58rem 0.75rem;
  min-height: 2.55rem;
  transition: border-color 0.15s, border-width 0.15s, background 0.15s;
}

.booking__input::placeholder { color: #4b4b60; }
#first-name::placeholder, #last-name::placeholder, #email::placeholder { color: #909090; }

.booking__input:focus,
.form-combo__trigger:focus {
  outline: none;
  border-color: #7c3aed;
  border-width: 2px;
  padding: calc(0.58rem - 1px) calc(0.75rem - 1px);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.15);
}

.booking__field-error {
  display: none;
  font-size: 0.68rem;
  color: #dc2626;
  margin-top: 0.25rem;
}

.booking__field-error.is-visible { display: block; }

.phone-field {
  display: flex;
  align-items: stretch;
  min-height: 2.55rem;
  background: #303030;
  border: 1px solid #424242;
  border-radius: 10px;
  position: relative;
}

.phone-field.is-empty-pulse {
  animation: phone-border-pulse 1.2s ease-in-out infinite;
}

@keyframes phone-border-pulse {
  0%, 16.67%, 83.33%, 100% { border-color: #424242; }
  50% { border-color: rgba(255, 255, 255, 0.55); }
}

.phone-field.is-empty-pulse:focus-within:not(.is-open) {
  animation: phone-border-pulse 1.2s ease-in-out infinite;
}

.phone-field.is-open {
  animation: none;
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124,58,237,0.15);
}

.phone-field:focus-within:not(.is-open):not(.is-empty-pulse) {
  border-color: #7c3aed;
  border-width: 2px;
}

.phone-field__input {
  flex: 1;
  min-width: 0;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--form-text);
  background: transparent;
  border: none;
  border-radius: 0 8px 8px 0;
  padding: 0.58rem 0.75rem;
}

.phone-field__input::placeholder { color: #4b4b60; }
.phone-field__input:focus { outline: none; box-shadow: none; }

.booking__phone-row { display: block; }

.country-combo {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-self: stretch;
}

.country-combo__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.35rem;
  min-width: 4.75rem;
  align-self: stretch;
  padding: 0 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--form-text);
  background: #303030;
  border: none;
  border-right: 1px solid #424242;
  border-radius: 8px 0 0 8px;
  cursor: pointer;
  transition: background 0.15s;
  box-shadow: none;
  white-space: nowrap;
}

.country-combo__trigger:hover,
.country-combo.is-open .country-combo__trigger {
  background: #333340;
  box-shadow: none;
}

.country-combo__flag { font-size: 1.15rem; line-height: 1; flex-shrink: 0; }
.country-combo__code { font-weight: 600; font-size: 0.82rem; flex-shrink: 0; }
.country-combo__chevron { font-size: 0.55rem; color: #6b7280; flex-shrink: 0; margin-left: auto; }

.country-combo__menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  z-index: 30;
  min-width: 100%;
  list-style: none;
  background: #2a2a2a;
  border: 1px solid #3d3d3d;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  padding: 0.3rem;
  margin: 0;
}

.country-combo__menu[hidden] { display: none; }

.country-combo__option {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  width: 100%;
  padding: 0.45rem 0.55rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--form-text);
  background: transparent;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: left;
}

.country-combo__option:hover,
.country-combo__option.is-selected {
  background: var(--purple-light);
}

.booking__name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.form-combo { position: relative; }
.form-combo.is-open { z-index: 200; }

#adspend-menu {
  top: auto;
  bottom: calc(100% + 0.35rem);
}

.form-combo__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.form-combo__label { color: var(--form-text); }
.form-combo__label.is-placeholder { color: #9ca3af; }
.form-combo__chevron { font-size: 0.65rem; color: #6b7280; flex-shrink: 0; margin-left: 0.5rem; }

.form-combo__menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  right: 0;
  z-index: 30;
  list-style: none;
  background: #2a2a2a;
  border: 1px solid #3d3d3d;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  padding: 0.3rem;
  margin: 0;
}

.form-combo.is-open > .form-combo__menu { display: block; }

.form-combo__option {
  display: block;
  width: 100%;
  padding: 0.55rem 0.65rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--form-text);
  background: transparent;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: left;
}

.form-combo__option:hover,
.form-combo__option.is-selected {
  background: var(--purple-light);
}

.form-combo.is-open .form-combo__trigger {
  border-color: rgba(0, 0, 0, 0.55);
  border-width: 2px;
  padding: calc(0.58rem - 1px) calc(0.75rem - 1px);
}

.booking__extra {
  display: none;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.booking__extra.is-visible {
  display: grid;
}

.booking__privacy {
  font-size: 0.68rem;
  line-height: 1.6;
  color: #6b7280;
  margin: 0.75rem 0 0.75rem;
}

.booking__privacy a {
  color: var(--form-text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.booking__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  background: var(--purple);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.booking__submit:hover {
  background: var(--purple-dark);
  transform: translateY(-1px);
}

.booking__submit svg { width: 0.95rem; height: 0.95rem; }

.booking__calendar-wrap {
  position: relative;
  background: #212121;
  border: none;
  border-radius: 10px;
  padding: 0.5rem 0.15rem 0.25rem;
  overflow: visible;
  font-family: var(--font-sans);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.booking__calendar-view {
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.booking__calendar-view[hidden] { display: none !important; }

.booking__calendar-view.is-entering {
  animation: bookingStepIn 0.24s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.booking__calendar-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  backdrop-filter: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  text-align: center;
  z-index: 2;
  border-radius: 10px;
  transition: opacity 0.3s, visibility 0.3s;
}

.booking__calendar-overlay p {
  background: #303030;
  border: 1px solid #424242;
  border-radius: 8px;
  padding: 0.6rem 1rem;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.5;
  max-width: 270px;
}

.booking__calendar-wrap--unlocked .booking__calendar-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.booking__calendar-wrap--locked .booking__calendar-nav button {
  pointer-events: none;
  opacity: 0.45;
}

.booking__calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
}

.booking__calendar-month {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--form-text);
}

.booking__calendar-nav {
  display: flex;
  gap: 0.35rem;
}

.booking__calendar-nav button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  border: 1px solid #3d3d3d;
  border-radius: 8px;
  background: #2a2a2a;
  color: var(--form-text);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.booking__calendar-nav button:hover {
  background: var(--purple-light);
  border-color: #bfdbfe;
  color: var(--purple-dark);
}

.booking__calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
}

.booking__cal-dayname {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gray-muted);
  text-align: center;
  padding: 0.35rem 0 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.booking__cal-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--form-text);
  cursor: default;
  padding: 0.15rem 0;
  transition: background 0.15s, color 0.15s;
}

.booking__cal-day-num { line-height: 1; }

.booking__cal-day-dot {
  width: 5px;
  height: 5px;
  border: none;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
  margin-top: 0;
}

.booking__cal-day--empty { visibility: hidden; }
.booking__cal-day--disabled { color: var(--gray-inactive); cursor: not-allowed; }
.booking__cal-day--disabled .booking__cal-day-dot { display: none; }
.booking__cal-day--available { cursor: pointer; }
.booking__cal-day--available:hover { background: rgba(124,58,237,0.2); }
.booking__cal-day--available:hover .booking__cal-day-dot { background: var(--purple-dark); }

.booking__cal-day--selected {
  background: var(--purple-light) !important;
  color: var(--purple-dark) !important;
  font-weight: 600;
}

.booking__cal-day--selected .booking__cal-day-dot { background: var(--purple-dark); }

.booking__times-panel {
  display: flex;
  flex-direction: column;
}

.booking__times-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #2e2e3e;
}

.booking__times-head .booking__times-date {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--form-text);
  line-height: 1.3;
}

.booking__times-head .booking__times-heading { display: none; }

.booking__confirm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
}

.booking__confirm-link {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--purple);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.booking__confirm-link:hover { color: var(--purple-dark); }

.booking__times-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  max-height: 14rem;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #424242 transparent;
}
.booking__times-list::-webkit-scrollbar { width: 4px; }
.booking__times-list::-webkit-scrollbar-thumb { background: #424242; border-radius: 999px; }

.booking__times-list::-webkit-scrollbar { width: 4px; }
.booking__times-list::-webkit-scrollbar-thumb { background: #424242; border-radius: 999px; }

.booking__times-grid {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.booking__time-slot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.72rem 0.9rem;
  min-height: 2.75rem;
  border: 1px solid #424242;
  border-radius: 10px;
  background: #303030;
  color: var(--form-text);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
  text-align: left;
}

.booking__time-slot-label { line-height: 1.2; }
.booking__time-slot-status { display: none; }

.booking__time-slot:hover:not(:disabled) {
  background: #3a3a3a;
  border-color: #555555;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.booking__time-slot--selected {
  background: var(--purple-light);
  border-color: var(--purple);
  color: #c4b5fd;
  font-weight: 600;
  box-shadow: none;
}

.booking__time-slot--loading {
  animation: slotPulse 0.7s ease-in-out infinite alternate;
}

@keyframes slotPulse {
  from { opacity: 1; }
  to   { opacity: 0.55; }
}

.booking__time-slot--booked,
.booking__time-slot--booked:disabled {
  background: #262626;
  border-color: #333333;
  color: #4b4b60;
  cursor: not-allowed;
  opacity: 1;
}

.booking__time-slot--booked .booking__time-slot-label {
  text-decoration: line-through;
  text-decoration-color: #4b4b60;
}

.booking__time-slot--booked:hover { background: #262626; box-shadow: none; }

.booking__confirm-panel {
  display: flex;
  flex-direction: column;
}

.booking__confirm-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking__confirm-greeting {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--form-text);
  margin: 0;
  line-height: 1.35;
}

.booking__confirm-details {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.85rem 0.9rem;
  background: #303030;
  border: 1px solid #424242;
  border-radius: 10px;
}

.booking__confirm-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  line-height: 1.35;
}

.booking__confirm-label { color: #888899; font-weight: 500; flex-shrink: 0; }
.booking__confirm-value { color: var(--form-text); font-weight: 600; text-align: right; }

.booking__confirm-next { padding-top: 0.15rem; }

.booking__confirm-next-title {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--form-text);
  margin: 0 0 0.35rem;
}

.booking__confirm-next-text {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: #6b7280;
  line-height: 1.45;
  margin: 0;
}

.booking__confirm-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  background: var(--purple);
  border: none;
  border-radius: 10px;
  padding: 0.78rem 1rem;
  min-height: 2.85rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.25rem;
}

.booking__confirm-btn:hover {
  background: var(--purple-dark);
  transform: translateY(-1px);
}

.booking__success {
  display: none;
  text-align: center;
  padding: 1.5rem 0.5rem;
  color: var(--form-text);
}

.booking__success.is-visible {
  display: block;
  animation: bookingStepIn 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.booking__success-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: var(--purple-light);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
}

.booking__success h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.booking__success p {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: #6b7280;
  line-height: 1.45;
  margin: 0;
}

@media (max-width: 540px) {
  .booking { max-width: 100%; padding: 1rem; }
  .booking__name-row { grid-template-columns: 1fr; }
}

.booking-section {
  margin-top: 3rem;
  padding: 0;
  background: transparent;
}

.hero-booking-intro {
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--hero-text, rgb(10, 14, 36));
  margin-top: 3.5rem;
  margin-bottom: 1.25rem;
}

.booking-section__inner {
  max-width: 520px;
  margin: 0 auto;
}

/* closedform — 12h/24h segmented pill toggle */
.closedform-toggle-pill {
  display: inline-flex;
  background: #2a2a2a;
  border-radius: 8px;
  padding: 3px;
  gap: 2px;
  flex-shrink: 0;
  margin-top: 0;
}

.closedform-toggle-btn {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.28rem 0.75rem;
  border-radius: 6px;
  border: none;
  background: transparent;
  color: #555566;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  line-height: 1.4;
}

.closedform-toggle-btn.is-active {
  background: #3a3a3a;
  color: var(--purple);
  box-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

/* times panel sits below calendar with separator */
.booking__times-panel {
  border-top: 1px solid #2e2e3e;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
}

/* autofill dark override */
.booking__input:-webkit-autofill,
.booking__input:-webkit-autofill:hover,
.booking__input:-webkit-autofill:focus,
.booking__input:-webkit-autofill:active,
.phone-field__input:-webkit-autofill,
.phone-field__input:-webkit-autofill:hover,
.phone-field__input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #303030 inset !important;
  -webkit-text-fill-color: #f1f1f3 !important;
  caret-color: #f1f1f3;
  transition: background-color 5000s ease-in-out 0s;
}

.hero-booking-intro {
  color: #0d0d0d;
}

.booking__intro p {
  color: #c4c4c4;
}
