/* contact.css */
.form-card {
  max-width: 600px;
  margin: 2.5rem auto 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 3rem 2.5rem;
  border-radius: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06), inset 0 2px 4px rgba(255, 255, 255, 1);
  border: 1px solid rgba(255, 255, 255, 1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input,
textarea {
  padding: 1rem 1.2rem;
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 183, 3, 0.15);
}

input::placeholder,
textarea::placeholder {
  color: #aaa;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

button[type="submit"] {
  background: #1A1A1A;
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.05rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  cursor: pointer;
  border-radius: 16px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

button[type="submit"]:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

button[type="submit"]:active {
  transform: translateY(0);
}

@media (max-width: 900px) {
  .form-card {
    padding: 2rem 1.5rem;
    border-radius: 24px;
  }
}
