.contact-container {
  min-height: 100vh;
  padding: 80px 10% 120px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
}

/* LEFT */
.contact-info h1 {
  font-size: 64px;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 24px;
}

.contact-intro {
  max-width: 420px;
  font-size: 16px;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 64px;
}

.contact-details div {
  margin-bottom: 32px;
}

.contact-details span {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 6px;
}

.contact-details a,
.contact-details p {
  font-size: 15px;
  color: #fff;
  text-decoration: none;
}

/* RIGHT */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Subtle card effect for contact panels (lighter than changelog) */
.contact-info,
.contact-form {
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
  padding: 28px;
  transition: box-shadow 0.35s ease, border-left-color 0.35s ease, transform 0.35s ease;
  border-left: 3px solid rgba(204,47,38,0.06);
}

.contact-info:hover,
.contact-form:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.28);
  border-left-color: rgba(204,47,38,0.22);
  transform: translateY(-4px);
}

.contact-form input,
.contact-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,1);

  padding: 12px 4px;
  font-size: 15px;
  color: #fff;
}

.contact-form textarea {
  resize: none;
  height: 120px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: #fff;
}

/* Placeholder text white */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.9);
}

.contact-form button {
  margin-top: 32px;
  height: 56px;

  background: linear-gradient(90deg, #cc2f26, #ff6a00);
  border: none;

  font-size: 14px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
}
