/* Custom Styles & Animation Enhancements for Zeolite.web.id */
:root {
  --primary-emerald: #0d9488;
  --primary-dark: #064e3b;
  --primary-deep: #022c22;
  --accent-gold: #f59e0b;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #0d9488;
}

/* Subtle Background Grid Pattern */
.bg-grid-pattern {
  background-image: radial-gradient(rgba(13, 148, 136, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
}

.bg-dot-pattern-dark {
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* Glassmorphism Classes */
.glass-panel {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.glass-panel-dark {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Pulsing Badge Glow */
@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.4;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.8;
  }
}

.pulse-glow {
  animation: pulse-ring 2.5s infinite ease-in-out;
}

/* Range Slider Styling */
input[type=range] {
  -webkit-appearance: none;
  background: #e2e8f0;
  height: 6px;
  border-radius: 9999px;
  outline: none;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0d9488;
  cursor: pointer;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
  transition: all 0.2s ease;
}
input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 0 0 5px rgba(13, 148, 136, 0.3);
}

/* Accordion Transition */
.faq-content {
  transition: max-height 0.35s ease, opacity 0.35s ease, margin-top 0.35s ease;
}

/* Subtle Shimmer for High Priority Badges */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.shimmer-badge {
  background: linear-gradient(90deg, rgba(245,158,11,0.15) 0%, rgba(245,158,11,0.45) 50%, rgba(245,158,11,0.15) 100%);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}
