.contact-section {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, #0d1117, #1a1f28, #422b1f);
  background-size: 400% 400%;
  animation: contactGradient 6s ease infinite;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #c9d1d9;
}

@keyframes contactGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.contact-section h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #58a6ff;
}

.contact-section p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 600px;
  color: #c9d1d9;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 500px;
}

input, textarea {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #21262d;
  font-size: 1rem;
  width: 100%;
  background: #1b1f24;
  color: #c9d1d9;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

input:focus, textarea:focus {
  border: 1px solid #58a6ff;
  box-shadow: 0 0 8px rgba(88,166,255,0.3);
  outline: none;
}

button {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  background: #58a6ff;
  color: #0d1117;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(88,166,255,0.4);
}
