<style>
  .modern-contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
  
  .form-group {
    position: relative;
    margin-bottom: 1.5rem;
  }
  
  .form-control {
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    padding: 10px 0;
    background: transparent;
    transition: all 0.3s;
  }
  
  .form-control:focus {
    box-shadow: none;
    border-color: transparent;
  }
  
  .form-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3a8df8, #86b9ff);
    transition: all 0.5s;
  }
  
  .form-control:focus ~ .form-underline {
    width: 100%;
  }
  
  textarea.form-control {
    resize: none;
    border: 1px solid #eee;
    padding: 15px;
    transition: all 0.3s;
  }
  
  textarea.form-control:focus {
    border-color: #3a8df8;
  }
  
  .gradient-button {
    background: linear-gradient(135deg, #3a8df8, #86b9ff);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(58, 141, 248, 0.3);
  }
  
  .gradient-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(58, 141, 248, 0.4);
    color: white;
  }

.return-home {
  text-align: center;
  margin-top: 40px;
}

.return-home .home-btn {
  display: inline-block;
  background: linear-gradient(135deg, #14f9e4, #ff5b99);
  color: #fff;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(20, 249, 228, 0.3);
  transition: all 0.3s ease;
}

.return-home .home-btn:hover {
  background: linear-gradient(135deg, #ff5b99, #14f9e4);
  transform: scale(1.08);
  box-shadow: 0 6px 30px rgba(255, 91, 153, 0.5);
}

.return-home .home-btn i {
  margin-right: 8px;
}



</style>