/* ALINDO B2B Export Website - Premium Custom Styles 2026 */

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

/* Premium typography tweaks */
h1, h2, h3 {
  font-feature-settings: "tnum";
}

/* Navbar glassmorphism effect on scroll */
.nav-scrolled {
  background-color: rgba(10, 37, 64, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

/* Hero overlay gradient */
.hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(10, 37, 64, 0.65) 0%,
    rgba(10, 37, 64, 0.75) 100%
  );
}

/* Product card hover effects */
.product-card {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Process step cards */
.process-step {
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-4px);
  border-color: #0EA5E9;
}

/* Trust signal pills */
.trust-pill {
  transition: all 0.2s ease;
}

.trust-pill:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

/* WhatsApp button pulse animation */
.whatsapp-btn {
  position: relative;
}

.whatsapp-btn::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 9999px;
  border: 2px solid #25D366;
  opacity: 0.6;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.3;
  }
}

/* FAQ accordion */
.faq-question {
  cursor: pointer;
  transition: all 0.2s ease;
}

.faq-question:hover {
  color: #0EA5E9;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 200px;
  padding-top: 0.5rem;
  padding-bottom: 1rem;
}

/* Section divider */
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #0EA5E9 20%, #0EA5E9 80%, transparent);
}

/* Mobile menu */
.mobile-menu {
  animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form input focus styles */
input, textarea, select {
  transition: all 0.2s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #0EA5E9;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

/* Stats counter animation ready */
.stat-number {
  font-variant-numeric: tabular-nums;
}

/* Professional badge */
.badge {
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  border-radius: 9999px;
}