.booking-form {
  font-family: 'Segoe UI', sans-serif;
  font-size: 1.05rem;
  margin-top: 75px;
  margin-bottom: 75px;
}

.booking-form .container {
  display: flex;
  max-width: 1300px;
  
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.booking-form .form-section {
  flex: 1;
  padding: 2rem;
}

.booking-form .image-section {
  width: 40%;
  background-color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-form .image-section img {
  max-width: 90%;
  border-radius: 16px;
}

.booking-form h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #0663b7;
}

.booking-form label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 18px;
}

.booking-form input[type='checkbox'],
.booking-form input[type='radio'] {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  accent-color: #2563eb;
}

.booking-form input[type='text'],
.booking-form input[type='email'],
.booking-form input[type='date'],
.booking-form textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  margin-top: 0.2rem;
  margin-bottom: 1rem;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font-size: 1rem;
}

.booking-form textarea {
  resize: vertical;
  min-height: 80px;
}

.booking-form button {
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background-color: #2563eb;
  color: white;
  font-weight: 500;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.booking-form button:hover {
  background-color: #1e40af;
}

.booking-form .step {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.booking-form .step.active {
  display: block;
}

.booking-form input:invalid,
.booking-form textarea:invalid {
  border-color: #ef4444;
}

.booking-form .invalid {
  border-color: #ef4444 !important;
}

/* Fortschrittsbalken */
.booking-form .progressbar {
  margin-bottom: 3rem;
  position: relative;
  height: 16px;
  background: #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}

.booking-form .progressbar .progress {
  height: 100%;
  background-color: #2563eb;
  transition: width 0.3s ease-in-out;
}

.booking-form .progress-steps {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: -50px; /* verschiebt Labels über den Balken */
  left: 0;
  right: 0;
  padding: 0 0.5rem;
  z-index: 3;
}

.booking-form .step-marker-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 14.28%; /* 100% / 7 Schritte */
  position: relative;
}

.booking-form .step-label {
	margin-bottom: 25px;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: #6b7280;
  text-align: center;
  white-space: nowrap;
}

.booking-form .step-marker {
  width: 24px;
  height: 24px;
  background: #d1d5db;
  border-radius: 50%;
  z-index: 2;
  cursor: pointer;
  transition: background-color 0.3s;
}

.booking-form .step-marker.active {
  background-color: #2563eb;
}

.booking-form .step-marker-wrapper.active .step-label {
  color: #2563eb;
  font-weight: 400;
}

.booking-form .g-recaptcha {
  margin-top: 1rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.booking-form .error-msg {
  display: none;
  color: #dc2626;
  font-size: 12px;
}

.booking-form .invalid + .error-msg {
  display: block;
}


.error-msg {
  display: none;
  color: red;
  font-size: 14px;
  font-weight: 400;
}

.invalid .error-msg {
  display: block;
}


.booking-form input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 0.6rem 0.8rem;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font-size: 1rem;
  background-color: white;
  cursor: pointer;
  width: 100%;
}

.booking-form .date-group {
  margin-bottom: 1rem;
}


#form-result {
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: #166534;
  text-align: center;
}

.recaptcha-wrapper {
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.g-recaptcha {
  transform: scale(1);
  transform-origin: 0 0;
}








/* RESPONSIVE ANPASSUNG */
@media (max-width: 992px) {
  .booking-form .container {
    flex-direction: column;
  }

  .booking-form .image-section {
    width: 100%;
    padding: 1rem;
    order: -1;
  }

  .booking-form .progress-steps {
    top: -70px;
    flex-wrap: wrap;
    row-gap: 12px;
  }

  .booking-form .step-marker-wrapper {
    width: 32%;
    margin-bottom: 1rem;
  }

  .booking-form .step-label {
    font-size: 0.75rem;
  }
}


textarea.g-recaptcha-response {
  display: none !important;
  visibility: hidden !important;
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  height: 0 !important;
  width: 0 !important;
  opacity: 0 !important;
  pointer-events: none;
}