/* ============================================================
   CONTACT US PAGE
   ============================================================ */

.contact-video {
  position: relative;
  height: 60vh;
  min-height: 480px;
  margin: calc(var(--nav-h) + 20px) 10% 0;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
}

.contact-video iframe {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1.8);
}

.contact-main {
  padding: 72px 0 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.contact-heading h1 {
  font-family: 'Quatro', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  line-height: 1.15;
  max-width: 720px;
  margin: 0 auto;
}

.contact-heading-thin {
  font-weight: 400;
}

.contact-info-label {
  font-family: 'Quatro', system-ui, sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.contact-email-link {
  font-size: 1.05rem;
  color: var(--text);
  transition: color 0.2s;
}

.contact-email-link:hover {
  color: var(--teal);
}

/* ---- Inquiry-type choice buttons ---- */
.contact-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
  max-width: 760px;
}

.contact-choice {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-family: inherit;
  text-align: center;
  cursor: pointer;
  transition: transform 0.15s, border-color 0.2s, background 0.2s;
}

.contact-choice:hover {
  transform: translateY(-2px);
}

.contact-choice-label {
  font-family: 'Quatro', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.contact-choice-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-choice--general {
  border-color: rgba(0, 204, 204, 0.35);
}

.contact-choice--general:hover {
  border-color: #00cccc;
  background: rgba(0, 204, 204, 0.08);
}

.contact-choice--general .contact-choice-label {
  color: #00cccc;
}

.contact-choice--support {
  border-color: rgba(204, 102, 255, 0.35);
}

.contact-choice--support:hover {
  border-color: #cc66ff;
  background: rgba(204, 102, 255, 0.08);
}

.contact-choice--support .contact-choice-label {
  color: #cc66ff;
}

/* ---- Contact form modal ---- */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal-card {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  max-width: 480px;
  width: 100%;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}

.contact-modal-card h3 {
  font-family: 'Quatro', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-field label {
  display: block;
  font-family: 'Quatro', system-ui, sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--teal);
  background: #101d2c;
}

.contact-field textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form-status {
  font-size: 0.85rem;
  min-height: 20px;
}

.contact-form-status.is-error {
  color: #f87171;
}

.contact-form-status.is-success {
  color: var(--teal);
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .contact-video {
    margin: calc(var(--nav-h) + 16px) 5% 0;
  }
}

@media (max-width: 640px) {
  .contact-video {
    height: 52vh;
    min-height: 340px;
    margin: calc(var(--nav-h) + 12px) 0 0;
    border-radius: 0;
  }

  .contact-main {
    padding: 48px 0 64px;
  }

  .contact-choices {
    grid-template-columns: 1fr;
  }

  .contact-modal-card {
    padding: 32px 24px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
