/* ══════════════════════════
   VIDEO SHOWCASE SECTION
   ══════════════════════════ */
.video-section {
  position: relative;
  background: var(--navy);
  padding: 7rem 0 6rem;
  overflow: hidden;
}
.video-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1.5px 1.5px, rgba(255,255,255,0.04) 1.5px, transparent 0);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 0;
}
.video-section .section-inner { position: relative; z-index: 1; }

.video-section-text {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.video-section-text p {
  color: rgba(255,255,255,0.48);
  font-size: 1.05rem;
  margin-top: 1rem;
  line-height: 1.75;
}

.video-poster-wrap {
  position: relative;
  max-width: 960px;
  margin: 3rem auto 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 50px 100px rgba(0,0,0,0.55), 0 0 0 1px rgba(212,146,10,0.15);
}
.video-poster-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-poster-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3,8,15,0.45);
  z-index: 1;
}

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2;
}
.video-play-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(212,146,10,0.5), 0 8px 32px rgba(212,146,10,0.35);
  animation: vplay-pulse 2.4s ease-in-out infinite;
  transition: transform 0.3s ease;
}
.video-play-btn:hover .video-play-circle { transform: scale(1.12); }
.video-play-circle svg {
  width: 34px;
  height: 34px;
  fill: #03080f;
  margin-left: 5px;
}
.video-play-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.video-iframe-wrap {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: none;
}
.video-iframe-wrap.active { display: block; }
.video-iframe-wrap iframe { width: 100%; height: 100%; border: none; }

.video-features {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.video-feature {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  font-weight: 500;
}
.video-feature svg {
  width: 15px;
  height: 15px;
  stroke: var(--gold);
  flex-shrink: 0;
}

/* Section header text on dark bg */
.video-section .section-eyebrow { color: var(--gold); }
.video-section .section-title.light { color: var(--white); }

@keyframes vplay-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,146,10,0.5), 0 8px 32px rgba(212,146,10,0.35); }
  50%       { box-shadow: 0 0 0 26px rgba(212,146,10,0), 0 8px 32px rgba(212,146,10,0.35); }
}

@media (max-width: 640px) {
  .video-play-circle { width: 70px; height: 70px; }
  .video-play-circle svg { width: 26px; height: 26px; }
  .video-features { gap: 1.25rem; }
}
