/* =============================
   VIDEO SCROLL SECTION
============================= */
.video-scroll-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* =============================
   VIDEO
============================= */
.video-section-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.video-section-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =============================
   OVERLAY (ELEMENTOR)
============================= */
.video-overlay {
  position: relative;
  z-index: 2;
  transition: opacity 0.5s ease;
}

/* =============================
   CONTENT (ELEMENTOR)
============================= */
.video-content {
  position: relative;
  z-index: 3;
  transition: opacity 0.5s ease;
}

/* =============================
   CONTROLS
============================= */
.video-controls {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  gap: 12px;
}

.video-controls button {
  width: 48px;
  height: 48px;
  border-radius: 50% !important;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
}

.video-controls button img{
  width: 28px;
  height: 28px;
}

.video-controls button:hover {
  transform: scale(1.1);
  background: rgba(255,255,255,0.2);
}

/* =============================
   FADE EFFECT
============================= */
.video-scroll-section.active .video-overlay,
.video-scroll-section.active .video-content {
  opacity: 0;
  pointer-events: none;
}

/* =============================
   FIX CLICK BLOCKING
============================= */
.video-overlay {
  pointer-events: none;
}

.video-scroll-section.active .video-content {
  pointer-events: none;
}