.booking-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  padding: 80px 20px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  background: #1a1a1a;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  border: 2px solid #FFD700;
  position: relative;
  overflow: hidden;
}

/* Pulsante chiusura */
.booking-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid #FFD700;
  border-radius: 50%;
  color: #FFD700;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding: 0;
}

.booking-close-btn:hover {
  background: #FFD700;
  color: #000;
  transform: rotate(90deg);
}

.booking-container::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(90deg, transparent, #FFD700, transparent);
  border-radius: 20px;
  animation: borderLight 3s linear infinite;
  z-index: -1;
}

.booking-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1a1a1a;
  border-radius: 18px;
  z-index: -1;
}

@keyframes borderLight {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.booking-header {
  text-align: center;
  margin-bottom: 40px;
}

.booking-logo {
  width: 80px;
  margin-bottom: 20px;
}

.booking-header h1 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 30px;
}

.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #FFD700;
  margin-top: 30px;
}

.step {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #333;
  color: #FFD700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: all 0.3s;
}

.step.active {
  background: var(--primary-color);
  color: #FFD700;
}

.step-line {
  width: 60px;
  height: 2px;
  background: #333;
}

.booking-step {
  animation: fadeIn 0.5s;
}

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

.booking-step h2 {
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
}

.offer-list {
  margin-bottom: 40px;
}

.offer-category {
  color: #FFD700;
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-category:first-child {
  margin-top: 0;
}

.offer-item-simple {
  color: #ccc;
  padding: 8px 0;
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.3s;
}

.offer-item-simple:hover {
  color: #FFD700;
  padding-left: 10px;
}

.booking-form {
  margin-top: 30px;
}

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

.form-group {
  margin-bottom: 25px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background: #333;
  border: 1px solid #444;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.info-box {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 8px;
  padding: 15px;
  margin: 20px 0;
}

.info-box p {
  color: #ffc107;
  font-size: 0.9rem;
  margin: 5px 0;
}

.form-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn-back,
.btn-continue,
.btn-submit,
.btn-home {
  flex: 1 1;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  background: #FFD700;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-back:hover,
.btn-back:active,
.btn-continue:hover,
.btn-continue:active,
.btn-submit:hover,
.btn-submit:active,
.btn-home:hover,
.btn-home:active {
  background: #FFD700;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.btn-continue:disabled,
.btn-submit:disabled {
  background: #666;
  color: #999;
  cursor: not-allowed;
  transform: none;
}

.booking-loading {
  min-height: 100vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loading-logo {
  width: 150px;
  margin-bottom: 30px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.loading-bar {
  width: 300px;
  height: 4px;
  background: #333;
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto 20px;
}

.loading-progress {
  height: 100%;
  background: var(--primary-color);
  animation: loading 2s infinite;
}

@keyframes loading {
  0% { width: 0%; }
  50% { width: 70%; }
  100% { width: 100%; }
}

.loading-content p {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.booking-success {
  min-height: 100vh;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.success-content {
  text-align: center;
  max-width: 600px;
}

.success-content h1 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 20px;
  animation: fadeIn 0.5s;
}

.success-content p {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.btn-home {
  background: #FFD700;
  color: #000;
  border: none;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-home:hover,
.btn-home:active {
  background: #FFD700;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

@media (max-width: 768px) {
  .booking-page {
    padding: 100px 15px 20px;
  }

  .booking-container {
    padding: 25px 15px 20px;
    border-radius: 15px;
  }

  .booking-close-btn {
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    font-size: 22px;
  }

  .booking-logo {
    width: 50px;
    margin-bottom: 10px;
  }

  .booking-header h1 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .step-indicator {
    margin-top: 15px;
  }

  .step {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }

  .step-line {
    width: 30px;
  }

  .booking-step h2 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .offer-category {
    font-size: 1rem;
    margin-top: 15px;
    margin-bottom: 8px;
  }

  .offer-item-simple {
    font-size: 0.9rem;
    padding: 6px 0;
  }

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

  .form-group {
    margin-bottom: 15px;
  }

  .form-group label {
    margin-bottom: 6px;
    font-size: 0.9rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.9rem;
    padding: 10px 12px;
  }

  .form-buttons {
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }

  .btn-back,
  .btn-continue,
  .btn-submit {
    font-size: 0.85rem;
    padding: 11px;
  }

  .loading-logo {
    width: 100px;
  }

  .loading-bar {
    width: 250px;
  }

  .loading-content p {
    font-size: 1rem;
  }

  .success-content h1 {
    font-size: 1.8rem;
  }

  .success-content p {
    font-size: 1rem;
  }

  .btn-home {
    padding: 12px 30px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .booking-page {
    padding: 90px 10px 15px;
  }

  .booking-container {
    padding: 25px 12px 18px;
  }

  .booking-close-btn {
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    font-size: 20px;
  }

  .booking-logo {
    width: 45px;
    margin-bottom: 8px;
  }

  .booking-header h1 {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

  .step-indicator {
    margin-top: 12px;
  }

  .step {
    width: 26px;
    height: 26px;
    font-size: 0.8rem;
  }

  .step-line {
    width: 25px;
  }

  .booking-step h2 {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

  .offer-category {
    font-size: 0.9rem;
    margin-top: 12px;
    margin-bottom: 6px;
  }

  .offer-item-simple {
    font-size: 0.85rem;
    padding: 5px 0;
  }

  .form-group {
    margin-bottom: 12px;
  }

  .form-group label {
    margin-bottom: 5px;
    font-size: 0.85rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.85rem;
    padding: 9px 10px;
  }

  .form-buttons {
    margin-top: 15px;
    gap: 8px;
  }

  .btn-back,
  .btn-continue,
  .btn-submit {
    font-size: 0.8rem;
    padding: 10px;
  }

  .loading-logo {
    width: 80px;
  }

  .loading-bar {
    width: 200px;
  }

  .success-content h1 {
    font-size: 1.5rem;
  }
}
