body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #e3f2fd, #f0f4ff);
}

.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  min-height: 100vh;
  background: url('bg-blur.svg') no-repeat center/cover;
}

.contact-box {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 100%;
  color: #003e7e;
  text-align: center;
  animation: fadeIn 0.8s ease;
}

.contact-box h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-box a {
  color: #0046aa;
  text-decoration: none;
  font-weight: 500;
}

.contact-form {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  outline: none;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: #ffffff;
  box-shadow: 0 0 0 2px #0072c6;
}

.send-btn {
  background: linear-gradient(to right, #0072c6, #005ea6);
  color: white;
  padding: 14px 20px;
  border-radius: 30px;
  border: none;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 114, 198, 0.2);
}

.send-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(to right, #005ea6, #004891);
  box-shadow: 0 12px 25px rgba(0, 114, 198, 0.3);
}

.send-btn i {
  margin-right: 8px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
