/* ============================================
   ALOHA TICKETS — Operator form page styles
   ============================================ */

.op-main { padding-bottom: calc(var(--bottom-nav-h) + 16px); }

/* ── HERO ───────────────────────────────────── */
.op-hero {
  background: var(--ocean);
  padding: 40px 20px 32px;
  text-align: center;
}
.op-eyebrow {
  font-size: 11px;
  font-weight: 500;
  color: #9FE1CB;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.op-title {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 10px;
}
.op-title em { font-style: italic; color: #9FE1CB; }
.op-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  max-width: 320px;
  margin: 0 auto;
}

/* ── STATS ──────────────────────────────────── */
.op-stats {
  display: flex;
  background: var(--ocean);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 0 0 4px;
}
.op-stat {
  flex: 1;
  text-align: center;
  padding: 16px 8px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.op-stat:last-child { border-right: none; }
.op-stat-num {
  font-size: 15px;
  font-weight: 500;
  color: #9FE1CB;
  margin-bottom: 3px;
  line-height: 1.2;
}
.op-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
}

/* ── BODY ───────────────────────────────────── */
.op-body { padding: 24px 16px 32px; }

/* ── BENEFITS ───────────────────────────────── */
.op-benefits-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.op-benefit {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.op-benefit-icon {
  width: 40px; height: 40px;
  background: var(--teal-lite);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.op-benefit-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-1);
  margin-bottom: 2px;
}
.op-benefit-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

/* ── FORM CARD ──────────────────────────────── */
.form-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
}
.form-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-1);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.form-sub {
  font-size: 14px;
  color: var(--text-3);
  margin-bottom: 24px;
  line-height: 1.5;
}

/* ── FORM SECTION LABEL ─────────────────────── */
.form-section-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

/* ── FIELD ──────────────────────────────────── */
.op-form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 5px; }
.field-group { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-1);
}
.required { color: var(--teal); }
.field-input {
  width: 100%;
  padding: 11px 13px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--text-1);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color 0.15s;
  appearance: none;
  -webkit-appearance: none;
}
.field-input:focus {
  border-color: var(--teal);
  background: var(--bg);
  box-shadow: 0 0 0 3px rgba(29,158,117,0.12);
}
.field-input.error { border-color: #A32D2D; }
.field-select {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 5l4 4 4-4' stroke='%23909090' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
.field-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}
.field-error {
  font-size: 12px;
  color: #A32D2D;
  min-height: 16px;
}
.field-hint {
  font-size: 12px;
  color: var(--text-3);
  text-align: right;
}

/* ── PRICE INPUT ────────────────────────────── */
.price-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.price-symbol {
  position: absolute;
  left: 13px;
  font-size: 15px;
  color: var(--text-3);
  pointer-events: none;
}
.price-input { padding-left: 26px; }

/* ── RADIO GROUP ────────────────────────────── */
.radio-group { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-1);
  cursor: pointer;
  line-height: 1.4;
}
.radio-label input[type="radio"] { display: none; }
.radio-custom {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--bg);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.15s;
}
.radio-custom::after {
  content: '';
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.15s, transform 0.15s;
}
.radio-label input[type="radio"]:checked + .radio-custom {
  border-color: var(--teal);
}
.radio-label input[type="radio"]:checked + .radio-custom::after {
  opacity: 1;
  transform: scale(1);
}

/* ── SUBMIT ─────────────────────────────────── */
.submit-btn {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 15px 24px;
  margin-top: 8px;
}
.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.form-footer {
  font-size: 12px;
  color: var(--text-3);
  text-align: center;
  line-height: 1.6;
  margin-top: 4px;
}
.form-footer a { color: var(--teal-dark); text-decoration: underline; }

/* ── SUCCESS STATE ──────────────────────────── */
.form-success {
  text-align: center;
  padding: 32px 16px;
}
.success-icon { margin-bottom: 16px; }
.success-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-1);
  margin-bottom: 8px;
}
.success-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}
.hidden { display: none; }

/* ── DESKTOP ────────────────────────────────── */
@media (min-width: 768px) {
  .op-main { padding-bottom: 0; }
  .op-hero { padding: 56px 32px 40px; }
  .op-title { font-size: 42px; }
  .op-body { max-width: 680px; margin: 0 auto; padding: 28px 32px 48px; }
  .op-benefits-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .op-stats { max-width: 680px; margin: 0 auto; }
}
