/* Booking Page Styles */

.booking-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 100px 2rem 2rem;
}

.booking-container {
  max-width: 900px;
  margin: 0 auto;
}

.booking-header {
  text-align: center;
  margin-bottom: 3rem;
}

.booking-header h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.booking-header p {
  color: #cccccc;
  font-size: 1.1rem;
}

.booking-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
  position: relative;
}

.booking-steps::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(0, 217, 255, 0.2);
  z-index: 0;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 50px;
  height: 50px;
  background: rgba(26, 26, 26, 0.8);
  border: 3px solid rgba(0, 217, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  font-weight: bold;
  font-size: 1.2rem;
  color: #666;
  transition: all 0.3s;
}

.step.active .step-number {
  background: linear-gradient(135deg, var(--primary-color), #0099cc);
  border-color: var(--primary-color);
  color: var(--bg-dark);
  box-shadow: 0 5px 20px rgba(0, 217, 255, 0.5);
}

.step.completed .step-number {
  background: var(--success);
  border-color: var(--success);
  color: var(--bg-dark);
}

.step-title {
  color: #666;
  font-size: 0.9rem;
  font-weight: 500;
}

.step.active .step-title {
  color: var(--primary-color);
}

.step.completed .step-title {
  color: var(--success);
}

.booking-form-container {
  background: rgba(26, 26, 26, 0.8);
  border: 2px solid var(--primary-color);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
}

.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);
  }
}

.step-title-main {
  font-size: 1.8rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  text-align: center;
}

.package-selection {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.package-option {
  background: rgba(0, 0, 0, 0.5);
  border: 3px solid rgba(0, 217, 255, 0.3);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.package-option:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.package-option.selected {
  border-color: var(--primary-color);
  background: rgba(0, 217, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
}

.package-option.selected::before {
  content: '✓';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-dark);
  font-weight: bold;
}

.package-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.package-option h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.package-option.bronze h3 {
  color: #CD7F32;
}

.package-option.silver h3 {
  color: #C0C0C0;
}

.package-option.gold h3 {
  color: #FFD700;
}

.package-features {
  list-style: none;
  text-align: left;
  margin: 1rem 0;
  font-size: 0.9rem;
}

.package-features li {
  padding: 0.3rem 0;
  color: #cccccc;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.package-features li::before {
  content: '✓';
  color: var(--success);
  font-weight: bold;
  flex-shrink: 0;
}

.form-group-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(0, 217, 255, 0.3);
  border-radius: 10px;
  padding: 1rem;
  color: var(--text-light);
  font-size: 1rem;
  transition: all 0.3s;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-nav {
  flex: 1;
  padding: 1rem 2rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-prev {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--primary-color);
}

.btn-prev:hover {
  background: rgba(0, 217, 255, 0.1);
}

.btn-next,
.btn-submit {
  background: linear-gradient(135deg, var(--primary-color), #0099cc);
  color: var(--bg-dark);
}

.btn-next:hover,
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 217, 255, 0.5);
}

.btn-nav:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.booking-summary {
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  padding: 2rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

.summary-item:last-child {
  border-bottom: none;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary-color);
}

.summary-label {
  color: #999;
}

.summary-value {
  color: var(--text-light);
  font-weight: 500;
}

/* Success Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.modal.show {
  display: flex;
  animation: fadeIn 0.3s ease-in;
}

.modal-content {
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  border: 2px solid var(--primary-color);
  border-radius: 20px;
  padding: 3rem;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 217, 255, 0.4);
}

.modal-icon {
  font-size: 5rem;
  margin-bottom: 1rem;
}

.modal-content h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.modal-content p {
  color: #cccccc;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .booking-form-container {
    padding: 2rem 1.5rem;
  }

  .booking-steps {
    flex-direction: column;
    gap: 1rem;
  }

  .booking-steps::before {
    display: none;
  }

  .package-selection {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .booking-header h1 {
    font-size: 2rem;
  }

  .step-title-main {
    font-size: 1.5rem;
  }
}

