/* Contact Section Styles */
.contact {
  padding: 100px 0 50px 0;
  color: #f8f9fa;
}

.contact h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #ff6f61;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #f8f9fa;
  font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form .btn-send {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: #6c5ce7;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form .btn-send:hover {
  background: #ff6f61;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
}