.video-section {
  padding: 100px 0;
  text-align: center;
  background: #ffffff;
}

.video-container {
  max-width: 900px;
  margin: auto;
}

.video-text h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.video-text p {
  color: var(--text-gray);
  margin-bottom: 40px;
}

.video-thumbnail {
  position: relative;
  cursor: pointer;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.video-thumbnail img {
  width: 100%;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--green-dark);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  transition: 0.3s ease;
}

.video-thumbnail:hover .play-button {
  background: var(--green-light);
  transform: translate(-50%, -50%) scale(1.1);
}

/*** Modal Styles */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.video-modal-content {
  position: relative;
  width: 80%;
  max-width: 1000px;
}

.video-modal video {
  width: 100%;
  border-radius: 12px;
}

.video-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 30px;
  cursor: pointer;
}