/* ===================================================================
   Section 08 — Contact Form 1
   =================================================================== */

/* .s08-wrap is the positioned container for the neon orb */
.s08-wrap {
  position: relative;
  overflow: visible;
}

/* Neon orb — positioned outside the card on the right */
.s08-orb {
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}

/* The form card sits above the orb */
.s08-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* ---- Left column: form ---- */
.s08-heading {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--color-text);
}

.s08-subtext {
  margin-bottom: 32px;
  max-width: 360px;
}

.s08-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ---- Right column: illustration ---- */
.s08-illus-col {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.s08-illus {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .s08-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
  .s08-illus-col {
    display: none;
  }
  .s08-orb {
    display: none;
  }
}
