/* Custom CSS Variables & Utilities */
:root {
  --scrollbar-bg: #FAF7F2;
  --scrollbar-thumb: #C4956A;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--scrollbar-bg);
}
::-webkit-scrollbar-thumb {
  background-color: var(--scrollbar-thumb);
  border-radius: 20px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse-badge {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

.animate-pulse-badge {
  animation: pulse-badge 0.3s ease-in-out;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* Hide number arrows in input */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}

/* FAQ Accordion specific */
.faq-content {
  display: none;
}
.faq-item.active .faq-content {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-item.active button {
  color: #C4956A;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Smooth active state for nav links */
.nav-link-active {
  color: #C4956A !important;
}

/* Fix mobile menu height */
@media (max-width: 768px) {
  #mobile-menu {
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
}
