/**
 * Bookings page — Simple Truth / Aster dark theme (matches index, discover tone)
 */
.page-bookings {
  background: #18181b;
}

.page-bookings .wrapper {
  background: #18181b;
}

.page-bookings .booking-hero {
  position: relative;
  text-align: center;
  min-height: min(88vh, 920px);
  min-height: min(88dvh, 920px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(72px, 12vh, 140px) 20px clamp(56px, 8vh, 96px);
  color: #fff;
  background-image: linear-gradient(
      160deg,
      rgba(10, 10, 14, 0.94) 0%,
      rgba(24, 24, 30, 0.88) 45%,
      rgba(235, 97, 101, 0.12) 100%
    ),
    url('../../h3.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.page-bookings .booking-hero .container {
  width: 100%;
}

.page-bookings .booking-hero + .section {
  margin-top: 0;
}

.page-bookings .booking-hero .h-title {
  color: #fff !important;
}

.page-bookings .booking-hero .h-subtitle {
  color: rgba(255, 255, 255, 0.82) !important;
  max-width: 36em;
  margin-left: auto;
  margin-right: auto;
}

.page-bookings .st-booking-section {
  background: #18181b;
  padding-top: 70px;
  padding-bottom: 70px;
}

.page-bookings .st-booking-section--alt {
  background: #121215;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-bookings .st-booking-section .h-titles .h-title {
  color: #fff !important;
}

.page-bookings .st-booking-section .h-titles .h-subtitle {
  color: rgba(192, 192, 199, 0.9) !important;
}

.page-bookings .booking-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.page-bookings .st-step-card {
  background: linear-gradient(180deg, #222228 0%, #1a1a1f 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.page-bookings .st-step-card:hover {
  border-color: rgba(235, 97, 101, 0.35);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.page-bookings .st-step-num {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #eb6165 0%, #c44e52 100%);
  box-shadow: 0 6px 20px rgba(235, 97, 101, 0.35);
}

.page-bookings .st-step-card h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.3;
}

.page-bookings .st-step-card p {
  color: rgba(192, 192, 199, 0.92);
  line-height: 1.65;
  margin: 0;
  font-size: 15px;
}

.page-bookings .st-booking-form-wrap {
  background: linear-gradient(180deg, #222228 0%, #1a1a1f 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: clamp(32px, 5vw, 48px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.page-bookings .st-booking-form-wrap > h2 {
  text-align: center;
  margin: 0 0 32px;
  color: #fff;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
}

.page-bookings .st-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .page-bookings .st-form-row {
    grid-template-columns: 1fr;
  }
}

.page-bookings .st-form-group {
  margin-bottom: 22px;
}

.page-bookings .st-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.page-bookings .st-form-group input,
.page-bookings .st-form-group select,
.page-bookings .st-form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 16px;
  color: #eaeaea;
  background: #0f0f12;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-bookings .st-form-group input::placeholder,
.page-bookings .st-form-group textarea::placeholder {
  color: rgba(192, 192, 199, 0.45);
}

.page-bookings .st-form-group input:focus,
.page-bookings .st-form-group select:focus,
.page-bookings .st-form-group textarea:focus {
  outline: none;
  border-color: rgba(235, 97, 101, 0.65);
  box-shadow: 0 0 0 3px rgba(235, 97, 101, 0.15);
}

.page-bookings .st-form-group select {
  cursor: pointer;
  appearance: auto;
}

.page-bookings .st-form-group select option {
  background: #1a1a1f;
  color: #eaeaea;
}

.page-bookings .btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 8px;
  padding: 16px 28px;
  border: none;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  color: #fff !important;
  background: linear-gradient(135deg, #eb6165 0%, #d64d51 100%);
  box-shadow: 0 8px 28px rgba(235, 97, 101, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-bookings .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(235, 97, 101, 0.45);
  color: #fff !important;
}

.page-bookings .st-sidebar-card {
  background: linear-gradient(180deg, #222228 0%, #1a1a1f 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 26px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.page-bookings .st-sidebar-card h3 {
  color: #fff;
  margin: 0 0 20px;
  font-size: 22px;
  font-weight: 700;
}

.page-bookings .st-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.page-bookings .st-features-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(192, 192, 199, 0.95);
  font-size: 15px;
}

.page-bookings .st-features-list li:last-child {
  border-bottom: none;
}

.page-bookings .st-features-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #eb6165;
  box-shadow: 0 0 10px rgba(235, 97, 101, 0.5);
}

.page-bookings .st-quick-contact {
  margin-top: 8px;
  padding: 22px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.page-bookings .st-quick-contact h4 {
  color: #eb6165;
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
}

.page-bookings .st-quick-contact p {
  color: rgba(192, 192, 199, 0.92);
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.5;
}

.page-bookings .st-quick-contact p:last-child {
  margin-bottom: 0;
}

.page-bookings .success-message {
  display: none;
  padding: 18px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  background: rgba(46, 125, 90, 0.2);
  border: 1px solid rgba(72, 180, 120, 0.45);
  color: #b8e6c8;
}

.page-bookings .error-message {
  display: none;
  padding: 18px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  background: rgba(180, 50, 50, 0.15);
  border: 1px solid rgba(235, 97, 101, 0.45);
  color: #f0b4b6;
}

.page-bookings .st-contact-grid {
  margin-top: 40px;
}

.page-bookings .st-contact-grid .st-step-card .st-step-num {
  font-size: 22px;
}

.page-bookings .st-contact-grid .st-step-card .st-step-num i {
  color: #fff;
}

.page-bookings .st-contact-grid .st-step-card p {
  color: rgba(192, 192, 199, 0.95);
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.5;
}

.page-bookings .st-contact-grid .st-step-card p:last-child {
  margin-bottom: 0;
}

.page-bookings .st-contact-grid .st-step-card p strong {
  color: #fff;
}

.page-bookings .st-sidebar-card {
  margin-bottom: 40px;
}

@media screen and (min-width: 992px) {
  .page-bookings .st-sidebar-card {
    margin-bottom: 0;
  }
}
