/* ===== HERO BANNER CAROUSEL ===== */

.hero-banner-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--background-primary);
}

.banner-carousel {
  height: 100%;
  position: relative;
}

.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
}

.banner-slide.active {
  opacity: 1;
}

.banner-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(10, 25, 47, 0.85) 0%, rgba(31, 41, 55, 0.9) 50%, rgba(17, 24, 39, 0.85) 100%),
    url('../assets/digital-business-bg.jpg') center/cover no-repeat;
  overflow: hidden;
}

.banner-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 20%, rgba(234, 75, 113, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(32, 182, 158, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 70%, rgba(255, 140, 66, 0.08) 0%, transparent 50%);
}


.banner-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 27, 46, 0.4);
  z-index: 1;
}

.enterprise-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(58, 45, 82, 0.4);
  z-index: 1;
}

.banner-slide[data-slide="2"] .banner-background {
  background:
    linear-gradient(135deg, rgba(10, 25, 47, 0.85) 0%, rgba(49, 46, 129, 0.9) 50%, rgba(55, 48, 107, 0.85) 100%),
    url('../assets/business-automation-bg.jpg') center/cover no-repeat;
}

.banner-slide[data-slide="2"] .banner-background::before {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 140, 66, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(234, 75, 113, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 70%, rgba(32, 182, 158, 0.06) 0%, transparent 50%);
}

.banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.banner-text {
  max-width: 700px;
  color: white;
}

.banner-tag {
  display: inline-block;
  background: rgba(234, 75, 113, 0.2);
  color: var(--n8n-pink);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  margin-bottom: var(--space-4);
  border: 1px solid rgba(234, 75, 113, 0.3);
}

.banner-slide[data-slide="2"] .banner-tag {
  background: rgba(255, 140, 66, 0.2);
  color: #ff8c42;
  border-color: rgba(255, 140, 66, 0.3);
}

.banner-title {
  font-size: clamp(var(--text-4xl), 6vw, var(--text-6xl));
  font-weight: var(--font-bold);
  line-height: 1.1;
  margin-bottom: var(--space-6);
  color: white;
}

.gradient-text-secondary {
  background: linear-gradient(135deg, #ff8c42, #ffad73);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.banner-subtitle {
  font-size: var(--text-xl);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
  color: rgba(255, 255, 255, 0.9);
}

.banner-features {
  display: flex;
  gap: var(--space-12);
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: rgba(255, 255, 255, 0.1);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-weight: var(--font-medium);
  transition: all var(--duration-normal);
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: var(--text-lg);
}

/* Banner Controls */
.banner-controls {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: var(--space-6);
  z-index: 3;
}

.banner-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--background-card);
  border: 1px solid rgba(234, 75, 113, 0.3);
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--duration-normal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-nav-btn:hover {
  background: var(--n8n-pink);
  color: white;
  border-color: var(--n8n-pink);
  transform: scale(1.1);
}

.banner-dots {
  display: flex;
  gap: var(--space-3);
}

.banner-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(234, 75, 113, 0.3);
  border: none;
  cursor: pointer;
  transition: all var(--duration-normal);
}

.banner-dot.active {
  background: var(--n8n-pink);
  transform: scale(1.2);
}

/* Auto-scroll Progress - Hidden */
.banner-progress {
  display: none;
}

.progress-bar {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .banner-features {
    gap: var(--space-8);
  }

  .feature-item {
    padding: var(--space-2) var(--space-3);
    font-size: var(--text-sm);
  }

  .banner-controls {
    bottom: var(--space-6);
    gap: var(--space-4);
  }

  .banner-nav-btn {
    width: 40px;
    height: 40px;
  }
}