/* ============================================
   GMC - Product Detail Styling
   ============================================ */

/* Hero Background Overlay */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 70% 50%,
    rgba(37, 99, 235, 0.15) 0%,
    rgba(15, 23, 42, 1) 100%
  );
  z-index: 1;
}

/* Glow Effect dibelakang gambar produk */
.product-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: var(--orange, #f97316);
  filter: blur(120px);
  opacity: 0.2;
  z-index: 0;
}

/* Floating Animation */
.floating-img {
  animation: floating 4s ease-in-out infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Feature Item Hover */
.feature-item {
  transition: all 0.4s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
  background: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* Table Styling */
table td {
  font-size: 0.95rem;
}

/* Custom Nav Transition */
.nav-link {
  transition: color 0.3s;
}

.nav-link:hover {
  color: #f97316; /* Orange */
}

/* Vehicle Installation Section Animations */
@keyframes dash {
  to {
    stroke-dashoffset: -20;
  }
}

.animate-dash {
  animation: dash 2s linear infinite;
}

/* Pulse Animation for Signal Waves */
@keyframes signal-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.signal-wave {
  animation: signal-pulse 1.5s ease-out infinite;
}
