.contact-section {
  background: radial-gradient(circle at top left, #111 0%, #000 100%);
  padding: 5rem 2rem;
  color: white;
  display: flex;
  justify-content: center;
}

.contact-content {
  max-width: 600px;
  width: 100%;
  text-align: center;
  animation: fadeInUp 1s ease forwards;
}

.contact-section .section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.contact-description {
  color: #aaa;
  font-size: 1rem;
  margin-bottom: 2rem;
}

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

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #333;
  padding: 1rem;
  border-radius: 12px;
  color: white;
  font-size: 1rem;
  transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 1px solid  #ff3c3c;
  outline: none;
}

.contact-form button {
  background: #ff5f5f;
  border: none;
  padding: 0.9rem 1.5rem;
  border-radius: 12px;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #ff3c3c;
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
