/* === INQUIRY PAGE === */
.inquiry-nav {
  background: var(--bg);
  border-bottom: 1px solid rgba(255,149,0,0.1);
  padding: 18px 0;
}

.inquiry-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.nav-cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--amber);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* === PAGE LAYOUT === */
.inquiry-page {
  min-height: calc(100vh - 80px);
  padding: 80px 0 100px;
  background: var(--bg);
  position: relative;
}

.inquiry-page::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,149,0,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.inquiry-page .container {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

/* === HEADER === */
.inquiry-header {
  margin-bottom: 56px;
}

.inquiry-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid rgba(255,149,0,0.4);
  background: var(--amber-dim);
}

.inquiry-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  line-height: 1.1;
}

.inquiry-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === SUCCESS STATE === */
.form-success {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 32px;
  background: rgba(255,149,0,0.08);
  border: 1px solid rgba(255,149,0,0.35);
  border-radius: 4px;
}

.form-success strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.form-success p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

.form-success svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* === FORM === */
.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-section {
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.form-section:last-of-type {
  border-bottom: none;
}

.form-section-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

/* === SERVICE SELECTOR === */
.service-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.service-option {
  position: relative;
  cursor: pointer;
}

.service-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.service-option-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  background: #1A1A19;
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  transition: border-color 0.2s, background 0.2s;
}

.service-option:hover .service-option-inner {
  border-color: rgba(255,149,0,0.4);
  background: #1E1E1C;
}

.service-option.selected .service-option-inner {
  border-color: var(--amber);
  background: rgba(255,149,0,0.07);
}

.service-option-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.service-option-price {
  font-size: 13px;
  color: var(--amber);
  font-family: var(--font-body);
}

/* === FORM FIELDS === */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-full {
  grid-column: 1 / -1;
}

label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.field-hint {
  font-weight: 400;
  color: var(--text-warm-muted);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 13px 16px;
  background: #1A1A19;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(245,244,240,0.25);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--amber);
}

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

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

.field-error {
  font-size: 12px;
  color: #FF6B6B;
  margin: 0;
}

/* === SUBMIT === */
.form-submit {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: var(--amber);
  color: var(--text-dark);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.1s;
}

.btn-submit:hover {
  background: #FFAD33;
}

.btn-submit:active {
  transform: scale(0.98);
}

.submit-note {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* === OOS FIELDS === */
.oos-fields {
  display: none;
}

/* === DEPOSIT NOTICE === */
.deposit-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(255, 149, 0, 0.08);
  border: 1px solid rgba(255, 149, 0, 0.35);
  border-radius: 4px;
  margin-bottom: 4px;
}

.deposit-notice svg {
  flex-shrink: 0;
  margin-top: 1px;
}

.deposit-notice span {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.deposit-notice strong {
  color: var(--amber);
  font-weight: 600;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .inquiry-page { padding: 60px 0 80px; }
  .form-row { grid-template-columns: 1fr; }
  .service-selector { grid-template-columns: 1fr; }
  .oos-fields .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .inquiry-page .container { padding: 0 24px; }
}