/* Custom CSS & Enhancements for Bastian Teknik */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #0284c7;       /* Ocean Blue */
  --primary-dark: #0369a1;
  --secondary: #0d9488;     /* Cyan / Teal */
  --accent: #f59e0b;        /* Warm Amber */
  --dark: #0f172a;          /* Slate 900 */
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #1e293b;
  background-color: #f8fafc;
  overflow-x: hidden;
}

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

/* Glassmorphism */
.glass-nav {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

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

/* Hero Gradient & Patterns */
.hero-gradient {
  background: linear-gradient(135deg, #0f172a 0%, #0369a1 50%, #0284c7 100%);
}

.hero-mesh {
  background-color: #0f172a;
  background-image: 
    radial-gradient(at 0% 0%, rgba(2, 132, 199, 0.35) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(13, 148, 136, 0.3) 0px, transparent 50%),
    radial-gradient(at 50% 50%, rgba(14, 165, 233, 0.15) 0px, transparent 60%);
}

/* Card Hover Animation */
.service-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgba(2, 132, 199, 0.1), 0 8px 10px -6px rgba(2, 132, 199, 0.1);
}

/* Pulse animation for CTA */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(34, 197, 94, 0);
  }
}

.pulse-wa {
  animation: pulse-glow 2s infinite;
}

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

/* Gallery Hover Overlay */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}
.gallery-item img, .gallery-item video {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img, .gallery-item:hover video {
  transform: scale(1.08);
}
.gallery-overlay {
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.3) 60%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Lightbox Modal */
#lightbox-modal.active {
  display: flex !important;
}

/* Video Badge Floating */
.play-badge {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
}

