/* ============================================================
   UNLOCKED — Enquiry modal (shared: site + portal)
   Self-contained so it works regardless of page stylesheet.
   ============================================================ */
:root {
  --enq-white: #f7f7f5;
  --enq-black: #0a0a0a;
  --enq-mid: #888888;
  --enq-line: rgba(255,255,255,0.08);
  --enq-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --enq-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}
.enq-overlay {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(0,0,0,0.82); backdrop-filter: blur(4px);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 7vh 20px 40px; overflow-y: auto;
}
.enq-modal {
  position: relative; width: 100%; max-width: 560px;
  background: #0d0d0d; border: 1px solid var(--enq-line); color: var(--enq-white);
  padding: 40px;
}
.enq-close {
  position: absolute; top: 18px; right: 18px; background: none; border: none;
  color: var(--enq-mid); font-size: 1rem; cursor: pointer;
}
.enq-close:hover { color: var(--enq-white); }

.enq-progress { display: flex; gap: 6px; margin-bottom: 12px; }
.enq-progress-seg { flex: 1; height: 3px; background: rgba(255,255,255,0.12); transition: background 0.3s var(--enq-ease); }
.enq-progress-seg.on { background: var(--enq-white); }
.enq-stepmeta { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--enq-mid); margin-bottom: 28px; }

.enq-step { animation: enqIn 0.35s var(--enq-ease-out); }
@keyframes enqIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.enq-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.9rem; letter-spacing: -0.025em; line-height: 1.05; }
.enq-sub { color: rgba(247,247,245,0.55); font-size: 0.95rem; margin: 8px 0 26px; }

.enq-venues { display: flex; flex-direction: column; gap: 10px; }
.enq-venue {
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  padding: 18px 20px; background: transparent; border: 1px solid var(--enq-line);
  color: var(--enq-white); cursor: pointer; text-align: left; transition: border-color 0.2s, background 0.2s;
}
.enq-venue:hover, .enq-venue.sel { border-color: var(--enq-white); background: rgba(255,255,255,0.03); }
.enq-venue-name { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.15rem; }
.enq-venue-tag { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--enq-mid); }

.enq-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.enq-field label { font-size: 0.8rem; font-weight: 500; color: rgba(247,247,245,0.7); }
.enq-field input, .enq-field textarea, .enq-field select {
  width: 100%; background: transparent; border: 1px solid rgba(255,255,255,0.45); color: var(--enq-white);
  padding: 14px 15px; font-family: 'Inter', sans-serif; font-size: 1rem; border-radius: 0;
}
.enq-field input:focus, .enq-field textarea:focus { outline: none; border-color: var(--enq-white); }
.enq-field textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.enq-field input::placeholder, .enq-field textarea::placeholder { color: rgba(255,255,255,0.35); }
.enq-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
/* date/time colour scheme for dark bg */
.enq-field input[type="date"], .enq-field input[type="time"] { color-scheme: dark; }

.enq-check { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; color: rgba(247,247,245,0.75); cursor: pointer; margin-top: 6px; }
.enq-check input { width: 18px; height: 18px; margin-top: 2px; accent-color: #fff; flex-shrink: 0; }
.enq-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.enq-error { margin-top: 16px; padding: 12px 15px; background: rgba(241,85,55,0.12); color: #F15537; font-size: 0.85rem; }

.enq-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 30px; }
.enq-contact { margin: 18px 0 0; text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.enq-contact a { color: rgba(255,255,255,0.75); text-decoration: underline; text-underline-offset: 3px; }

/* General contact modal (name/email/message + team column) */
.enq-modal--contact { max-width: 860px; }
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; }
.contact-team-col { border-left: 1px solid rgba(255,255,255,0.12); padding-left: 32px; }
.contact-team-title { font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 22px; }
.contact-team-item { margin-bottom: 22px; }
.contact-team-role { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.contact-team-email { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; color: var(--enq-white); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.25); padding-bottom: 2px; transition: border-color 0.2s; }
.contact-team-email:hover { border-color: var(--enq-white); }
@media (max-width: 680px) {
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-team-col { border-left: none; border-top: 1px solid rgba(255,255,255,0.12); padding-left: 0; padding-top: 24px; }
}
.enq-btn {
  font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.03em;
  padding: 13px 24px; border: 1px solid rgba(255,255,255,0.5); background: transparent; color: var(--enq-white);
  cursor: pointer; transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
}
.enq-btn:hover:not(:disabled) { border-color: var(--enq-white); }
.enq-btn:disabled { opacity: 0.4; cursor: default; }
.enq-btn-primary { background: var(--enq-white); color: var(--enq-black); border-color: var(--enq-white); }
.enq-btn-primary:hover:not(:disabled) { background: rgba(247,247,245,0.85); }

.enq-done { text-align: center; padding: 20px 0 8px; }
.enq-done-mark {
  width: 56px; height: 56px; margin: 0 auto 22px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--enq-white); font-size: 1.4rem;
}
.enq-done .enq-btn-primary { margin-top: 26px; }

@media (max-width: 560px) {
  .enq-modal { padding: 30px 22px; }
  .enq-row { grid-template-columns: 1fr; }
  .enq-title { font-size: 1.6rem; }
}

