/* BUNGAS PRINTING WORKS - Custom Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
  --brand-navy: #0B192C;
  --brand-blue: #1E3E62;
  --brand-purple: #4F46E5;
  --brand-purple-light: #6366F1;
  --brand-orange: #F97316;
  --brand-orange-dark: #EA580C;
  --brand-bg: #F8FAFC;
}

html {
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-track {
  background: #F1F5F9;
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94A3B8;
}

/* Glassmorphism */
.glass-header {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.dark-glass-card {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(51, 65, 85, 0.7);
}

/* Subtle gradient text */
.text-gradient {
  background: linear-gradient(135deg, #0B192C 0%, #4F46E5 60%, #F97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-orange {
  background: linear-gradient(135deg, #F97316 0%, #FB923C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Pulse and Float Animations */
@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

.animate-pulse-glow {
  animation: pulseGlow 2.5s infinite;
}

@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.animate-float {
  animation: floatSlow 4s ease-in-out infinite;
}

/* Service & Product Card Hover */
.service-card {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
}

/* Image Zoom Hover */
.img-zoom-wrapper {
  overflow: hidden;
}
.img-zoom-wrapper img {
  transition: transform 0.5s ease;
}
.service-card:hover .img-zoom-wrapper img,
.product-card:hover .img-zoom-wrapper img,
.gallery-card:hover .img-zoom-wrapper img {
  transform: scale(1.08);
}

/* Accordion Smooth Transition */
.faq-content {
  transition: max-height 0.35s ease-out, opacity 0.3s ease;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
}
.faq-item.active .faq-content {
  max-height: 350px;
  opacity: 1;
}
.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: #F97316;
}

/* Modal Backdrop */
.modal-backdrop {
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
}

/* Gallery Filter Active State */
.filter-btn.active {
  background-color: #0B192C !important;
  color: #FFFFFF !important;
  border-color: #0B192C !important;
}