/* UNHINGED Dispute Resolution - Custom Styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #002D72;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #FFB800;
}

/* Smooth transitions */
a, button {
  transition: all 0.3s ease;
}

/* Focus states for accessibility */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline: 2px solid #FFB800;
  outline-offset: 2px;
}

/* Custom hover effects */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 45, 114, 0.1), 0 10px 10px -5px rgba(0, 45, 114, 0.04);
}

/* Gradient text effect */
.gradient-text {
  background: linear-gradient(135deg, #002D72 0%, #FFB800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Pulse animation for CTAs */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Custom file upload hover */
input[type="file"] + .upload-area:hover {
  border-color: #FFB800;
  background-color: rgba(255, 184, 0, 0.05);
}