/* ==================
   LUXURY BOOKING FORM STYLES
   ================== */

.enquiry-luxury {
  background: #000000;
  border: 1px solid rgba(192, 192, 192, 0.2);
  border-radius: 16px;
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
  max-width: 900px;
}

@media (max-width: 1060px) {
  .enquiry-luxury {
    padding: 48px 32px;
  }
}

@media (max-width: 640px) {
  .enquiry-luxury {
    padding: 32px 24px;
    border-radius: 12px;
  }
}

.enquiry-luxury::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(198, 164, 106, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(198, 164, 106, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.enquiry-luxury__header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.enquiry-luxury__badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.15) 0%, rgba(192, 192, 192, 0.08) 100%);
  border: 1px solid rgba(192, 192, 192, 0.4);
  color: #e0e0e0;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.enquiry-luxury__title {
  font-family: 'Alta';
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 12px 0;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #ffffff 0%, #c0c0c0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.enquiry-luxury__subtitle {
  font-size: 1.05rem;
  color: rgba(224, 224, 224, 0.7);
  margin: 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Progress Bar Styles */
.progress-luxury {
  margin: 40px 0 0 0;
  position: relative;
  z-index: 1;
}

.progress-luxury__track {
  height: 2px;
  background: rgba(198, 164, 106, 0.15);
  border-radius: 1px;
  overflow: hidden;
  margin-bottom: 24px;
}

.progress-luxury__fill {
  height: 100%;
  background: linear-gradient(90deg, #d4d4d4 0%, #e0e0e0 100%);
  width: 0%;
  transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.progress-luxury__steps {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.progress-luxury__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.progress-luxury__step.is-active {
  opacity: 1;
}

.progress-luxury__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(192, 192, 192, 0.3);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.progress-luxury__step.is-active .progress-luxury__dot {
  background: #c0c0c0;
  box-shadow: 0 0 16px rgba(192, 192, 192, 0.4);
  width: 16px;
  height: 16px;
  margin: -2px;
}

.progress-luxury__step.is-complete .progress-luxury__dot {
  background: #c0c0c0;
  border-color: #c0c0c0;
}

.progress-luxury__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(224, 224, 224, 0.6);
  text-transform: uppercase;
}

.progress-luxury__step.is-active .progress-luxury__label {
  color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 640px) {
  .progress-luxury__label {
    font-size: 0.65rem;
  }
}

/* Body & Form */
.enquiry-luxury__body {
  position: relative;
  z-index: 1;
}

.form {
  position: relative;
}

/* Step Styles */
.step-luxury {
  animation: fadeInSlide 0.4s ease forwards;
}

@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-luxury__header {
  margin-bottom: 32px;
  text-align: center;
}

.step-luxury__number {
  display: inline-block;
  font-family: 'Alta';
  font-size: 3rem;
  font-weight: 600;
  background: linear-gradient(135deg, #c0c0c0 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  line-height: 1;
}

.step-luxury__question {
  font-family: 'Alta';
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: #ffffff;
  margin: 12px 0 0 0;
  letter-spacing: -0.5px;
}

.step-luxury__subtext {
  font-size: 0.95rem;
  color: rgba(224, 224, 224, 0.7);
  margin: 12px 0 0 0;
}

/* Option Grid & Radio Options */
.option-grid-luxury {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.option-grid-luxury--3 {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

@media (max-width: 1060px) {
  .option-grid-luxury {
    gap: 12px;
  }
  
  .option-grid-luxury--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .option-grid-luxury {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .option-grid-luxury--3 {
    grid-template-columns: 1fr;
  }
}

.option-luxury {
  position: relative;
  display: block;
  cursor: pointer;
}

.option-luxury__content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  background: rgba(192, 192, 192, 0.05);
  border: 2px solid rgba(192, 192, 192, 0.2);
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 1;
}

.option-luxury__label {
  font-size: 0.95rem;
  color: rgba(230, 230, 230, 0.85);
  text-align: center;
  line-height: 1.4;
  font-weight: 500;
}

.option-luxury__check {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #e0e0e0;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.option-luxury__check svg {
  width: 16px;
  height: 16px;
}

.option-luxury input:checked ~ .option-luxury__content {
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.25) 0%, rgba(192, 192, 192, 0.1) 100%);
  border-color: #d4d4d4;
  box-shadow: 0 0 20px rgba(192, 192, 192, 0.3), inset 0 0 20px rgba(192, 192, 192, 0.08);
}

.option-luxury input:checked ~ .option-luxury__content .option-luxury__label {
  color: #ffffff;
  font-weight: 600;
}

.option-luxury input:checked ~ .option-luxury__check {
  opacity: 1;
}

.option-luxury:hover .option-luxury__content {
  border-color: rgba(192, 192, 192, 0.35);
  background: rgba(192, 192, 192, 0.1);
}

/* Form Fields */
.form-luxury {
  background: rgba(30, 30, 30, 0.5);
  border: 1px solid rgba(192, 192, 192, 0.15);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 32px;
}

@media (max-width: 640px) {
  .form-luxury {
    padding: 24px;
  }
}

.form-luxury__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

@media (max-width: 640px) {
  .form-luxury__row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.field-luxury {
  position: relative;
  margin-bottom: 0;
}

.field-luxury__input {
  width: 100%;
  padding: 14px 16px 10px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(192, 192, 192, 0.25);
  border-radius: 8px;
  color: #ffffff;
  font-family: 'Neue Montreal';
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.3s ease;
  outline: none;
}

.field-luxury__textarea {
  min-height: 120px;
  resize: vertical;
  padding: 16px;
}

.field-luxury__label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 0.95rem;
  color: rgba(224, 224, 224, 0.6);
  pointer-events: none;
  transition: all 0.3s ease;
  transform-origin: left top;
  font-weight: 500;
}

.field-luxury__input:placeholder-shown ~ .field-luxury__label {
  top: 16px;
  font-size: 0.95rem;
}

.field-luxury__input:not(:placeholder-shown) ~ .field-luxury__label,
.field-luxury__input:focus ~ .field-luxury__label {
  top: 6px;
  font-size: 0.75rem;
  color: #d4d4d4;
  font-weight: 600;
}

.field-luxury__focus {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #c0c0c0 0%, #e0e0e0 100%);
  border-radius: 1px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.field-luxury__input:focus ~ .field-luxury__focus {
  opacity: 1;
}

.field-luxury__input:focus {
  border-color: rgba(192, 192, 192, 0.5);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 12px rgba(192, 192, 192, 0.15);
}

.field-luxury__optional {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(192, 192, 192, 0.5);
}

/* Buttons */
.step-luxury__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .step-luxury__actions {
    flex-direction: column;
  }
}

.btn-luxury {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-family: 'Neue Montreal';
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-transform: uppercase;
  outline: none;
  min-width: 160px;
}

@media (max-width: 640px) {
  .btn-luxury {
    width: 100%;
  }
}

.btn-luxury svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
}

/* Primary Button */
.btn-luxury--primary {
  background: linear-gradient(135deg, #d4d4d4 0%, #e0e0e0 100%);
  color: #000000;
  border-color: #d4d4d4;
}

.btn-luxury--primary:hover {
  background: linear-gradient(135deg, #e0e0e0 0%, #f0f0f0 100%);
  box-shadow: 0 8px 32px rgba(192, 192, 192, 0.4);
  transform: translateY(-2px);
}

.btn-luxury--primary:active {
  transform: translateY(0);
}

.btn-luxury--primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Ghost Button */
.btn-luxury--ghost {
  background: transparent;
  color: #d4d4d4;
  border-color: rgba(192, 192, 192, 0.4);
}

.btn-luxury--ghost:hover {
  background: rgba(192, 192, 192, 0.1);
  border-color: #d4d4d4;
  box-shadow: 0 0 20px rgba(192, 192, 192, 0.2);
}

/* WhatsApp Button */
.btn-luxury--whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #1faa53 100%);
  color: #fff;
  border-color: #25d366;
  min-width: 200px;
}

.btn-luxury--whatsapp:hover {
  background: linear-gradient(135deg, #1faa53 0%, #1ea742 100%);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
  transform: translateY(-2px);
}

.btn-luxury--whatsapp:active {
  transform: translateY(0);
}

.btn-luxury--whatsapp:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Form Status Message */
.form-luxury__status {
  font-size: 0.9rem;
  padding: 12px 16px;
  border-radius: 8px;
  text-align: center;
  margin-top: -8px;
  min-height: 1.4em;
  background: rgba(192, 192, 192, 0.08);
  border: 1px solid rgba(192, 192, 192, 0.25);
  color: #d4d4d4;
  display: none;
  animation: fadeIn 0.3s ease;
}

.form-luxury__status.is-visible {
  display: block;
}

.form-luxury__status.is-error {
  background: rgba(220, 53, 69, 0.08);
  border-color: rgba(220, 53, 69, 0.2);
  color: #ff6b6b;
}

.form-luxury__status.is-success {
  background: rgba(37, 211, 102, 0.08);
  border-color: rgba(37, 211, 102, 0.2);
  color: #25d366;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Animations */
@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.step-luxury[data-direction="prev"] {
  animation: slideLeft 0.4s ease forwards;
}

.step-luxury[data-direction="next"] {
  animation: slideRight 0.4s ease forwards;
}
