/* Sticky navbar gains a solid background + shadow once the page is scrolled */
#navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(200, 35, 44, 0.1);
}
.logo-icon{
  max-width:140px;
}

/* Mobile nav dropdown */
#mobile-menu.open {
  display: flex;
}

/* FAQ accordion open state */
.faq-item.active .faq-content {
  max-height: 320px;
}
.faq-item.active .chevron {
  transform: rotate(180deg);
}

/* Toast notification enter/exit */
#toast {
  transform: translateY(120px);
  opacity: 0;
  pointer-events: none;
}
#toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}