/* Button Variants */
.btn-primary {
  @apply bg-orange-500 hover:bg-orange-600 text-white px-6 py-3 rounded-lg font-semibold transition-all duration-300 transform hover:scale-105 shadow-lg hover:shadow-xl;
}

.btn-secondary {
  @apply border-2 border-orange-500 text-orange-500 hover:bg-orange-500 hover:text-white px-6 py-3 rounded-lg font-semibold transition-all duration-300 transform hover:scale-105;
}

.btn-ghost {
  @apply text-orange-500 hover:bg-orange-50 px-6 py-3 rounded-lg font-semibold transition-all duration-300;
}

/* Card Styles */
.card {
  @apply bg-white rounded-xl shadow-lg p-6 transition-all duration-300 hover:shadow-2xl hover:-translate-y-1;
}

.card-gradient {
  @apply bg-gradient-to-br from-orange-500 to-orange-600 text-white rounded-xl shadow-lg p-6;
}

/* Form Styles */
.form-input {
  @apply w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-orange-500 focus:border-transparent transition-all duration-300;
}

.form-label {
  @apply block text-sm font-semibold text-gray-700 mb-2;
}

/* Focus States */
.focus-ring {
  @apply focus:outline-none focus:ring-2 focus:ring-orange-500 focus:ring-offset-2;
}

/* Enhanced Scroll Indicators */
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(246, 141, 46, 0.2);
  z-index: 9999;
  backdrop-filter: blur(10px);
}

.scroll-indicator::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--primary-orange), var(--primary-orange-light));
  width: var(--scroll, 0%);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(246, 141, 46, 0.5);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(241, 241, 241, 0.5);
  backdrop-filter: blur(10px);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-orange), var(--primary-orange-dark));
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--primary-orange-light), var(--primary-orange));
}

/* Navigation Enhancement */
.nav-blur {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}