.enhanced-btn {
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  border: none;
  color: white !important;
  padding: 12px 30px;
  margin-top: 25px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(238, 90, 36, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.enhanced-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.enhanced-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(238, 90, 36, 0.4);
  color: white;
}

.enhanced-btn:hover::before {
  left: 100%;
}

.enhanced-btn:active {
  transform: scale(1.02);
}
