/* === CONTACT SECTION === */
.contact {
  padding: 4rem 1rem;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center all form elements */
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
  padding: 1.5rem;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  background-color: #f5f5f5;
  color: #000;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #00f6ff;
  background-color: #ffffff;
  color: #000000;
}

.contact-form .btn {
  background-color: #00d1ff;
  color: #000;
  width: 100%;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  align-self: center; /* Center the button */
}

.contact-form .btn:hover {
  background-color: #00b5e6;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 15px rgba(0, 209, 255, 0.4);
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .contact-form {
    padding: 1rem;
  }

  .contact-form .btn {
    width: 100%;
    text-align: center;
  }
}
