/* Contact Section */
.contact-section {
  background: radial-gradient(circle at center, #121620, #0b0e14);
  color: #e4e7ec;
  padding: 100px 20px;
  border-radius: 12px;
}

/* Input and textarea */
.contact-input {
  background: #181c24;
  border: 1px solid #2f3642;
  color: #e4e7ec;
  border-radius: 8px;
  padding: 12px 15px;
  width: 100%;
  font-size: 1rem;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.contact-input:focus {
  border-color: #6f9bfa;
  outline: none;
  box-shadow: 0 0 10px rgba(111, 155, 250, 0.3);
}

/* Success alert */
.success-alert {
  background-color: #1f2937;
  color: #a0f0a0;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  box-shadow: 0 0 10px rgba(72, 255, 136, 0.3);
  margin-bottom: 25px;
}

/* Button overrides */
.btn-primary {
  background: linear-gradient(90deg, #5d5fef, #6f9bfa);
  border: none;
  box-shadow: 0 0 10px #6f9bfa;
  border-radius: 6px;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #6f9bfa, #5d5fef);
  box-shadow: 0 0 20px #6f9bfa;
}

/* WhatsApp */
.btn-success {
  background-color: #25D366;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 6px;
}
