/* =============================================================
   CONTACT — Two-column layout: info + form
   ============================================================= */

.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

/* ── Left column — contact info ─────────────────────────────── */

.ct-left {
  padding-top: 0.5rem;
  min-width: 0;
}

.ct-blurb {
  font-size: 1rem;
  color: rgba(170, 188, 230, 0.6);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.ct-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  color: rgba(170, 188, 230, 0.6);
}

.ct-ico {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 8px;
  flex-shrink: 0;
  border: 1px solid rgba(0, 240, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  background: rgba(0, 240, 255, 0.04);
}

.ct-row a {
  color: var(--cyan);
  text-decoration: none;
  transition: text-shadow 0.2s;
}

.ct-row a:hover {
  text-shadow: 0 0 10px var(--cyan);
}

/* ── Right column — form ────────────────────────────────────── */

.cf {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  min-width: 0;
}

/* Two fields side by side */
.f2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

/* Field group */
.fg {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
  position: relative;
}

.fg label {
  font-family: var(--font-display);
  font-size: 0.56rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(168, 85, 247, 0.75);
}

.fg input,
.fg textarea,
.fg select {
  width: 100%;
  min-width: 0;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 0.82rem 1rem;
  color: #d5dbf5;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  resize: vertical;
  appearance: none;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.fg input:focus,
.fg textarea:focus,
.fg select:focus {
  border-color: rgba(0, 240, 255, 0.4);
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.06),
              0 0 18px rgba(0, 240, 255, 0.1);
  background: #000;
}

.fg select option {
  background: #000;
  color: #d5dbf5;
}

.fg textarea {
  min-height: 115px;
}

/* Neon underline that expands on focus */
.fl {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  border-radius: 0 0 6px 6px;
  transition: width 0.3s;
}

.fg input:focus  ~ .fl,
.fg textarea:focus ~ .fl {
  width: 100%;
}

@media (max-width: 920px) {
  .ct-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 480px) {
  .f2 {
    grid-template-columns: 1fr;
  }
}
