/* ============================================
   Video Showcase Section
   ============================================ */

.video-showcase {
  padding: 80px 0;
  background: var(--gray-100);
}

.video-showcase-header {
  text-align: center;
  margin-bottom: 50px;
}

.video-showcase-header h2 {
  color: var(--secondary-color);
  font-size: 2.5rem;
  margin-bottom: 15px;
  line-height: 1.3;
}

.video-showcase-header .subtitle {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 600;
  max-width: 800px;
  margin: 0 auto;
}

.video-showcase-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.video-showcase-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 15px;
}

.video-showcase-text ul {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.video-showcase-text ul li {
  padding: 12px 0;
  color: var(--text-color);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.video-showcase-text ul li::before {
  content: "✓";
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.video-showcase-cta {
  text-align: center;
  margin-top: 40px;
}

.video-showcase-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  font-size: 1.1rem;
}

.video-placeholder {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  background: var(--gray-900);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.video-placeholder iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

/* Responsive Design */
@media (max-width: 968px) {
  .video-showcase-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .video-showcase-text h2 {
    font-size: 1.8rem;
  }
  
  .video-placeholder {
    order: -1; /* Move video above text on mobile */
  }
}

@media (max-width: 640px) {
  .video-showcase {
    padding: 60px 0;
  }
  
  .video-showcase-text h2 {
    font-size: 1.6rem;
  }
  
  .video-play-button {
    width: 60px;
    height: 60px;
  }
  
  .video-play-button svg {
    width: 24px;
    height: 24px;
  }
}
