/* ================================================
   Step Up — contact.css
   Contact page styles
   Rules: px only · no rem · no :root variables
   ================================================ */

/* ------------------------------------------------
   PAGE HERO
   ------------------------------------------------ */
.page-hero {
  padding: 80px 48px 56px;
  max-width: 680px;
}

.page-hero-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  color: #c9a84c;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 20px;
  padding: 5px 14px;
  background: rgba(201, 168, 76, 0.07);
}

.page-hero-title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.12;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.page-hero-title em {
  font-style: normal;
  color: #c9a84c;
}

.page-hero-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.75;
  max-width: 480px;
}

/* ------------------------------------------------
   CONTACT BODY — two-column layout
   ------------------------------------------------ */
.contact-body {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* ------------------------------------------------
   FORM COLUMN
   ------------------------------------------------ */
.contact-form-wrap {
  background: #111111;
  padding: 52px 48px;
  position: relative;
}

/* ------------------------------------------------
   FORM
   ------------------------------------------------ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 28px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.req {
  color: #c9a84c;
  font-size: 13px;
}

.field-optional {
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.5px;
  text-transform: none;
}

.field-input {
  width: 100%;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  padding: 12px 16px;
  font-size: 13px;
  font-family: 'Segoe UI', system-ui, sans-serif;
  color: #ffffff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field-input::placeholder {
  color: rgba(255, 255, 255, 0.18);
}

.field-input:focus {
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08);
}

.field-input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.4);
  cursor: pointer;
}

.select-wrap {
  position: relative;
}

.field-select {
  width: 100%;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  padding: 12px 40px 12px 16px;
  font-size: 13px;
  font-family: 'Segoe UI', system-ui, sans-serif;
  color: rgba(255, 255, 255, 0.6);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field-select:focus {
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08);
}

.field-select option {
  background: #1a1a1a;
  color: #ffffff;
}

.select-chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.25);
  pointer-events: none;
}

.field-textarea {
  width: 100%;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  padding: 12px 16px;
  font-size: 13px;
  font-family: 'Segoe UI', system-ui, sans-serif;
  color: #ffffff;
  outline: none;
  resize: vertical;
  min-height: 130px;
  line-height: 1.65;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field-textarea::placeholder {
  color: rgba(255, 255, 255, 0.18);
}

.field-textarea:focus {
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08);
}

.textarea-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.char-count {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

/* ------------------------------------------------
   VALIDATION ERROR
   ------------------------------------------------ */
.field-error {
  font-size: 11px;
  color: #e87a7a;
  letter-spacing: 0.3px;
  display: none;
}

.field-group.has-error .field-input,
.field-group.has-error .field-textarea {
  border-color: rgba(232, 122, 122, 0.5);
}

.field-group.has-error .field-error {
  display: block;
}

/* ------------------------------------------------
   SUBMIT BUTTON
   ------------------------------------------------ */
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 32px;
  background: #c9a84c;
  color: #0d0d0d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  align-self: flex-start;
  transition: opacity 0.2s ease, transform 0.15s ease;
  min-width: 180px;
}

.form-submit:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

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

.form-submit i {
  font-size: 16px;
}

/* ------------------------------------------------
   SUCCESS STATE
   ------------------------------------------------ */
.form-success {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 48px 0;
}

.form-success.visible {
  display: flex;
}

.success-icon {
  font-size: 48px;
  color: #c9a84c;
  line-height: 1;
}

.success-heading {
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
}

.success-body {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.7;
  max-width: 420px;
}

/* ------------------------------------------------
   INFO PANEL
   ------------------------------------------------ */
.contact-info {
  background: #0f0f0d;
  padding: 52px 36px;
  display: flex;
  flex-direction: column;
}

.info-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 0;
}

.info-block:first-child {
  padding-top: 0;
}

.info-block-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
}

.info-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}

/* Channel links */
.info-channels {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.info-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease;
  text-decoration: none;
  color: inherit;
}

.info-channel:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.channel-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 4px;
  font-size: 17px;
  color: #c9a84c;
  flex-shrink: 0;
}

.channel-body {
  flex: 1;
  min-width: 0;
}

.channel-name {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 2px;
}

.channel-value {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.channel-arrow {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
  transition: color 0.18s ease, transform 0.18s ease;
}

.info-channel:hover .channel-arrow {
  color: #c9a84c;
  transform: translate(2px, -2px);
}

/* Response badge */
.response-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 4px;
  padding: 10px 14px;
}

.response-badge i {
  font-size: 17px;
  color: #c9a84c;
  flex-shrink: 0;
}

.response-badge strong {
  color: #c9a84c;
  font-weight: 600;
}

.info-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
  line-height: 1.65;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.48);
}

.info-list li i {
  font-size: 15px;
  color: #c9a84c;
  flex-shrink: 0;
}

/* ------------------------------------------------
   PROCESS STEPS
   ------------------------------------------------ */
.process-section {
  padding: 72px 48px;
}

.process-heading {
  font-size: 26px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 48px;
}

.process-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px 28px;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  transition: background 0.18s ease;
}

.process-step:hover {
  background: #161616;
}

.step-number {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.15);
}

.step-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 4px;
  font-size: 20px;
  color: #c9a84c;
}

.step-title {
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
}

.step-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.12);
}

/* ------------------------------------------------
   RESPONSIVE — Tablet <= 1024px
   ------------------------------------------------ */
@media (max-width: 1024px) {
  .contact-body {
    grid-template-columns: 1fr;
  }

  .contact-info {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 36px 48px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
  }

  .info-block {
    flex: 1;
    min-width: 200px;
    padding: 0;
  }

  .info-divider {
    display: none;
  }

  .process-steps {
    flex-wrap: wrap;
    gap: 16px;
  }

  .step-connector {
    display: none;
  }

  .process-step {
    flex: 0 0 calc(50% - 8px);
  }
}

/* ------------------------------------------------
   RESPONSIVE — Mobile <= 768px
   ------------------------------------------------ */
@media (max-width: 768px) {
  .page-hero {
    padding: 48px 20px 36px;
  }

  .page-hero-title {
    font-size: 32px;
  }

  .contact-form-wrap {
    padding: 32px 20px;
  }

  .contact-info {
    padding: 32px 20px;
    flex-direction: column;
  }

  .info-block {
    padding: 20px 0;
  }

  .info-divider {
    display: block;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-section {
    padding: 48px 20px;
  }

  .process-step {
    flex: 0 0 100%;
  }
}

/* ------------------------------------------------
   RESPONSIVE — Small <= 480px
   ------------------------------------------------ */
@media (max-width: 480px) {
  .page-hero-title {
    font-size: 26px;
  }

  .form-submit {
    width: 100%;
  }

  .process-heading {
    font-size: 20px;
  }
}