.hero-banner-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  color: var(--text-light);
  font-family: "Rubik", sans-serif;
}

.hero-banner-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    135deg,
    rgba(13, 13, 36, 0.95),
    rgba(26, 26, 64, 0.95)
  ); */
  z-index: 2;
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px)
    hue-rotate(0deg);
  background-image: linear-gradient(220deg, #000 0%, #47ace0 100%);
  background-color: transparent;
  background-image: linear-gradient(220deg, #000 0%, #10a9f8 100%);
  opacity: 0.9;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.hero-banner-inner {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-banner-content {
  flex: 1 1 50%;
}

.hero-banner-title {
  font-family: "Anton", sans-serif;
  font-size: 48px;
  /* color: var(--accent-blue); */
  margin-bottom: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-banner-description {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-banner-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-banner-icons li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 12px;
  border-radius: 6px;
}

.hero-banner-image img {
  max-width: 375px;
  height: auto;
  display: block;
  z-index: 5;
  position: relative;
}

.hero-banner-shape {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 3;
}

.hero-banner-shape-top {
  top: 0;
}

.hero-banner-shape-bottom {
  bottom: 0;
  transform: none;
  transform: rotate(180deg);
}

.hero-banner-shape svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 129px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.elementor-shape-fill {
  fill: var(--background-dark);
  transform-origin: center;
}

@keyframes waveFloat {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-5px);
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}

.hero-banner-shape svg {
  animation: waveFloat 6s ease-in-out infinite;
}

@media screen and (max-width: 768px) {
  .hero-banner-section {
    padding: 60px 0;
  }

  .hero-banner-title {
    font-size: 28px;
    text-align: center;
    line-height: 1.2;
  }

  .hero-banner-description {
    font-size: 16px;
    text-align: center;
  }

  .hero-banner-icons {
    justify-content: center;
    gap: 12px;
  }

  .hero-banner-icons li {
    font-size: 14px;
    padding: 6px 10px;
  }

  .hero-banner-image {
    display: none;
  }

  .hero-banner-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .hero-banner-shape svg {
    height: 64px;
  }
}
