.hero-section {
  padding: 200px 0 0 0;
  position: relative;
  overflow: hidden;

  .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  .hero-background-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
  }

  .hero-kicker {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .hero-title {
    margin-bottom: 15px;
  }

  .hero-subtitle {
    font-size: 19.5px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 32px;
    letter-spacing: 2.9px;
    text-transform: uppercase;
    margin: auto;
  }

  @media (max-width: 991px) {
    padding: 100px 0 0 0;

    h1 {
      font-size: 32px;
      line-height: 40px;
      letter-spacing: 1px;
    }

    .hero-subtitle {
      font-size: 16px;
      line-height: 24px;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
  }
}

.tabs-section {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px 0 15px;
  margin-top: 110px;

  .tabs-nav {
    @media (max-width: 991px) {
      flex-direction: column;
      gap: 15px;
      padding: 0;
    }
  }

  .tab-link {
    color: var(--white);
    text-decoration: none;
    font-size: 20px;
    font-weight: 900;
    padding: 12px 24px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;

    &.active {
      color: var(--bright-pink);
    }

    &:hover {
      color: var(--bright-blue);
    }

    @media (max-width: 991px) {
      display: flex;
      margin: 5px 0;
    }
  }

  .plus-item-icon {
    width: 15px;
    height: 15px;
    margin-right: 10px;
  }
}
