/* Video Container Styles */
.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

.video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: #000;
}

.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.video-play-icon:hover {
  background: rgba(255, 255, 255, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-icon i {
  font-size: 24px;
  color: #333;
  margin-left: 4px;
}

/* Fixed Contact Icons */
.fixed-contact-icons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-right: 0;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.contact-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.phone-icon {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  50% {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
}

/* Hero Pattern - Fixed and Stable with Primary Color */
.hero-pattern {
  background: 
    radial-gradient(ellipse at 30% 40%, rgba(39, 16, 191, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(39, 16, 191, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 20%, rgba(39, 16, 191, 0.06) 0%, transparent 60%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Body Background - Same as Hero Pattern with Primary Color */
body {
  background: 
    radial-gradient(ellipse at 30% 40%, rgba(39, 16, 191, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(39, 16, 191, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 20%, rgba(39, 16, 191, 0.06) 0%, transparent 60%);
  background-attachment: fixed;
  min-height: 100vh;
}

/* Responsive */
@media (max-width: 768px) {
  .fixed-contact-icons {
    right: 15px;
    bottom: 15px;
  }
  
  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

