/* Contact Form Styles */
.contact-form {
  background: rgba(27,33,64,0.98);
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(0,202,255,0.08);
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 420px;
  margin: 2.5rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: none;
  border-radius: 8px;
  background: #181d36;
  color: var(--white);
  font-size: 1rem;
  font-family: inherit;
  box-shadow: 0 1px 4px rgba(0,202,255,0.04);
  margin-bottom: 0.5rem;
  transition: box-shadow 0.2s, border 0.2s;
  outline: none;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 0 2px var(--cyan);
  border: 1px solid var(--cyan);
}
.contact-form button.btn {
  width: 100%;
  margin: 0 auto;
  padding: 0.9rem 0;
  font-size: 1.1rem;
  border-radius: 30px;
  background: var(--cyan);
  color: var(--blue-dark);
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(0,202,255,0.10);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.contact-form button.btn:hover {
  background: #00b0e6;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,202,255,0.18);
}

.contact.container > h2 {
  margin-bottom: 0.5rem;
}
.contact.container > p {
  margin-bottom: 1.5rem;
  color: #e0f7fa;
} 