.hero-slider {
  position: relative;
  overflow: hidden;
}
.hero-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  z-index: 2;
}
.slider-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  z-index: 1;
}
.slider-background.active {
  opacity: 1;
}
.slider-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}
.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}
.slider-dot.active {
  background: #9c0082;
  transform: scale(1.2);
}
.hero-content {
  position: relative;
  z-index: 2;
}

.primary-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.primary-border {
  border: 2px solid var(--primary);
}
.primary-bg {
  background: var(--primary-gradient);
}
.dark-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.timeline-line {
  position: relative;
}
.timeline-line::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold-gradient);
  transform: translateX(-50%);
}

/* Partner Section Styles */
.partner-card {
  transition: all 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-5px);
}

.partner-logo {
  background: linear-gradient(135deg, #9c0082, #c70000);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 14px;
}

.coming-soon-badge {
  background: linear-gradient(
    135deg,
    rgba(156, 0, 130, 0.1),
    rgba(199, 0, 0, 0.1)
  );
  border: 1px solid rgba(156, 0, 130, 0.2);
  color: #9c0082;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0;
}

.whatsapp-bubble {
  background: white;
  border-radius: 20px;
  padding: 12px 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  margin-right: -5px;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-bubble::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid white;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.whatsapp-text {
  color: #333;
  font-family: "Outfit", sans-serif;
}

.whatsapp-line1 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 2px;
}

.whatsapp-line2 {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  color: #666;
}

.whatsapp-button {
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1001;
}

.whatsapp-button:hover {
  background: #20ba5a;
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  color: white;
  text-decoration: none;
}

.whatsapp-button i {
  transition: transform 0.3s ease;
}

.whatsapp-button:hover i {
  transform: scale(1.1);
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-bubble {
    padding: 10px 14px;
    margin-right: -3px;
  }

  .whatsapp-line1 {
    font-size: 13px;
  }

  .whatsapp-line2 {
    font-size: 11px;
  }

  .whatsapp-button {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }

  .whatsapp-bubble::after {
    right: -6px;
    border-left: 6px solid white;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
  }
}
