body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f7fbfc;
  color: #1a1a1a;
}

.contact-hero {
  background: linear-gradient(135deg, #748DAE, #748DAE);
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.contact-hero h1 {
  font-size: 38px;
  margin-bottom: 10px;
}

.contact-hero p {
  font-size: 18px;
  opacity: 0.9;
}

.contact-form-section {
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-container {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  padding: 40px;
  width: 100%;
  max-width: 600px;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #748DAE;
}

input,
textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  background-color: #f9f9f9;
  transition: border 0.3s ease;
}

input:focus,
textarea:focus {
  border-color: #748DAE;
  outline: none;
}

.submit-btn {
  background-color: #384b64;
  color: #ffffff;
  padding: 12px 25px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #8cc4c8;
}

.custom-notif {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 15px 25px;
  border-radius: 8px;
  font-size: 16px;
  color: white;
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.custom-notif.show {
  opacity: 1;
  transform: translateY(0);
}

.custom-notif.success {
  background: linear-gradient(135deg, #4caf50, #81c784);
  box-shadow: 0 6px 15px rgba(76, 175, 80, 0.3);
}

.custom-notif.error {
  background: linear-gradient(135deg, #e53935, #ef5350);
  box-shadow: 0 6px 15px rgba(239, 83, 80, 0.3);
}
