* {
  --darkblue: #1a5579;
  --green: #3e827a;
  --darkgreen: #286358;
}
.btn,
#gform_submit_button_2.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 25px;
  border-radius: 50px;
  color: #fff;
  text-align: center;
  font-family: "Voltaire", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-width: 200px;
  box-sizing: border-box;
  border: 0;
  height: 55px;
}
#gform_submit_button_2.button {
  background: linear-gradient(90deg, #ee7b3e 0%, #f3b174 100%) !important;
  box-shadow: 0 4px 15px rgba(238, 123, 62, 0.3) !important;
}
.btn-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  overflow: hidden;
}
.btn-icon-rotate,
.btn-icon-dropdown {
  transform: scaleX(-1);
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  overflow: hidden;
}
/* Primary Button */
.btn-primary {
  background: linear-gradient(90deg, #ee7b3e 0%, #f3b174 100%);
  box-shadow: 0 4px 15px rgba(238, 123, 62, 0.3);
}
.btn-primary:hover {
/*   transform: translateY(-2px); */
  box-shadow: 0 6px 20px rgba(238, 123, 62, 0.4);
}
.btn-primary:active {
  transform: translateY(0);
}
/* Secondary Button (Outlined) */
.btn-secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.btn-secondary:hover {
  background: #fff;
  color: #1a5579;
/*   transform: translateY(-2px); */
  box-shadow: 0 4px 15px rgba(95, 179, 163, 0.3);
}
.btn-secondary:hover img,
.btn-outline img {
  filter: invert(1);
}
.btn-surprise img {
  filter: unset !important;
}
.btn-secondary:active {
  transform: translateY(0);
}
.btn-tertiary {
  background: var(--green);
  color: #fff;
}
.btn-tertiary:hover {
/*   transform: translateY(-2px); */
  box-shadow: 0 4px 15px rgba(95, 179, 163, 0.3);
}
.btn-outline {
  background: #fff;
  color: #3e827a;
  border: 2px solid #3e827a;
}
.btn-outline:hover {
/*   transform: translateY(-2px); */
  box-shadow: 0 4px 15px rgba(95, 179, 163, 0.3);
}
/* Responsive button scaling */
.btn {
  white-space: nowrap;
  flex-shrink: 0;
}
/* Icons standaard: volledig buiten beeld geschoven */
.btn-icon img {
  display: block;
  width: 24px;
  height: 24px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
/* scaleX(-1) op wrapper flipt de as, dus -100% = visueel van rechts */
.btn-icon-rotate img,
.btn-icon-dropdown img {
  display: block;
  width: 24px;
  height: 24px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
/* Op hover: beide inschuiven naar positie */
.btn:hover .btn-icon img,
.btn:hover .btn-icon-rotate img,
.btn:hover .btn-icon-dropdown img {
  transform: translateX(0);
}
@media (max-width: 1400px) {
  .btn {
    font-size: 18px;
    padding: 12px 12px;
    min-width: auto;
    gap: 8px;
  }
  .btn-icon,
  .btn-icon-rotate,
  .btn-icon-dropdown {
    width: 20px;
    height: 20px;
  }
  .btn-icon img,
  .btn-icon-rotate img,
  .btn-icon-dropdown img {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 767px) {
  .btn {
    margin: auto;
  }
}