.booking-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  background: #1f2b35;
  color: #f5f5f5;
}

.booking-container h1 {
  text-align: center;
  color: #ffd700;
  font-size: 2.5em;
  margin-bottom: 40px;
}

.booking-progress {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  position: relative;
}

.booking-progress::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 25%;
  right: 25%;
  height: 2px;
  background: #444;
  z-index: 1;
}

.step {
  background: #444;
  color: #ccc;
  padding: 15px 25px;
  border-radius: 25px;
  font-weight: 600;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.step.active {
  background: #ffd700;
  color: #1f2b35;
}

.step.completed {
  background: #4CAF50;
  color: white;
}

.booking-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.1);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.3s ease-in;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #ffd700;
}

.location-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #2c3e50;
  border: 1px solid #444;
  border-radius: 8px;
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
  display: none;
}

.suggestion-item {
  padding: 12px 16px;
  cursor: pointer;
  color: #f5f5f5;
  border-bottom: 1px solid #444;
  transition: background-color 0.2s;
}

.suggestion-item:hover {
  background-color: #34495e;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #444;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #f5f5f5;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffd700;
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.payment-option {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 15px;
  border: 2px solid #444;
  border-radius: 8px;
  transition: all 0.3s;
}

.payment-option:hover {
  border-color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
}

.payment-option input[type="radio"] {
  margin-right: 10px;
}

.form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.btn-primary,
.btn-secondary {
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary {
  background: #ffd700;
  color: #1f2b35;
}

.btn-primary:hover {
  background: #e6c200;
  transform: translateY(-2px);
}

.btn-secondary {
  background: #444;
  color: #f5f5f5;
}

.btn-secondary:hover {
  background: #555;
  transform: translateY(-2px);
}

.booking-summary {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
}

.summary-section {
  margin-bottom: 25px;
}

.summary-section h3 {
  color: #ffd700;
  margin-bottom: 15px;
  font-size: 1.3em;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #444;
}

.summary-item:last-child {
  border-bottom: none;
}

.booking-ref-display {
  background: #2c3e50;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffd700;
  border: 2px solid #ffd700;
}

.security-note {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid #4CAF50;
  padding: 15px;
  border-radius: 8px;
  color: #4CAF50;
  font-size: 14px;
  margin-top: 20px;
}

.terms-agreement {
  margin-top: 30px;
  padding: 20px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid #ffd700;
  border-radius: 8px;
}

.terms-agreement label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.terms-agreement input[type="checkbox"] {
  margin-right: 10px;
}

.terms-agreement a {
  color: #ffd700;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .booking-progress {
    flex-direction: column;
    gap: 10px;
  }
  
  .booking-progress::before {
    display: none;
  }
  
  .booking-form {
    padding: 20px;
  }
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #444;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  color: #1f2b35;
  font-size: 1em;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffd700;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.location-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}

.suggestion-item {
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  color: #333;
}

.suggestion-item:hover {
  background: #f5f5f5;
}

.price-estimate {
  margin: 30px 0;
}

.estimate-box {
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid #ffd700;
  border-radius: 15px;
  padding: 25px;
}

.estimate-box h3 {
  color: #ffd700;
  margin-bottom: 15px;
  text-align: center;
}

.price-breakdown {
  space-y: 10px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.price-total {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  font-size: 1.2em;
  color: #ffd700;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 2px solid #ffd700;
}

.payment-section {
  margin: 30px 0;
}

.credit-card-section {
  margin-top: 30px;
  padding: 25px;
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid #ffd700;
  border-radius: 15px;
}

.credit-card-section h3 {
  color: #ffd700;
  margin-bottom: 20px;
  text-align: center;
}

.required {
  font-size: 0.8em;
  color: #ff6b6b;
  font-weight: normal;
}

.credit-card-section .form-group input {
  background: rgba(255, 255, 255, 0.95);
}

.security-note {
  margin-top: 20px;
  padding: 15px;
  background: rgba(0, 255, 0, 0.1);
  border: 1px solid #4CAF50;
  border-radius: 8px;
  font-size: 0.9em;
  color: #4CAF50;
  text-align: center;
}

.payment-options {
  display: grid;
  gap: 15px;
}

.payment-option {
  display: flex;
  align-items: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid #444;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.payment-option:hover {
  border-color: #ffd700;
}

.payment-option input[type="radio"] {
  margin-right: 15px;
  width: auto;
}

.booking-summary {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
}

.summary-section {
  margin-bottom: 25px;
}

.summary-section h3 {
  color: #ffd700;
  margin-bottom: 15px;
  border-bottom: 1px solid #ffd700;
  padding-bottom: 8px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-total {
  text-align: center;
  font-size: 2em;
  font-weight: bold;
  color: #ffd700;
}

.booking-ref-display {
  text-align: center;
  font-size: 1.4em;
  font-weight: bold;
  color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
  padding: 15px;
  border-radius: 10px;
  border: 2px solid #ffd700;
  margin: 10px 0;
}

.terms-agreement {
  text-align: center;
}

.terms-agreement label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.terms-agreement a {
  color: #ffd700;
  text-decoration: none;
}

.form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  gap: 20px;
}

.btn-primary, .btn-secondary {
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  max-width: 200px;
}

.btn-primary {
  background: #ffd700;
  color: #1f2b35;
}

.btn-primary:hover {
  background: #ffcf00;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
}

.btn-secondary:hover {
  background: #ffd700;
  color: #1f2b35;
}

@media (max-width: 768px) {
  .booking-progress {
    flex-wrap: wrap;
    gap: 10px;
  }

  .step {
    font-size: 0.9em;
    padding: 10px 15px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .booking-form {
    padding: 20px;
  }

  .form-navigation {
    flex-direction: column;
  }

  .btn-primary, .btn-secondary {
    max-width: 100%;
  }
}