/* ── INQUIRY FORM STYLES ────────────────────────────────────────────────────
   Matches the BlueSweep landing page design language:
   --midnight #0B1D33 | --aqua #00D8FF | --cream #F5F0E8
   ───────────────────────────────────────────────────────────────────────────*/

/* ── NAV ── */
.inquiry-nav {
  background: var(--midnight);
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
}

.inquiry-nav-inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-back {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-back:hover { color: rgba(255,255,255,0.85); }

/* ── HERO ── */
.inquiry-hero {
  background: var(--midnight);
  padding: 64px 40px 56px;
  position: relative;
  overflow: hidden;
}

.inquiry-hero-bg-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(0,216,255,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(0,216,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.inquiry-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.inquiry-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 16px;
}

.inquiry-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 520px;
}

.inquiry-headline em {
  font-style: italic;
  color: var(--aqua);
}

.inquiry-lede {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 420px;
  line-height: 1.6;
}

/* ── BODY / FORM SECTION ── */
.inquiry-body {
  background: var(--cream);
  padding: 64px 40px 80px;
  min-height: 60vh;
}

.inquiry-container {
  max-width: 560px;
  margin: 0 auto;
}

/* ── SUCCESS STATE ── */
.inquiry-success {
  text-align: center;
  padding: 56px 40px;
  background: #fff;
  border: 1px solid var(--cream-mid);
  border-radius: 4px;
}

.success-icon {
  color: var(--aqua);
  margin-bottom: 24px;
}

.success-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--midnight);
  margin-bottom: 16px;
}

.success-body {
  font-size: 16px;
  color: var(--warm-gray);
  line-height: 1.65;
  max-width: 380px;
  margin: 0 auto 32px;
}

/* ── ERROR BANNER ── */
.form-error-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFF5F5;
  border: 1px solid #FECACA;
  border-radius: 4px;
  padding: 14px 18px;
  margin-bottom: 24px;
  color: #DC2626;
  font-size: 14px;
}

/* ── FORM ── */
.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: #fff;
  padding: 48px 40px;
  border: 1px solid var(--cream-mid);
  border-radius: 4px;
}

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

.form-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.form-input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--body-text);
  transition: border-color 0.15s, background 0.15s;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus {
  outline: none;
  border-color: var(--aqua);
  background: #fff;
}

.form-input::placeholder {
  color: var(--warm-gray);
  opacity: 0.6;
}

.form-input.error-field {
  border-color: #F87171;
  background: #FFF5F5;
}

.form-hint {
  font-size: 12px;
  color: var(--warm-gray);
  line-height: 1.5;
  margin-top: 2px;
}

/* Select wrapper */
.select-wrapper {
  position: relative;
}

.form-select {
  cursor: pointer;
  padding-right: 40px;
}

.select-chevron {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--warm-gray);
  pointer-events: none;
}

/* Radio cards */
.radio-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.radio-card {
  position: relative;
  cursor: pointer;
}

.radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 12px;
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--warm-gray);
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  text-align: center;
}

.radio-card:hover .radio-label {
  border-color: rgba(0,216,255,0.3);
  background: rgba(0,216,255,0.04);
}

.radio-card--selected .radio-label {
  border-color: var(--aqua);
  background: rgba(0,216,255,0.06);
  color: var(--midnight);
}

.radio-label svg {
  color: var(--warm-gray);
  transition: color 0.15s;
}

.radio-card--selected .radio-label svg {
  color: var(--aqua);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 28px;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--aqua);
  color: var(--midnight);
}

.btn-primary:hover {
  background: #00c0e8;
  box-shadow: 0 4px 20px rgba(0,216,255,0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--aqua);
  border: 1.5px solid var(--aqua);
}

.btn-secondary:hover {
  background: rgba(0,216,255,0.06);
}

.btn-full { width: 100%; }

/* ── FOOTER NOTE ── */
.form-footer-note {
  font-size: 12px;
  color: var(--warm-gray);
  text-align: center;
  line-height: 1.5;
  margin-top: -8px;
}

/* ── FOOTER ── */
.inquiry-footer {
  background: #070F1C;
  padding: 24px 40px;
}

.inquiry-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .inquiry-hero { padding: 48px 24px 40px; }
  .inquiry-body { padding: 40px 24px 60px; }
  .inquiry-form { padding: 32px 24px; }
  .radio-group { grid-template-columns: 1fr; }
  .inquiry-nav { padding: 0 24px; }
  .inquiry-footer { padding: 20px 24px; }
  .inquiry-footer-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
}