/* ===== CONTACT PAGE STYLES ===== */
.contact-main-section { background: var(--black); }

/* Info Block */
.contact-info-block {}
.contact-email {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}
.contact-email:hover { color: var(--red); }
.contact-note { font-size: 0.88rem; color: var(--white-mute); line-height: 1.7; }

/* Process Steps */
.contact-process-block {}
.contact-step {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.6rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--black-border);
}
.contact-step:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.cs-num {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--red);
  min-width: 24px;
  padding-top: 2px;
  opacity: 0.8;
}
.cs-content strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.cs-content p {
  font-size: 0.83rem;
  color: var(--white-mute);
  line-height: 1.65;
  margin: 0;
}

/* Trust Signals */
.trust-signals-block {}
.ts-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
  font-size: 0.85rem;
  color: var(--white-dim);
}
.ts-dot {
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Form */
.contact-form-wrapper {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  padding: 3rem 2.5rem;
}
@media (max-width: 576px) {
  .contact-form-wrapper { padding: 2rem 1.5rem; }
}
.form-intro { font-size: 0.9rem; color: var(--white-mute); line-height: 1.7; margin-top: 0.5rem; }
.form-header-line { margin-bottom: 2.2rem; }
.form-group { display: flex; flex-direction: column; }
.form-label-custom {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 0.5rem;
}
.form-label-custom span { color: var(--red); }
.form-input {
  background: var(--black);
  border: 1px solid var(--black-border);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.25s;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-input::placeholder { color: var(--white-mute); }
.form-input:focus { border-color: var(--red); }
.form-select-custom {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a0a0a0' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-select-custom option { background: var(--black-card); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-disclaimer { font-size: 0.78rem; color: var(--white-mute); line-height: 1.6; text-align: center; }

/* Success */
.form-success {
  text-align: center;
  padding: 4rem 2rem;
}
.success-icon {
  width: 56px;
  height: 56px;
  border: 2px solid var(--red);
  color: var(--red);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
}
.success-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.success-text { font-size: 0.92rem; color: var(--white-mute); line-height: 1.75; max-width: 420px; margin: 0 auto; }
