/* Booking-specific styles */
.section {
  padding: 80px 6vw;
  position: relative;
  min-height: 420px;
  display: flex;
  justify-content: center;
}

.booking-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.headline {
  font-size: 44px;
  margin: 0 0 12px;
  line-height: 1.02;
  color: var(--white);
  font-weight: 800;
}

.lead {
  color: var(--muted);
  margin: 16px 0 22px;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}

.form-card {
  max-width: 720px;
  background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.01));
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
  margin: 20px auto;
  position: relative;
  transition: transform 200ms ease;
  transform-style: preserve-3d;
  cursor: grab;
}

.form-card:active {
  cursor: grabbing;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.form-row label {
  font-size: 13px;
  color: var(--muted);
  text-align: left;
}

.form-row input,
.form-row select,
.form-row textarea {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--white);
  padding: 10px 12px;
  border-radius: 8px;
  outline: none;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(38,208,122,0.06);
}

.form-row select {
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="none" stroke="%239b9b9b"><path d="M2 4l4 4 4-4"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 12px;
  padding: 11px 18px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(180deg, var(--accent), #0fbf5f);
  color: #06110a;
  box-shadow: 0 10px 30px rgba(38,208,122,0.12);
}

.btn-primary:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(38,208,122,0.16);
}

#booking-result {
  margin-top: 16px;
}


/* Responsive */
@media (max-width: 700px) {
  .section {
    padding: 40px 4vw;
  }

  .form-card {
    padding: 16px;
  }
}

/* footer */
.site-footer{ padding:40px 6vw; display:flex; justify-content:space-between; align-items:center; border-top:1px solid rgba(255,255,255,0.03); color:var(--muted) }
