/* Website Button */

.website-btn {
  position: relative;
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: 600;
  border: 2px solid #c8742a;
  color: #c8742a;
  background: transparent;
  transition: all 0.35s ease;
  overflow: hidden;
}

.website-btn::after {
  content: "";
  position: absolute;
  background: #c8742a;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: -1;
}

.website-btn:hover::after {
  transform: scaleX(1);
}

.website-btn span::after {
  content: "";
  margin-left: 6px;
  transition: all 0.3s;
}

.website-btn:hover span::after {
  content: " >>";
}

/* Submit Button Animation */

.submit-btn {
  background: #c8742a;
  color: white;
  transition: all 0.25s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200, 116, 42, 0.25);
}

.submit-btn:active {
  transform: scale(0.97);
}

/* Validations */

.error-border {
  border-color: #ef4444 !important; /* Tailwind red-500 */
}

/* Card Hover Enhancements */

.bg-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.bg-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Modal Transition Utilities */

#successModal.show {
  opacity: 1;
}

#successModal.show > div {
  transform: scale(1);
}
