/* ── ENQUIRY PAGE ── */
.enquiry-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  z-index: 10;
}

.enquiry-wrapper {
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
}

.enquiry-container {
  width: 100%;
  background: rgba(20, 20, 20, 0.15);
  backdrop-filter: blur(30px) saturate(150%);
  -webkit-backdrop-filter: blur(30px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(201, 168, 76, 0.2), inset 0 20px 40px rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.enquiry-container:focus-within {
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(201, 168, 76, 0.4), inset 0 20px 40px rgba(201, 168, 76, 0.05);
}

/* Nav Progress Mode */
nav.nav-progress-mode {
  overflow: hidden;
}

nav.nav-progress-mode::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: var(--nav-progress, 0%);
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.0), rgba(201, 168, 76, 0.35), rgba(201, 168, 76, 0.0));
  background-size: 200% 100%;
  border-right: 1px solid rgba(201, 168, 76, 0.8);
  box-shadow: 5px 0 15px rgba(201, 168, 76, 0.3);
  z-index: -1;
  transition: width 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
  animation: navShimmer 2.5s infinite linear;
}

@keyframes navShimmer {
  0% {
    background-position: 200% 0;
    box-shadow: 5px 0 15px rgba(201, 168, 76, 0.2);
  }

  50% {
    box-shadow: 5px 0 25px rgba(201, 168, 76, 0.6);
  }

  100% {
    background-position: -200% 0;
    box-shadow: 5px 0 15px rgba(201, 168, 76, 0.2);
  }
}

.back-arrow {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 30;
}

.back-arrow:hover {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.15);
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateX(-4px);
}

/* Header inside form */
.form-header {
  padding: 2.5rem 2.5rem 1rem;
  text-align: center;
}

.form-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.form-header h1 em {
  font-style: italic;
  color: var(--gold);
}

.form-header p {
  font-size: 0.8rem;
  color: var(--gray);
  letter-spacing: 0.05em;
}

/* Form Steps */
.form-step {
  display: none;
  padding: 1rem 2.5rem 3rem;
  animation: fadeIn 0.5s ease forwards;
}

.form-step.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Input Fields */
.input-group {
  margin-bottom: 1.5rem;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .input-row {
    grid-template-columns: 1fr 1fr;
  }
}

.input-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  background: rgba(25, 25, 25, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-control:focus {
  border-color: rgba(201, 168, 76, 0.6);
  background: rgba(35, 35, 35, 0.6);
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.15);
}

/* Fix Webkit Autofill white background */
.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #1a1a1a inset !important;
  -webkit-text-fill-color: #ffffff !important;
  color: #ffffff !important;
  caret-color: #ffffff !important;
  border: 1px solid #2a2a2a !important;
  outline: none !important;
  transition: background-color 5000s ease-in-out 0s, color 5000s ease-in-out 0s;
}

.form-control:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 30px #1a1a1a inset, 0 0 15px rgba(201, 168, 76, 0.15) !important;
  -webkit-text-fill-color: #ffffff !important;
  color: #ffffff !important;
  caret-color: #ffffff !important;
  border: 1px solid rgba(201, 168, 76, 0.6) !important;
  outline: none !important;
  transition: background-color 5000s ease-in-out 0s, color 5000s ease-in-out 0s;
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

/* Selectable Pills (Chips) */
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.chip-label {
  position: relative;
  cursor: pointer;
}

.chip-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.chip-text {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  background: rgba(25, 25, 25, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  user-select: none;
}

.chip-label input:checked~.chip-text {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.2);
}

.chip-label:hover .chip-text {
  border-color: rgba(201, 168, 76, 0.4);
  color: var(--white);
}

/* Actions */
.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
  padding: 1rem 2.5rem;
  border-radius: 100px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
}

.btn-primary:hover {
  background: #d8b85c;
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid transparent;
  padding: 1rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  color: var(--white);
}

/* Success State */
.success-message {
  display: none;
  text-align: center;
  padding: 4rem 2rem;
  animation: fadeIn 0.6s ease forwards;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--gold);
  font-size: 2.5rem;
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.2);
}

.success-message h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
}

.success-message p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .enquiry-section {
    padding: 7rem 1rem 3rem;
  }

  .form-header {
    padding: 2rem 1.5rem 1rem;
  }

  .form-step {
    padding: 1rem 1.5rem 2rem;
  }

  .form-header h1 {
    font-size: 2rem;
  }

  .btn-primary {
    padding: 0.8rem 2rem;
  }
}

/* Input fixes */
input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.5;
  cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

input[type="date"] {
  color-scheme: dark;
}

/* Remove number arrows */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
  /* Firefox */
}