body {
  cursor: none !important;
  /* Hide scrollbar but keep functionality */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

body::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

a, button, [role="button"], .nav-link, .btn {
  cursor: none !important;
}

#laser-trail-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 999999;
}

#laser-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1000000;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 15px var(--accent), 0 0 5px #fff;
  transition: width 0.1s ease, height 0.1s ease, background-color 0.3s ease;
}

#laser-dot.expanding {
  width: 40px;
  height: 40px;
  background-color: rgba(45, 212, 191, 0.2);
  border: 1px solid var(--accent);
}

.detail-banner-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

@media (max-width: 991.98px) {
  .detail-banner-img {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .detail-banner-img {
    height: 250px;
  }
}

.feature-section {
  padding: 80px 0;
}

.feature-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.feature-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-img-wrapper:hover .feature-img {
  transform: scale(1.05);
}

.feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

@media (max-width: 991.98px) {
  .feature-img {
    height: 300px;
  }
}

/* Footer — corporate minimal styles */
.main-footer {
  background: #071827;
  color: rgba(255,255,255,0.9);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(255,255,255,0.03);
}
.main-footer .container {
  max-width: 1140px;
}
.main-footer .social-links { display: flex; justify-content: center; align-items: center; }
.main-footer .social-links a, .main-footer .social-links span { color: rgba(255,255,255,0.75); }
.main-footer a.text-primary { color: #7ec8ff; text-decoration: none; font-weight: 600; }
.main-footer a.text-primary:hover { text-decoration: underline; }
.main-footer .text-white-50 { color: rgba(255,255,255,0.6) !important; }
.main-footer .small { font-size: 0.85rem; }
.hover-accent:hover { color: #7ec8ff !important; text-decoration: none; }

@media (max-width: 575.98px) {
  .main-footer .row { text-align: center; }
  .main-footer .col-md-4 { margin-bottom: 0.5rem; }
}
