/* ═══════════════════════════════════════════
   CONTACT PAGE — css/contact.css
   Quantum Paradox · Steampunk-Adventure Tech
   ═══════════════════════════════════════════ */

/* ───────── Hero ───────── */
.contact-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40vh;
  padding: 8rem 2rem 3.5rem;
  text-align: center;
  background: #0B1026;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 55% at 50% 45%,
    rgba(0, 102, 255, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.contact-hero__title {
  font-family: "Cinzel", serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.6rem);
  letter-spacing: 0.08em;
  color: #F0ECE4;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.contact-hero__subtitle {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #A8B2C1;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ───────── Contact Grid (60 / 40) ───────── */
.contact-content {
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3.5rem;
  align-items: start;
}

/* ───────── Form Column ───────── */
.contact-grid__form .btn--primary {
  width: 100%;
  margin-top: 0.5rem;
}

/* ───────── Select Dropdown (dark-theme) ───────── */
.contact-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A8B2C1' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.contact-select option {
  background: #1A1A2E;
  color: #E8E0D4;
}

/* ───────── Sidebar ───────── */
.contact-grid__sidebar {
  background: #1A1A2E;
  border: 1px solid rgba(0, 102, 255, 0.1);
  border-radius: 12px;
  padding: 2.25rem 2rem;
}

.contact-sidebar__heading {
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #F0ECE4;
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
}

.contact-sidebar__block {
  margin-bottom: 1.75rem;
}

.contact-sidebar__block:last-child {
  margin-bottom: 0;
}

.contact-sidebar__label {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8A8A9A;
  margin-bottom: 0.4rem;
}

.contact-sidebar__link {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.95rem;
  color: #0066FF;
  text-decoration: none;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.contact-sidebar__link:hover {
  color: #3388FF;
  text-shadow: 0 0 10px rgba(0, 102, 255, 0.4);
}

.contact-sidebar__text {
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  color: #A8B2C1;
  line-height: 1.6;
  margin-top: 0.25rem;
}

/* Socials */
.contact-sidebar__socials {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-sidebar__social-link {
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  color: #A8B2C1;
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-sidebar__social-link:hover {
  color: #0066FF;
}

/* Security block */
.contact-sidebar__security {
  border-top: 1px solid rgba(0, 102, 255, 0.12);
  padding-top: 1.75rem;
}

/* ───────── FAQ-Light ───────── */
.contact-faq {
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.contact-faq__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.contact-faq__card {
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.contact-faq__card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 8px 30px rgba(0, 102, 255, 0.1),
    0 0 0 1px rgba(0, 102, 255, 0.06);
}

.contact-faq__card .card__title {
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

/* ───────── Responsive ───────── */
@media (max-width: 768px) {
  .contact-hero {
    min-height: 32vh;
    padding: 7rem 1.25rem 2.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-grid__sidebar {
    order: -1;
  }

  .contact-faq__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
