/* Helix Events — Public Inquiry Form */

.helix-inquiry-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.helix-inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hif-row {
  display: grid;
  gap: 16px;
}

.hif-row--2 {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 600px) {
  .hif-row--2 {
    grid-template-columns: 1fr;
  }
}

.hif-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hif-field--full {
  width: 100%;
}

.hif-label {
  font-size: 13px;
  font-weight: 600;
  color: currentColor;
  letter-spacing: 0.01em;
}

.hif-label span {
  color: #e05;
  margin-left: 2px;
}

.hif-input {
  width: 100%;
  padding: 10px 14px;
  font-size: 15px;
  border: 1.5px solid rgba(0, 0, 0, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: inherit;
  transition: border-color 0.15s;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
}

.hif-input:focus {
  outline: none;
  border-color: #7B5CF0;
  box-shadow: 0 0 0 3px rgba(123, 92, 240, 0.15);
}

.hif-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6880' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.hif-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
  line-height: 1.55;
}

/* Status message */
.hif-status {
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.5;
}

.hif-status--success {
  background: #E6F9F2;
  color: #0d7a52;
  border: 1px solid #9ee8cf;
}

.hif-status--error {
  background: #FEE8E8;
  color: #b91c1c;
  border: 1px solid #fca5a5;
}

/* Section titles */
.hif-section-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7B5CF0;
  margin-bottom: 4px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(123, 92, 240, 0.2);
}

/* First / last name side by side */
.hif-name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* Radio groups */
.hif-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 4px;
}

.hif-radio {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
}

.hif-radio input[type="radio"] {
  accent-color: #7B5CF0;
  width: 16px;
  height: 16px;
  cursor: pointer;
  flex-shrink: 0;
}

/* Submit button */
.hif-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 32px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  background: #7B5CF0;
  color: #fff;
  cursor: pointer;
  transition: background 0.15s, opacity 0.15s;
  align-self: flex-start;
  letter-spacing: 0.01em;
}

.hif-submit:hover {
  background: #6B4CE0;
}

.hif-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Spinner */
.hif-submit__spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: hif-spin 0.6s linear infinite;
}

@keyframes hif-spin {
  to { transform: rotate(360deg); }
}
