.content-wrapper {
  background-color: var(--theme-background);
  min-height: 100vh;
}

/* 🔄 Slider & Scrolling Essentials */
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
.scrollbar-hide {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.horizontal-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.horizontal-scroll::-webkit-scrollbar {
  display: none;
}

.btn-pill {
  border-radius: 999px;
}

.link-underline {
  text-decoration: none;
  position: relative;
}

.link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s ease;
}

.link-underline:hover::after,
.link-underline:focus::after {
  transform: scaleX(1);
}

.site-footer {
  background-color: var(--bs-secondary-bg, #f1f5f9);
  color: var(--theme-text-primary);
  border-top: 1px solid var(--theme-border-subtle);
  font-size: 0.95rem;
}

.site-footer .navbar-brand {
  padding: 0;
}

.site-footer .footer-logo {
  width: 168px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.site-footer .footer-logo:hover {
  transform: scale(1.03);
}

.site-footer .footer-brand {
  font-size: 1.1rem;
  color: var(--theme-text-primary);
}

.site-footer .footer-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--theme-text-primary);
}

.site-footer .footer-link {
  color: var(--theme-text-secondary);
  text-decoration: none;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

.site-footer .footer-link:hover,
.site-footer .footer-link:focus {
  color: var(--theme-accent);
  text-decoration: underline;
}

.site-footer .footer-divider {
  border-color: var(--theme-border-subtle);
  opacity: 1;
}

.site-footer .social-link {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--theme-accent-soft);
  color: var(--theme-text-secondary);
  transition: all 0.25s ease;
  font-size: 0.95rem;
}

.site-footer .social-link:hover,
.site-footer .social-link:focus {
  background: var(--theme-accent-strong);
  color: var(--theme-accent);
  transform: translateY(-2px);
  text-decoration: none;
}

@media (max-width: 767.98px) {
  .site-footer .footer-logo {
    width: 140px;
  }
}

@media (max-width: 575.98px) {
  .site-footer .footer-logo {
    width: 125px;
  }

  .site-footer p,
  .site-footer a,
  .site-footer li {
    font-size: 0.88rem;
  }

  .site-footer .social-links {
    justify-content: flex-start;
  }
}

/* Chat Floating Button - Minimal custom CSS for animations */
#chatToggleBtn.active .chat-icon {
    opacity: 0;
    transform: rotate(90deg);
}

#chatToggleBtn.active .close-icon {
    opacity: 1;
    transform: rotate(0deg);
}

#chatOptions.show {
    max-height: 200px;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

/* Animate from bottom to top - WhatsApp appears first, then Messenger */
#chatOptions.show a:nth-child(1) {
    animation: slideUpFromBottom 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.1s forwards;
}

#chatOptions.show a:nth-child(2) {
    animation: slideUpFromBottom 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s forwards;
}

@keyframes slideUpFromBottom {
    from {
        opacity: 0;
        transform: translateY(32px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
