/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, #001f3f, #0054a6);
  color: #fff;
  overflow: hidden;
  padding: 120px 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.hero-content {
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-buttons .btn {
  padding: 15px 30px;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-buttons .btn i {
  margin-right: 10px;
}

.btn-whatsapp {
  background-color: #25d366;
  color: #fff;
}
.btn-whatsapp:hover {
  background-color: #128c7e;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.hero-video-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  width: 100%;
}

#heroVideoDesktop,
#heroVideoMobile {
  width: 100%;
  height: auto;
  display: block;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s;
}

.play-button {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s;
}

.play-button i {
  font-size: 30px;
  color: #fff;
}

.play-button:hover {
  transform: scale(1.1);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-card {
  background-color: #0054a6;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
}

.stat-card:hover {
  background-color: #003e7a;
  transform: translateY(-2px);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  opacity: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: #FFFFFF;
  font-weight: 600;
  opacity: 1;
}

/* Background Animation */
.hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(0, 212, 255, 0.1),
    rgba(255, 0, 128, 0.1),
    rgba(121, 40, 202, 0.1)
  );
  background-size: 300% 300%;
  animation: gradientShift 15s ease infinite;
  z-index: 1;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-badge {
    margin-top: 30px;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-video-mobile {
    display: block;
    margin-bottom: 30px;
    order: 1; /* Videoyu 1. sıraya al */
  }
  .hero-buttons {
    order: 2; /* Butonları 2. sıraya al */
  }
  .hero-visual.desktop-only {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 0;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-description {
    font-size: 1rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}