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

.about-header {
  mix-blend-mode: normal;
  background: linear-gradient(to bottom, var(--bg-deeper), transparent);
  padding-bottom: 2rem;
}

.nav-active {
  color: var(--accent-cyan) !important;
}

/* ============================================
   HERO
   ============================================ */

.contact-hero {
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding: 0 8vw 5rem;
  background: var(--bg-deeper);
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 50% 70%, rgba(0, 212, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.contact-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin: 1rem 0 1.2rem;
}

.contact-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ============================================
   CONTACT CONTENT
   ============================================ */

.contact-content {
  padding: 6rem 8vw 8rem;
  background: var(--bg-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 8vw;
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================
   FORM
   ============================================ */

.form-group {
  margin-bottom: 1.8rem;
}

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
}

.form-group .optional {
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-primary);
  background: var(--bg-deeper);
  border: 1px solid rgba(255, 255, 255, 0.06);
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  font-weight: 300;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-cyan);
}

.form-group select {
  cursor: pointer;
  color: var(--text-muted);
}

.form-group select:valid {
  color: var(--text-primary);
}

.form-group select option {
  background: var(--bg-deeper);
  color: var(--text-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  text-align: center;
  margin-top: 0.5rem;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ============================================
   SUCCESS MESSAGE
   ============================================ */

.form-success {
  text-align: center;
  padding: 4rem 2rem;
}

.success-icon {
  margin-bottom: 1.5rem;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
}

.form-success p {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   CONTACT INFO
   ============================================ */

.contact-info {
  padding-top: 0.5rem;
}

.info-block {
  margin-bottom: 2.5rem;
}

.info-block h3 {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.info-block a {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--accent-cyan);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.info-block a:hover {
  opacity: 0.7;
}

.info-block p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-primary);
}

.info-separator {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 3rem 0;
}

.next-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1rem;
}

.next-steps li {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.5;
  padding-left: 2.5rem;
  position: relative;
}

.next-steps li span {
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-cyan);
  letter-spacing: 0.05em;
}

/* ============================================
   FOOTER
   ============================================ */

.contact-footer {
  padding: 2rem 5vw;
  background: var(--bg-deeper);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* ============================================
   MOBILE
   ============================================ */

@media (max-width: 768px) {
  .contact-hero {
    min-height: 45vh;
    padding: 0 6vw 3rem;
  }

  .contact-title {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }

  .contact-content {
    padding: 4rem 6vw 5rem;
  }

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

  .contact-info {
    order: -1;
    padding-top: 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}
