/* Las Vegas Best Internet - Custom Styles */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Header shadow on scroll */
header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Tab button transitions */
.tab-btn {
  transition: all 0.2s ease;
}

/* FAQ accordion animation */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.show {
  max-height: 500px;
}

/* Card hover effects */
.provider-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.provider-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* Pulse animation for bonus badge */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
}

.bonus-badge {
  animation: pulse-glow 2s infinite;
}

/* Mobile menu animation */
#mobileNav {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

#mobileNav.hidden {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

#mobileNav:not(.hidden) {
  opacity: 1;
  transform: translateY(0);
}

/* Form focus states */
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #041d55;
  box-shadow: 0 0 0 3px rgba(4, 29, 85, 0.1);
}

/* Button hover states */
.btn-primary {
  transition: all 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(4, 29, 85, 0.2);
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .hero-title {
    font-size: 2.25rem;
  }
}

/* Smooth section transitions */
section {
  scroll-margin-top: 80px;
}

/* Custom scrollbar (optional) */
::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}

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